tor-commits
Threads by month
- ----- 2025 -----
- 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
December 2020
- 19 participants
- 1639 discussions

[donate-static/master] Use a little bit of js to hide and show btcpayserver forms
by hiro@torproject.org 11 Dec '20
by hiro@torproject.org 11 Dec '20
11 Dec '20
commit 9388136959c1ebf98addb800055ee064f5954bde
Author: hiro <hiro(a)torproject.org>
Date: Fri Dec 11 11:18:55 2020 +0100
Use a little bit of js to hide and show btcpayserver forms
---
content/cryptocurrency/contents.lr | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/content/cryptocurrency/contents.lr b/content/cryptocurrency/contents.lr
index 8df60ca8..1bf31553 100644
--- a/content/cryptocurrency/contents.lr
+++ b/content/cryptocurrency/contents.lr
@@ -19,10 +19,18 @@ body:
<div class="intro-text">
<div class="preamble">
<p>
- Donate using BTCPayServeer
+ Donate using BTCPayServer
</p>
</div>
- <div class="btc-form">
+ <script>
+ var origin = window.location.origin;
+ if(origin.endsWith('.onion')) {
+ $('#clear-net').hide();
+ else {
+ $('#onion-net').hide();
+ }
+ </script>
+ <div class="btc-form" id="clear-net">
<style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-direction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; }
#btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
<form method="POST" action="https://btcpay.torproject.net/api/v1/invoices" class="btcpay-form btcpay-form--inline">
<input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
@@ -42,12 +50,7 @@ body:
<input type="image" class="submit" name="submit" src="https://btcpay.torproject.net/img/paybutton/pay.svg" style="width:209px" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor">
</form>
</div>
- <div class="preamble">
- <p>
- Donate using BTCPayServeer .onion address
- </p>
- </div>
- <div class="btc-form">
+ <div class="btc-form" id="onion-net">
<script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-direction: column; }
.btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35px; background:
#fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
<form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
<input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
1
0
commit 6cd2fc87b3aeb18bb38254051803d7c3d84cc739
Author: hiro <hiro(a)torproject.org>
Date: Fri Dec 11 10:55:35 2020 +0100
Fix form
---
content/cryptocurrency/contents.lr | 136 +++----------------------------------
1 file changed, 9 insertions(+), 127 deletions(-)
diff --git a/content/cryptocurrency/contents.lr b/content/cryptocurrency/contents.lr
index 4eb64de9..8df60ca8 100644
--- a/content/cryptocurrency/contents.lr
+++ b/content/cryptocurrency/contents.lr
@@ -19,7 +19,7 @@ body:
<div class="intro-text">
<div class="preamble">
<p>
- 'Donate using BTCPayServer'
+ Donate using BTCPayServeer
</p>
</div>
<div class="btc-form">
@@ -42,133 +42,13 @@ body:
<input type="image" class="submit" name="submit" src="https://btcpay.torproject.net/img/paybutton/pay.svg" style="width:209px" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor">
</form>
</div>
- <script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-direction: column; }
.btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35px; background:
#fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
- <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
- <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
- <input type="hidden" name="jsonResponse" value="true" />
- <div class="btcpay-custom-container">
- <div class="btcpay-custom">
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
- <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
- </div>
- <select name="currency">
- <option value="USD" selected>USD</option>
- <option value="GBP">GBP</option>
- <option value="EUR">EUR</option>
- <option value="BTC">BTC</option>
- </select>
- </div>
- <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
- </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
- <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
- <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
- <input type="hidden" name="jsonResponse" value="true" />
- <div class="btcpay-custom-container">
- <div class="btcpay-custom">
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
- <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
- </div>
- <select name="currency">
- <option value="USD" selected>USD</option>
- <option value="GBP">GBP</option>
- <option value="EUR">EUR</option>
- <option value="BTC">BTC</option>
- </select>
- </div>
- <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
- </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
- <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
- <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
- <input type="hidden" name="jsonResponse" value="true" />
- <div class="btcpay-custom-container">
- <div class="btcpay-custom">
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
- <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
- </div>
- <select name="currency">
- <option value="USD" selected>USD</option>
- <option value="GBP">GBP</option>
- <option value="EUR">EUR</option>
- <option value="BTC">BTC</option>
- </select>
- </div>
- <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
- </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
- <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
- <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
- <input type="hidden" name="jsonResponse" value="true" />
- <div class="btcpay-custom-container">
- <div class="btcpay-custom">
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
- <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
- </div>
- <select name="currency">
- <option value="USD" selected>USD</option>
- <option value="GBP">GBP</option>
- <option value="EUR">EUR</option>
- <option value="BTC">BTC</option>
- </select>
- </div>
- <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
- </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
- <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
- <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
- <input type="hidden" name="jsonResponse" value="true" />
- <div class="btcpay-custom-container">
- <div class="btcpay-custom">
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
- <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
- </div>
- <select name="currency">
- <option value="USD" selected>USD</option>
- <option value="GBP">GBP</option>
- <option value="EUR">EUR</option>
- <option value="BTC">BTC</option>
- </select>
- </div>
- <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
- </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
- <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
- <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
- <input type="hidden" name="jsonResponse" value="true" />
- <div class="btcpay-custom-container">
- <div class="btcpay-custom">
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
- <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
- </div>
- <select name="currency">
- <option value="USD" selected>USD</option>
- <option value="GBP">GBP</option>
- <option value="EUR">EUR</option>
- <option value="BTC">BTC</option>
- </select>
- </div>
- <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
- </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
- <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
- <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
- <input type="hidden" name="jsonResponse" value="true" />
- <div class="btcpay-custom-container">
- <div class="btcpay-custom">
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
- <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
- <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
- </div>
- <select name="currency">
- <option value="USD" selected>USD</option>
- <option value="GBP">GBP</option>
- <option value="EUR">EUR</option>
- <option value="BTC">BTC</option>
- </select>
+ <div class="preamble">
+ <p>
+ Donate using BTCPayServeer .onion address
+ </p>
</div>
- <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
- </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
+ <div class="btc-form">
+ <script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-direction: column; }
.btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35px; background:
#fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
<form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
<input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
<input type="hidden" name="jsonResponse" value="true" />
@@ -187,6 +67,8 @@ body:
</div>
<button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
</button></form>
+
+ </div>
<div class="preamble">
<p>
Donate using wallet addresses
1
0

[donate-static/master] Use a form for the .onion btcpayserver button
by hiro@torproject.org 11 Dec '20
by hiro@torproject.org 11 Dec '20
11 Dec '20
commit 046ef7bd8697e3362ffb1d4614f30748cb34e9a2
Author: hiro <hiro(a)torproject.org>
Date: Fri Dec 11 10:51:49 2020 +0100
Use a form for the .onion btcpayserver button
---
content/cryptocurrency/contents.lr | 149 ++++++++++++++++++++++++++++++++++++-
1 file changed, 145 insertions(+), 4 deletions(-)
diff --git a/content/cryptocurrency/contents.lr b/content/cryptocurrency/contents.lr
index 06dc33db..4eb64de9 100644
--- a/content/cryptocurrency/contents.lr
+++ b/content/cryptocurrency/contents.lr
@@ -41,11 +41,152 @@ body:
</div>
<input type="image" class="submit" name="submit" src="https://btcpay.torproject.net/img/paybutton/pay.svg" style="width:209px" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor">
</form>
- <p>
- Donate using the .onion address
- </p>
- <a href="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion">http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion</a>
</div>
+ <script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-direction: column; }
.btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35px; background:
#fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
+ <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
+ <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
+ <input type="hidden" name="jsonResponse" value="true" />
+ <div class="btcpay-custom-container">
+ <div class="btcpay-custom">
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
+ <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
+ </div>
+ <select name="currency">
+ <option value="USD" selected>USD</option>
+ <option value="GBP">GBP</option>
+ <option value="EUR">EUR</option>
+ <option value="BTC">BTC</option>
+ </select>
+ </div>
+ <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
+ </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
+ <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
+ <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
+ <input type="hidden" name="jsonResponse" value="true" />
+ <div class="btcpay-custom-container">
+ <div class="btcpay-custom">
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
+ <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
+ </div>
+ <select name="currency">
+ <option value="USD" selected>USD</option>
+ <option value="GBP">GBP</option>
+ <option value="EUR">EUR</option>
+ <option value="BTC">BTC</option>
+ </select>
+ </div>
+ <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
+ </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
+ <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
+ <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
+ <input type="hidden" name="jsonResponse" value="true" />
+ <div class="btcpay-custom-container">
+ <div class="btcpay-custom">
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
+ <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
+ </div>
+ <select name="currency">
+ <option value="USD" selected>USD</option>
+ <option value="GBP">GBP</option>
+ <option value="EUR">EUR</option>
+ <option value="BTC">BTC</option>
+ </select>
+ </div>
+ <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
+ </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
+ <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
+ <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
+ <input type="hidden" name="jsonResponse" value="true" />
+ <div class="btcpay-custom-container">
+ <div class="btcpay-custom">
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
+ <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
+ </div>
+ <select name="currency">
+ <option value="USD" selected>USD</option>
+ <option value="GBP">GBP</option>
+ <option value="EUR">EUR</option>
+ <option value="BTC">BTC</option>
+ </select>
+ </div>
+ <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
+ </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
+ <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
+ <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
+ <input type="hidden" name="jsonResponse" value="true" />
+ <div class="btcpay-custom-container">
+ <div class="btcpay-custom">
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
+ <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
+ </div>
+ <select name="currency">
+ <option value="USD" selected>USD</option>
+ <option value="GBP">GBP</option>
+ <option value="EUR">EUR</option>
+ <option value="BTC">BTC</option>
+ </select>
+ </div>
+ <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
+ </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
+ <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
+ <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
+ <input type="hidden" name="jsonResponse" value="true" />
+ <div class="btcpay-custom-container">
+ <div class="btcpay-custom">
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
+ <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
+ </div>
+ <select name="currency">
+ <option value="USD" selected>USD</option>
+ <option value="GBP">GBP</option>
+ <option value="EUR">EUR</option>
+ <option value="BTC">BTC</option>
+ </select>
+ </div>
+ <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
+ </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
+ <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
+ <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
+ <input type="hidden" name="jsonResponse" value="true" />
+ <div class="btcpay-custom-container">
+ <div class="btcpay-custom">
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
+ <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
+ </div>
+ <select name="currency">
+ <option value="USD" selected>USD</option>
+ <option value="GBP">GBP</option>
+ <option value="EUR">EUR</option>
+ <option value="BTC">BTC</option>
+ </select>
+ </div>
+ <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
+ </button></form><script>if(!window.btcpay){ var head = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); script.src='http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/modal…'; script.type = 'text/javascript'; head.append(script);}function onBTCPayFormSubmit(event){ var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { if(this.status == 200 && this.responseText){ var response = JSON.parse(this.responseText); window.btcpay.showInvoice(response.invoiceId); } } }; xhttp.open("POST", event.target.getAttribute('action'), true); xhttp.send(new FormData( event.target ));}</script><style type="text/css"> .btcpay-form { display: inline-flex; align-items: center; justify-content: center; } .btcpay-form--inline { flex-direction: row; } .btcpay-form--block { flex-dire
ction: column; } .btcpay-form--inline .submit { margin-left: 15px; } .btcpay-form--block select { margin-bottom: 10px; } .btcpay-form .btcpay-custom-container{ text-align: center; }.btcpay-custom { display: flex; align-items: center; justify-content: center; } .btcpay-form .plus-minus { cursor:pointer; font-size:25px; line-height: 25px; background: #DFE0E1; height: 30px; width: 45px; border:none; border-radius: 60px; margin: auto 5px; display: inline-flex; justify-content: center; } .btcpay-form select { -moz-appearance: none; -webkit-appearance: none; appearance: none; color: currentColor; background: transparent; border:1px solid transparent; display: block; padding: 1px; margin-left: auto; margin-right: auto; font-size: 11px; cursor: pointer; } .btcpay-form select:hover { border-color: #ccc; } #btcpay-input-price { -moz-appearance: none; -webkit-appearance: none; border: none; box-shadow: none; text-align: center; font-size: 25px; margin: auto; border-radius: 5px; line-height: 35
px; background: #fff; } #btcpay-input-price::-webkit-outer-spin-button, #btcpay-input-price::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } </style>
+ <form method="POST" onsubmit="onBTCPayFormSubmit(event);return false" action="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion/api/v…" class="btcpay-form btcpay-form--inline">
+ <input type="hidden" name="storeId" value="95bAXzi9xpnvu6BqUm5Uyc8C1c1rPLYsQnsgdvMGp4sh" />
+ <input type="hidden" name="jsonResponse" value="true" />
+ <div class="btcpay-custom-container">
+ <div class="btcpay-custom">
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('-' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) - 1;">-</button>
+ <input id="btcpay-input-price" name="price" type="text" min="1" max="2000" step="1" value="10" style="width: 2em;" oninput="event.preventDefault();isNaN(event.target.value) || event.target.value <= 0 ? document.querySelector('#btcpay-input-price').value = 10 : event.target.value" />
+ <button class="plus-minus" onclick="event.preventDefault(); var price = parseInt(document.querySelector('#btcpay-input-price').value); if ('+' == '-' && (price - 1) < 1) { return; } document.querySelector('#btcpay-input-price').value = parseInt(document.querySelector('#btcpay-input-price').value) + 1;">+</button>
+ </div>
+ <select name="currency">
+ <option value="USD" selected>USD</option>
+ <option value="GBP">GBP</option>
+ <option value="EUR">EUR</option>
+ <option value="BTC">BTC</option>
+ </select>
+ </div>
+ <button type="submit" class="submit" name="submit" style="min-width:146px; min-height:40px; border-radius: 4px;border-style: none;background-color: #0f3b21;" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor"><span style="color:#fff">.onion</span>
+ </button></form>
<div class="preamble">
<p>
Donate using wallet addresses
1
0

[translation/tails-misc_release] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
by translation@torproject.org 11 Dec '20
by translation@torproject.org 11 Dec '20
11 Dec '20
commit 535bb7875a7b6fd756858b8a358a47f4b12f58f7
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Dec 11 09:47:49 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
---
ar.po | 19 ++++++++-----------
ast.po | 2 +-
az.po | 17 +++++++----------
be.po | 17 +++++++----------
br.po | 2 +-
bs.po | 17 +++++++----------
cy.po | 17 +++++++----------
da.po | 19 ++++++++-----------
de.po | 19 ++++++++-----------
eo.po | 17 +++++++----------
es.po | 19 ++++++++-----------
es_AR.po | 23 ++++++++++-------------
es_MX.po | 2 +-
eu.po | 2 +-
fi.po | 2 +-
fr.po | 4 ++--
gu.po | 17 +++++++----------
is.po | 2 +-
it.po | 4 ++--
ja.po | 4 ++--
kab.po | 2 +-
kk.po | 17 +++++++----------
lt.po | 2 +-
mk.po | 2 +-
ms_MY.po | 2 +-
nn.po | 2 +-
oc.po | 2 +-
or.po | 2 +-
pl.po | 17 +++++++----------
ro.po | 2 +-
ru.po | 17 +++++++----------
si_LK.po | 2 +-
sk.po | 2 +-
sl.po | 2 +-
sr.po | 17 +++++++----------
sv.po | 4 ++--
sw.po | 19 ++++++++-----------
ta.po | 17 +++++++----------
tails.pot | 17 +++++++----------
th.po | 17 +++++++----------
tr.po | 23 ++++++++++-------------
uk.po | 2 +-
vi.po | 17 +++++++----------
zh_CN.po | 4 ++--
zh_HK.po | 17 +++++++----------
zh_TW.po | 2 +-
46 files changed, 194 insertions(+), 260 deletions(-)
diff --git a/ar.po b/ar.po
index d9c75c7251..76267a38ca 100644
--- a/ar.po
+++ b/ar.po
@@ -36,9 +36,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-10 15:29+0000\n"
-"Last-Translator: NASI₿ <nomadweb(a)protonmail.ch>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -252,7 +252,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1171,7 +1171,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "خطأ"
@@ -1597,6 +1597,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1606,10 +1607,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "خطأ:"
@@ -2331,10 +2332,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ast.po b/ast.po
index b32c25e729..69e8f671ed 100644
--- a/ast.po
+++ b/ast.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Asturian (http://www.transifex.com/otf/torproject/language/ast/)\n"
"MIME-Version: 1.0\n"
diff --git a/az.po b/az.po
index 19c9244306..0703302c52 100644
--- a/az.po
+++ b/az.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Azerbaijani (http://www.transifex.com/otf/torproject/language/az/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/be.po b/be.po
index a024822e98..f3e5d34aff 100644
--- a/be.po
+++ b/be.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Belarusian (http://www.transifex.com/otf/torproject/language/be/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1564,6 +1564,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2298,10 +2299,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/br.po b/br.po
index 1d75619e0c..8b9c76508b 100644
--- a/br.po
+++ b/br.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Breton (http://www.transifex.com/otf/torproject/language/br/)\n"
"MIME-Version: 1.0\n"
diff --git a/bs.po b/bs.po
index 6454f7322b..c176567304 100644
--- a/bs.po
+++ b/bs.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Bosnian (http://www.transifex.com/otf/torproject/language/bs/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/cy.po b/cy.po
index e109d89a97..2961766cbc 100644
--- a/cy.po
+++ b/cy.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
"MIME-Version: 1.0\n"
@@ -226,7 +226,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1145,7 +1145,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1567,6 +1567,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1576,10 +1577,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2301,10 +2302,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/da.po b/da.po
index f518d28a42..2f2663086b 100644
--- a/da.po
+++ b/da.po
@@ -20,8 +20,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Danish (http://www.transifex.com/otf/torproject/language/da/)\n"
"MIME-Version: 1.0\n"
@@ -236,8 +236,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Du bør foretage en manual opgradering til {name} {version}.</b>\n\nFor mere information om den nye version, gå til {details_url}\n\nDet er ikke muligt automatisk at opgradere din enhed til den nye version: {explanation}.\n\nLær at foretage manual opgradering, gå til https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1155,7 +1155,7 @@ msgstr "Opsæt vedvarende diskområde i Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Fejl"
@@ -1573,6 +1573,7 @@ msgid ""
msgstr "MAC-spoofing mislykkedes for netværkskortet ${nic_name} (${nic}). Fejlgendannelsen mislykkedes også, så al netværk er deaktiveret. \nDu vil måske foretrække at genstarte Tails og deaktivere MAC-spoofing."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1582,10 +1583,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "fejl:"
@@ -2307,10 +2308,6 @@ msgstr "Geninstaller (slet al data)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Ophavsret © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/de.po b/de.po
index e4f4c445d1..12c735275a 100644
--- a/de.po
+++ b/de.po
@@ -37,9 +37,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-06 09:48+0000\n"
-"Last-Translator: Curtis Baltimore <curtisbaltimore(a)protonmail.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -253,7 +253,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1172,7 +1172,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Fehler"
@@ -1590,6 +1590,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1599,10 +1600,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "Fehler:"
@@ -2324,10 +2325,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/eo.po b/eo.po
index d05ef3c4b2..65396cb0fe 100644
--- a/eo.po
+++ b/eo.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Esperanto (http://www.transifex.com/otf/torproject/language/eo/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/es.po b/es.po
index 15cf0b89df..3f4ab3a917 100644
--- a/es.po
+++ b/es.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 15:11+0000\n"
-"Last-Translator: eulalio barbero espinosa <eulaliob(a)gmail.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -236,7 +236,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1155,7 +1155,7 @@ msgstr "Configurar el volumen persistente de Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Error"
@@ -1573,6 +1573,7 @@ msgid ""
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:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1582,10 +1583,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "error:"
@@ -2307,10 +2308,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/es_AR.po b/es_AR.po
index 55fa3deac2..38830ba312 100644
--- a/es_AR.po
+++ b/es_AR.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 22:18+0000\n"
-"Last-Translator: Zuhualime Akoochimoya\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -231,8 +231,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Deberías hacer una actualización manual a {name} {version}.</b>\n\nPara obtener más información sobre esta nueva versión, visitá {details_url}\n\nNo es posible actualizar automáticamente tu dispositivo a esta nueva versión: {explanation}.\n\nPara aprender cómo hacer una actualización manual, visitá https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1150,7 +1150,7 @@ msgstr "Configurar volumen persistente de Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Error"
@@ -1568,6 +1568,7 @@ msgid ""
msgstr "Falsificación de MAC para placa de red ${nic_name} (${nic}) falló. La recuperación de error también falló, por lo que las funciones de red están deshabilitadas.\nQuizás prefieras reiniciar Tails y deshabilitar esta función."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1577,10 +1578,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>No hay suficiente memoria disponible para comprobar nuevas versiones.</b>\n\nAsegurate que éste sistema satisface los requerimientos para correr Tails.\nMirá file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nIntentá reiniciar Tails para comprobar nuevamente por actualizaciones.\n\nO hacé una actualización manual.\nMirá https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "error:"
@@ -2302,10 +2303,6 @@ msgstr "Reinstalar (borrar todos los datos)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/es_MX.po b/es_MX.po
index d7ed4218e6..f38d31a8b8 100644
--- a/es_MX.po
+++ b/es_MX.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/otf/torproject/language/es_MX/)\n"
"MIME-Version: 1.0\n"
diff --git a/eu.po b/eu.po
index d2279e1968..a1ad050b82 100644
--- a/eu.po
+++ b/eu.po
@@ -15,7 +15,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Basque (http://www.transifex.com/otf/torproject/language/eu/)\n"
"MIME-Version: 1.0\n"
diff --git a/fi.po b/fi.po
index 9303b465c4..8d69ea2396 100644
--- a/fi.po
+++ b/fi.po
@@ -20,7 +20,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Finnish (http://www.transifex.com/otf/torproject/language/fi/)\n"
"MIME-Version: 1.0\n"
diff --git a/fr.po b/fr.po
index c3a405d284..9afc0d5cdd 100644
--- a/fr.po
+++ b/fr.po
@@ -41,8 +41,8 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-06 10:09+0000\n"
-"Last-Translator: Curtis Baltimore <curtisbaltimore(a)protonmail.com>\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
diff --git a/gu.po b/gu.po
index 4affc08704..dabd62d5d8 100644
--- a/gu.po
+++ b/gu.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Gujarati (http://www.transifex.com/otf/torproject/language/gu/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/is.po b/is.po
index 47e3fcd0f2..caa1877d06 100644
--- a/is.po
+++ b/is.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Icelandic (http://www.transifex.com/otf/torproject/language/is/)\n"
"MIME-Version: 1.0\n"
diff --git a/it.po b/it.po
index 2d65e4b526..938ec72b86 100644
--- a/it.po
+++ b/it.po
@@ -35,8 +35,8 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-05 14:07+0000\n"
-"Last-Translator: Random_R\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
diff --git a/ja.po b/ja.po
index 4de47b21d7..60afcd1570 100644
--- a/ja.po
+++ b/ja.po
@@ -34,8 +34,8 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-09 15:54+0000\n"
-"Last-Translator: Kaede\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
diff --git a/kab.po b/kab.po
index 394665f8f5..867af10820 100644
--- a/kab.po
+++ b/kab.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Kabyle (http://www.transifex.com/otf/torproject/language/kab/)\n"
"MIME-Version: 1.0\n"
diff --git a/kk.po b/kk.po
index 6f9b20ff8c..6ed9c52ec8 100644
--- a/kk.po
+++ b/kk.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Kazakh (http://www.transifex.com/otf/torproject/language/kk/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/lt.po b/lt.po
index 3e8f224d96..b13a5cbcb7 100644
--- a/lt.po
+++ b/lt.po
@@ -12,7 +12,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Lithuanian (http://www.transifex.com/otf/torproject/language/lt/)\n"
"MIME-Version: 1.0\n"
diff --git a/mk.po b/mk.po
index 6583289f53..ccce203f04 100644
--- a/mk.po
+++ b/mk.po
@@ -13,7 +13,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Macedonian (http://www.transifex.com/otf/torproject/language/mk/)\n"
"MIME-Version: 1.0\n"
diff --git a/ms_MY.po b/ms_MY.po
index e3caf37c2a..7654c41362 100644
--- a/ms_MY.po
+++ b/ms_MY.po
@@ -12,7 +12,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/otf/torproject/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
diff --git a/nn.po b/nn.po
index 7a6899d75a..23995b9df9 100644
--- a/nn.po
+++ b/nn.po
@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/otf/torproject/language/nn/)\n"
"MIME-Version: 1.0\n"
diff --git a/oc.po b/oc.po
index 6c9b5604a2..884ad12302 100644
--- a/oc.po
+++ b/oc.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/otf/torproject/language/oc/)\n"
"MIME-Version: 1.0\n"
diff --git a/or.po b/or.po
index f1d8a4ad3d..d1551a7cfb 100644
--- a/or.po
+++ b/or.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Oriya (http://www.transifex.com/otf/torproject/language/or/)\n"
"MIME-Version: 1.0\n"
diff --git a/pl.po b/pl.po
index 5b46011063..a3342ea680 100644
--- a/pl.po
+++ b/pl.po
@@ -27,8 +27,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Polish (http://www.transifex.com/otf/torproject/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -243,7 +243,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1162,7 +1162,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1584,6 +1584,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1593,10 +1594,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2318,10 +2319,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ro.po b/ro.po
index 70cd83e698..9a3c603380 100644
--- a/ro.po
+++ b/ro.po
@@ -27,7 +27,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Romanian (http://www.transifex.com/otf/torproject/language/ro/)\n"
"MIME-Version: 1.0\n"
diff --git a/ru.po b/ru.po
index 9862dedee2..1901470265 100644
--- a/ru.po
+++ b/ru.po
@@ -37,8 +37,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Russian (http://www.transifex.com/otf/torproject/language/ru/)\n"
"MIME-Version: 1.0\n"
@@ -253,7 +253,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1172,7 +1172,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1594,6 +1594,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1603,10 +1604,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2328,10 +2329,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/si_LK.po b/si_LK.po
index e4a2b49041..4898441b95 100644
--- a/si_LK.po
+++ b/si_LK.po
@@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/otf/torproject/language/si_LK/)\n"
"MIME-Version: 1.0\n"
diff --git a/sk.po b/sk.po
index 29ea1cc028..3c984b9f4b 100644
--- a/sk.po
+++ b/sk.po
@@ -17,7 +17,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Slovak (http://www.transifex.com/otf/torproject/language/sk/)\n"
"MIME-Version: 1.0\n"
diff --git a/sl.po b/sl.po
index 06be528f23..1ff8cde40a 100644
--- a/sl.po
+++ b/sl.po
@@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Slovenian (http://www.transifex.com/otf/torproject/language/sl/)\n"
"MIME-Version: 1.0\n"
diff --git a/sr.po b/sr.po
index 7714042f72..ae02c1569c 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Serbian (http://www.transifex.com/otf/torproject/language/sr/)\n"
"MIME-Version: 1.0\n"
@@ -227,7 +227,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1146,7 +1146,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1566,6 +1566,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1575,10 +1576,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2300,10 +2301,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/sv.po b/sv.po
index 0e357fd834..fb46a931bd 100644
--- a/sv.po
+++ b/sv.po
@@ -25,8 +25,8 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-08 21:41+0000\n"
-"Last-Translator: Jonatan Nyberg <jonatan.nyberg.karl(a)gmail.com>\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
diff --git a/sw.po b/sw.po
index b9b5958dac..d5286baae0 100644
--- a/sw.po
+++ b/sw.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-09 10:46+0000\n"
-"Last-Translator: Zaituni Njovu <zaituni(a)zainafoundationtz.org>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ta.po b/ta.po
index 3afcebf9f0..3e04282f0c 100644
--- a/ta.po
+++ b/ta.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Tamil (http://www.transifex.com/otf/torproject/language/ta/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/tails.pot b/tails.pot
index 39fb248913..954af007a4 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: English (http://www.transifex.com/otf/torproject/language/en/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/th.po b/th.po
index 0a1e17ea6a..9fa58b9f4f 100644
--- a/th.po
+++ b/th.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Thai (http://www.transifex.com/otf/torproject/language/th/)\n"
"MIME-Version: 1.0\n"
@@ -229,7 +229,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1148,7 +1148,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1564,6 +1564,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2298,10 +2299,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/tr.po b/tr.po
index 83ab0ddf64..4d482ed933 100644
--- a/tr.po
+++ b/tr.po
@@ -32,9 +32,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-06 15:37+0000\n"
-"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -248,8 +248,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>{name} {version} sürümüne el ile güncelleyebilirsiniz.</b>\n\nBu sürüm hakkında ayrıntılı bilgi almak için {details_url} adresine bakabilirsiniz\n\nAygıtınız bu sürüme otomatik olarak güncellenemez: {explanation}.\n\nEl ile güncellemenin nasıl yapılacağını öğrenmek için https://tails.boum.org/doc/upgrade/#manual adresine bakabilirsiniz"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1167,7 +1167,7 @@ msgstr "Tails kalıcı depolama birimini kur"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Hata"
@@ -1585,6 +1585,7 @@ msgid ""
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:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1594,10 +1595,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Güncellemeleri denetlemek için yeterli bellek yok.</b>\n\nBu sistemin Tails yazılımının gereksinimlerini karşıladığına emin olun.\nBilgiler: file:///usr/share/doc/tails/website/doc/about/requirements.tr.html\n\nGüncellemeleri denetlemek için Tails yazılımını yeniden başlatmayı deneyin.\n\nYa da el ile güncelleyin.\nBilgiler: https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "hata:"
@@ -2319,10 +2320,6 @@ msgstr "Yeniden kur (tüm verileri sil)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Telif Hakkı © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/uk.po b/uk.po
index 3683879d1a..c00f7a1971 100644
--- a/uk.po
+++ b/uk.po
@@ -19,7 +19,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Ukrainian (http://www.transifex.com/otf/torproject/language/uk/)\n"
"MIME-Version: 1.0\n"
diff --git a/vi.po b/vi.po
index 125934af25..519f2fdacf 100644
--- a/vi.po
+++ b/vi.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Vietnamese (http://www.transifex.com/otf/torproject/language/vi/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/zh_CN.po b/zh_CN.po
index 4d1d66b347..e48ec352be 100644
--- a/zh_CN.po
+++ b/zh_CN.po
@@ -39,8 +39,8 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-07 08:43+0000\n"
-"Last-Translator: Scott Rhodes <starring169(a)gmail.com>\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
diff --git a/zh_HK.po b/zh_HK.po
index 531e636892..668c49b711 100644
--- a/zh_HK.po
+++ b/zh_HK.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/otf/torproject/language/zh_HK/)\n"
"MIME-Version: 1.0\n"
@@ -228,7 +228,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1147,7 +1147,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1563,6 +1563,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1572,10 +1573,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2297,10 +2298,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/zh_TW.po b/zh_TW.po
index 8f49fee5cf..2628fb9608 100644
--- a/zh_TW.po
+++ b/zh_TW.po
@@ -23,7 +23,7 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-04 11:24+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/otf/torproject/language/zh_TW/)\n"
"MIME-Version: 1.0\n"
1
0

[translation/tails-misc_completed] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_completed
by translation@torproject.org 11 Dec '20
by translation@torproject.org 11 Dec '20
11 Dec '20
commit ac459d9affed6f50f33a1e867f59f3d76cdac036
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Dec 11 09:47:02 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_completed
---
es_AR.po | 2378 ------------------------------------------------------------
tails.pot | 17 +-
tr.po | 2395 -------------------------------------------------------------
3 files changed, 7 insertions(+), 4783 deletions(-)
diff --git a/es_AR.po b/es_AR.po
deleted file mode 100644
index 55fa3deac2..0000000000
--- a/es_AR.po
+++ /dev/null
@@ -1,2378 +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:
-# Burro Moro <burromoro(a)riseup.net>, 2020
-# Emma Peel, 2018
-# Joaquín Serna <bubuanabelas(a)cryptolab.net>, 2017
-# kaze kaze <kaze(a)rlab.be>, 2019
-# ezemelano <melanoeze(a)gmail.com>, 2014
-# Pablo Di Noto <pdinoto(a)gmail.com>, 2016
-# psss <facevedo(a)openmailbox.org>, 2016
-# Zuhualime Akoochimoya, 2018-2020
-msgid ""
-msgstr ""
-"Project-Id-Version: Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 22:18+0000\n"
-"Last-Translator: Zuhualime Akoochimoya\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"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: es_AR\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:42
-msgid "Tor is ready"
-msgstr "Tor está listo"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:43
-msgid "You can now access the Internet."
-msgstr "Ahora podés 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>¡Ayudanos a arreglar errores!</h1>\n<p>Leé <a href=\"%s\">nuestras instrucciones sobre cómo reportar errores</a>.</p>\n<p><strong>¡No incluyas más información personal que la mínima necesaria!</strong></p>\n<h2>Acerca de proporcionarnos una dirección de correo electrónico</h2>\n<p>\nEl proporcionarnos una dirección de correo electrónico nos permite contactarte para clarificar el problema. Esto\nes necesario en la gran mayoría de los reportes que recibimos, ya que muchos de ellos,\nsin alguna información de contacto, son inútiles. Por otro lado, esto permite a un observador hostil, como tu proveedor de correo electrónico o de Internet,\nconfirmar que estás utilizando Tails.\n</p>\n"
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:113
-#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
-msgid "Additional Software"
-msgstr "Programas adicionales"
-
-#: 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 "Podés instalar programas adicionales automáticamente desde tu almacenamiento persistente cuando esté arrancando 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 siguiente programa es instalado automáticamente desde tu almacenamiento persistente cuando esté arrancando 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, instalá algunos programas usando el <a href=\"synaptic.desktop\">Gestor de paquetes Synaptic</a> ó <a href=\"org.gnome.Terminal.desktop\">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 almacenamiento persistente"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:64
-msgid "Persistence is disabled for Electrum"
-msgstr "El modo persistencia de datos está deshabilitado para Electrum"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:66
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your Bitcoin wallet.\n"
-"It is strongly recommended to only run Electrum when its persistence feature is activated."
-msgstr "Cuando reinicias Tails, todos los datos de Electrum se perderán, incluyendo tu billetera de Bitcoin.\nEstá fuertemente recomendado que solo ejecutes Electrum cuando la persistencia esté activada."
-
-#: config/chroot_local-includes/usr/local/bin/electrum:67
-msgid "Do you want to start Electrum anyway?"
-msgstr "¿Deseás utizar Electrum de todos modos?"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:70
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
-msgid "_Launch"
-msgstr "_Iniciar"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:71
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
-msgid "_Exit"
-msgstr "_Salir"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:197
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:621
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798
-msgid ""
-"For debugging information, execute the following command: sudo tails-"
-"debugging-info"
-msgstr "Para información de depuración, ejecutá el siguiente comando: sudo tails-debugging-info"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:263
-msgid ""
-"<b>An error occured while updating the signing key.</b>\\n\\n<b>This "
-"prevents determining whether an upgrade is available from our "
-"website.</b>\\n\\nCheck your network connection, and restart Tails to try "
-"upgrading again.\\n\\nIf the problem persists, go to "
-"file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
-msgstr "<b>Se produjo un error al actualizar la clave de firma. </b>\\n\\n<b>Esto impide determinar si hay una actualización disponible en nuestro sitio web.</b>\\n\\nComprobá tu conexión de red y reiniciá Tails para intentar actualizar nuevamente. \\n\\nSi el problema persiste, dirigite al archivo: file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:268
-msgid "Error while updating the signing key"
-msgstr "Error al actualizar la clave de firma"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:295
-msgid "Error while checking for upgrades"
-msgstr "Error durante la comprobación de actualizaciones"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297
-msgid ""
-"<b>Could not determine whether an upgrade is available from our website.</b>\n"
-"\n"
-"Check your network connection, and restart Tails to try upgrading again.\n"
-"\n"
-"If the problem persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
-msgstr "<b>No se pudo determinar si una actualización está disponible en nuestro sitio web.</b>\n\nComprobá tu conexión de red, y reiniciá Tails para intentar actualizarlo nuevamente.\n\nSi el problema persiste, andá a file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:312
-msgid "no automatic upgrade is available from our website for this version"
-msgstr "ninguna actualización automática está disponible en nuestro sitio web para esta versión"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318
-msgid "your device was not created using a USB image or Tails Installer"
-msgstr "tu dispositivo no fue creado usando una imagen USB o un instalador de Tails"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:323
-msgid "Tails was started from a DVD or a read-only device"
-msgstr "Tails se inició desde un DVD o un dispositivo de sólo lectura"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:328
-msgid "there is not enough free space on the Tails system partition"
-msgstr "no hay suficiente espacio libre en la partición del sistema de Tails"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:333
-msgid "not enough memory is available on this system"
-msgstr "no hay suficiente memoria disponible en el sistema"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:338
-#, perl-brace-format
-msgid "No explanation available for reason '{reason}'."
-msgstr "No hay una explicación disponible para esta razón: '{reason}'."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:359
-msgid "The system is up-to-date"
-msgstr "El sistema está actualizado"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364
-msgid "This version of Tails is outdated, and may have security issues."
-msgstr "Esta versión de Tails está desactualizada y puede tener problemas de seguridad. "
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:395
-#, perl-brace-format
-msgid ""
-"The available incremental upgrade requires {space_needed} of free space on "
-"Tails system partition, but only {free_space} is available."
-msgstr "La actualización incremental disponible requiere {space_needed} de espacio libre en la partición de sistema de Tails, pero solo hay {free_space} disponible."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:407
-#, perl-brace-format
-msgid ""
-"The available incremental upgrade requires {memory_needed} of free memory, "
-"but only {free_memory} is available."
-msgstr "La actualización incremental disponible requiere {memory_needed} de memoria libre, pero solo hay {free_memory} disponible."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:426
-msgid ""
-"An incremental upgrade is available, but no full upgrade is.\n"
-"This should not happen. Please report a bug."
-msgstr "Está disponible una actualización incremental, pero ninguna completa.\nEsto no debería pasar. Por favor informá el error."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:430
-msgid "Error while detecting available upgrades"
-msgstr "Error al detectar actualizaciones disponibles"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:439
-#, perl-brace-format
-msgid ""
-"<b>You should upgrade to {name} {version}.</b>\n"
-"\n"
-"For more information about this new version, go to {details_url}\n"
-"\n"
-"We recommend you close all other applications during the upgrade.\n"
-"Downloading the upgrade might take a long time, from several minutes to a few hours.\n"
-"\n"
-"Download size: {size}\n"
-"\n"
-"Do you want to upgrade now?"
-msgstr "<b>Deberías actualizar a {name} {version}.</b>\n\nPara más información acerca de la nueva versión, visitá {details_url}\n\nSe recomienda cerrar todas las aplicaciones abiertas durante la actualización.\nDescargar la actualización puede tardar mucho tiempo, desde algunos minutos a varias horas.\n\nTamaño de la descarga: {size}\n\n¿Querés actualizar ahora?"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451
-msgid "Upgrade available"
-msgstr "Actualización disponible"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:452
-msgid "Upgrade now"
-msgstr "Actualizar ahora"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:453
-msgid "Upgrade later"
-msgstr "Actualizar más tarde"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:460
-#, perl-brace-format
-msgid ""
-"<b>You should do a manual upgrade to {name} {version}.</b>\n"
-"\n"
-"For more information about this new version, go to {details_url}\n"
-"\n"
-"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
-"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Deberías hacer una actualización manual a {name} {version}.</b>\n\nPara obtener más información sobre esta nueva versión, visitá {details_url}\n\nNo es posible actualizar automáticamente tu dispositivo a esta nueva versión: {explanation}.\n\nPara aprender cómo hacer una actualización manual, visitá https://tails.boum.org/doc/upgrade/#manual"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
-msgid "New version available"
-msgstr "Nueva versión disponible"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:552
-msgid "Downloading upgrade"
-msgstr "Descargando actualización"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:554
-#, perl-brace-format
-msgid "Downloading the upgrade to {name} {version}..."
-msgstr "Descargando la actualización para {name} {version}..."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:614
-msgid ""
-"<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network "
-"connection, and restart Tails to try upgrading again.\\n\\nIf the problem "
-"persists, go to "
-"file:///usr/share/doc/tails/website/doc/upgrade/error/download.en.html"
-msgstr "<b>La actualización no pudo ser descargada.</b>\\n\\nComprobá tu conexión de red, y reiniciá Tails para intentar actualizar nuevamente.\\n\\nSi el problema persiste, visitá file:///usr/share/doc/tails/website/doc/upgrade/error/download.en.html"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:625
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:640
-msgid "Error while downloading the upgrade"
-msgstr "Error mientras se descargaba la actualización"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635
-#, perl-brace-format
-msgid ""
-"Output file '{output_file}' does not exist, but tails-iuk-get-target-file "
-"did not complain. Please report a bug."
-msgstr "El archivo de salida '{output_file}' no existe, pero tails-iuk-get-target-file no generó ninguna advertencia. Por favor informá el error."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:651
-msgid "Error while creating temporary downloading directory"
-msgstr "Error mientras se creaba el directorio de descarga temporal"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:654
-msgid "Failed to create temporary download directory"
-msgstr "No se pudo crear el directorio de descarga temporal"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678
-msgid ""
-"<b>Could not choose a download server.</b>\n"
-"\n"
-"This should not happen. Please report a bug."
-msgstr "<b>No se pudo elegir un servidor de descarga</b>\n\nEsto no debería pasar. Por favor informá el error."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:681
-msgid "Error while choosing a download server"
-msgstr "Error mientras se elegía el servidor de descarga"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:695
-msgid ""
-"The upgrade was successfully downloaded.\n"
-"\n"
-"The network connection will now be disabled.\n"
-"\n"
-"Please save your work and close all other applications."
-msgstr "La actualización fue descargada exitosamente.\n\nLa conexión de red será deshabilitada ahora.\n\nPor favor guardá tu trabajo y cerrá todas las otras aplicaciones."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700
-msgid "Upgrade successfully downloaded"
-msgstr "Actualización descargada exitosamente"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701
-msgid "Apply upgrade"
-msgstr "Aplicar actualización"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708
-msgid ""
-"<b>Your Tails device was successfully upgraded.</b>\n"
-"\n"
-"Some security features were temporarily disabled.\n"
-"You should restart Tails on the new version as soon as possible.\n"
-"\n"
-"Do you want to restart now?"
-msgstr "<b>Tu dispositivo Tails fue actualizado satisfactoriamente</b>\n\nAlgunas características de seguridad fueron deshabilitadas temporalmente.\nDeberías reiniciar Tails en la nueva versión tan pronto como sea posible.\n\n¿Deseás reiniciar ahora?"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713
-msgid "Restart Tails"
-msgstr "Reiniciar Tails"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714
-msgid "Restart now"
-msgstr "Reiniciar ahora"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715
-msgid "Restart later"
-msgstr "Reiniciar más tarde"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725
-msgid "Error while restarting the system"
-msgstr "Error mientras se reiniciaba es sistema"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726
-msgid "Failed to restart the system"
-msgstr "Falla al reiniciar el sistema"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:739
-msgid "Error while shutting down the network"
-msgstr "Error mientras se desconectaba la red"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:740
-msgid "Failed to shutdown network"
-msgstr "Falla al cerrar la red"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:750
-msgid "Error while cancelling the upgrade download"
-msgstr "Error mientras se cancelaba la descarga de la actualización"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:751
-msgid "Failed to cancel the upgrade download"
-msgstr "Falló la cancelación de la descarga de la actualización"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:757
-msgid "Upgrading the system"
-msgstr "Actualizando el sistema"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:759
-msgid ""
-"<b>Your Tails device is being upgraded...</b>\n"
-"\n"
-"For security reasons, the networking is now disabled."
-msgstr "<b>Tu dispositivo Tails está siendo actualizado...</b>\n\nPor razones de seguridad, se ha deshabilitado la red."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:792
-msgid ""
-"<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device"
-" needs to be repaired and might be unable to restart.\\n\\nPlease follow the"
-" instructions at "
-"file:///usr/share/doc/tails/website/doc/upgrade/error/install.en.html"
-msgstr "<b>Un error ocurrió mientras se estaba instalando la versión actualizada.</b> \\n\\nTu dispositivo Tails necesita ser reparado y puede ser incapaz de reiniciar.\\n\\nPor favor seguí las instrucciones en el archivo file:///usr/share/doc/tails/website/doc/upgrade/error/install.en.html"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:802
-msgid "Error while installing the upgrade"
-msgstr "Error mientras se instalaba la actualización"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32
-msgid "Additional Settings"
-msgstr "Configuraciones Adicionales"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:581
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:49
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:46
-msgid "Add"
-msgstr "Agregar"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:54
-msgid "Back"
-msgstr "Atrás"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:64
-msgid "_Administration Password"
-msgstr "_Clave de Administración"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:187
-msgid "_MAC Address Spoofing"
-msgstr "Falsificación de dirección _MAC"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:250
-msgid "_Network Connection"
-msgstr "Conexión de _Red"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:259
-msgid "Direct (default)"
-msgstr "Directo (por defecto)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:261
-msgid "Bridge & Proxy"
-msgstr "Puente y Proxy"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:263
-msgid "Offline"
-msgstr "Fuera de línea"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:333
-msgid "_Unsafe Browser"
-msgstr "Navegador _Inseguro"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:342
-msgid "Enabled"
-msgstr "Habilitado"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:344
-msgid "Disabled (default)"
-msgstr "Deshabilitado (por defecto)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:395
-msgid "On (default)"
-msgstr "Encendido (por defecto)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:397
-msgid "On"
-msgstr "Prendido"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:399
-msgid "Off"
-msgstr "Apagado"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:401
-msgid "Off (default)"
-msgstr "Apagado (por defecto)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:91
-#, python-brace-format
-msgid ""
-"live-persist failed with return code {returncode}:\n"
-"{stderr}"
-msgstr "live-persist falló con código de retorno {returncode}:\n{stderr}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:122
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:139
-#, python-brace-format
-msgid ""
-"cryptsetup failed with return code {returncode}:\n"
-"{stdout}\n"
-"{stderr}"
-msgstr "cryptsetup falló con código de retorno {returncode}:\n{stdout}\n{stderr}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:153
-#, python-brace-format
-msgid ""
-"live-persist failed with return code {returncode}:\n"
-"{stdout}\n"
-"{stderr}"
-msgstr "live-persist falló con código de retorno {returncode}:\n{stdout}\n{stderr}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:167
-#, python-brace-format
-msgid ""
-"umount failed with return code {returncode}:\n"
-"{stdout}\n"
-"{stderr}"
-msgstr "umount falló con código de retorno {returncode}:\n{stdout}\n{stderr}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:67
-msgid "Unlocking…"
-msgstr "Desbloqueando..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:95
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:462
-msgid "Unlock"
-msgstr "Desbloquear"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:100
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:40
-msgid "Cannot unlock encrypted storage with this passphrase."
-msgstr "No se puede desbloquear el almacenamiento encriptado con esta frase de contraseña."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
-msgid "_Language"
-msgstr "_Idioma"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:207
-msgid "_Formats"
-msgstr "_Formatos"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:244
-msgid "_Keyboard Layout"
-msgstr "Distribución de _Teclado"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:261
-#, python-format
-msgid "Unable to write on %(device)s, skipping."
-msgstr "No se puede escribir en la unidad %(device)s, omitiendo."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:294
-#, python-format
-msgid ""
-"Some partitions of the target device %(device)s are mounted. They will be "
-"unmounted before starting the installation process."
-msgstr "Algunas particiones del dispositivo de destino %(device)s están montadas y serán desmontadas antes de comenzar con la instalación."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:303
-msgid "Extracting live image to the target device..."
-msgstr "Extrayendo imagen \"live\" en el dispositivo de destino..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:310
-#, python-format
-msgid "Wrote to device at %(speed)d MB/sec"
-msgstr "Copiando archivos a %(speed)d MB/seg"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:408
-#, python-format
-msgid ""
-"There was a problem executing the following command: `%(command)s`.\n"
-"A more detailed error log has been written to \"%(filename)s\"."
-msgstr "Hubo un problema al ejecutar el siguiente comando: `%(command)s`.\nSe ha escrito un registro de errores más detallado en \"%(filename)s\"."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:424
-#, python-format
-msgid ""
-"Not enough free space on device.\n"
-"%(iso_size)dMB ISO + %(overlay_size)dMB overlay > %(free_space)dMB free space"
-msgstr "No hay suficiente espacio libre en el dispositivo\n%(iso_size)dMB ISO + %(overlay_size)dMB partición de datos > %(free_space)dMB espacio libre"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:433
-#, python-format
-msgid "Creating %sMB persistent overlay"
-msgstr "Creando partición de datos de %sMB"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:483
-#, python-format
-msgid "Unable to copy %(infile)s to %(outfile)s: %(message)s"
-msgstr "No se pudo copiar %(infile)s a %(outfile)s: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:497
-msgid "Removing existing Tails system"
-msgstr "Eliminando sistema Tails existente"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:507
-#, python-format
-msgid "Unable to remove file from previous Tails system: %(message)s"
-msgstr "No se pudo borrar un archivo del anterior sistema Tails: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:514
-#, python-format
-msgid "Unable to chmod %(file)s: %(message)s"
-msgstr "No se pudo cambiar los permisos de acceso a %(file)s: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:521
-#, python-format
-msgid "Unable to remove directory from previous Tails system: %(message)s"
-msgstr "No se pudo borrar directorio del anterior sistema Tails: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:569
-#, python-format
-msgid "Cannot find device %s"
-msgstr "No se encontró el dispositivo %s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:619
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:836
-msgid "Unknown filesystem. Your device may need to be reformatted."
-msgstr "Sistema de archivos desconocido. Su dispositivo puede necesitar ser reformateado."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:622
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:839
-#, python-format
-msgid "Unsupported filesystem: %s"
-msgstr "Sistema de archivos no soportado: %s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:640
-#, python-format
-msgid "Unknown GLib exception while trying to mount device: %(message)s"
-msgstr "Excepción GLib desconocida mientras se estaba intentando montar dispositivo:%(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:645
-#, python-format
-msgid "Unable to mount device: %(message)s"
-msgstr "No se pudo montar el dispositivo: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:650
-msgid "No mount points found"
-msgstr "No se encontraron puntos de montaje"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:661
-#, python-format
-msgid "Entering unmount_device for \"%(device)s\""
-msgstr " Ingresando a unmount_device para \"%(device)s\""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:670
-#, python-format
-msgid "Unmounting mounted filesystems on \"%(device)s\""
-msgstr "Desmontando los sistemas de archivos montados en \"%(device)s\""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:674
-#, python-format
-msgid "Unmounting \"%(udi)s\" on \"%(device)s\""
-msgstr "Desmontando \"%(udi)s\" en \"%(device)s\""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:685
-#, python-format
-msgid "Mount %s exists after unmounting"
-msgstr "El punto de montaje %s sigue existiendo después del desmontado"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:698
-#, python-format
-msgid "Partitioning device %(device)s"
-msgstr "Particionando dispositivo %(device)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:821
-#, python-format
-msgid "Unsupported device '%(device)s', please report a bug."
-msgstr "El dispositivo '%(device)s' no está soportado, por favor enviá un informe de fallos."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:824
-msgid "Trying to continue anyway."
-msgstr "Intentando continuar de todos modos."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:833
-msgid "Verifying filesystem..."
-msgstr "Verificando el sistema de archivos..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:857
-#, python-format
-msgid "Unable to change volume label: %(message)s"
-msgstr "No se pudo cambiar la etiqueta del volumen: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:862
-msgid "Installing bootloader..."
-msgstr "Instalando el gestor de arranque..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:869
-#, python-format
-msgid "Removing %(file)s"
-msgstr "Removiendo %(file)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:951
-#, python-format
-msgid "%s already bootable"
-msgstr "%s es arrancable"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:971
-msgid "Unable to find partition"
-msgstr "No se encontró la partición"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:990
-#, python-format
-msgid "Formatting %(device)s as FAT32"
-msgstr "Formateando %(device)s como FAT32"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1053
-#, python-format
-msgid "Reading extracted MBR from %s"
-msgstr "Leyendo el MBR extraído de %s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1057
-#, python-format
-msgid "Could not read the extracted MBR from %(path)s"
-msgstr "No se pudo leer el MBR extraido de %(path)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1070
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1071
-#, python-format
-msgid "Resetting Master Boot Record of %s"
-msgstr "Restableciendo Registro de Arranque Maestro de %s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1076
-msgid "Drive is a loopback, skipping MBR reset"
-msgstr "La unidad es virtual, omitiendo el restablecimiento del MBR"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1080
-msgid "Synchronizing data on disk..."
-msgstr "Sincronizando datos en disco..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
-msgid ""
-"Error: Cannot set the label or obtain the UUID of your device. Unable to "
-"continue."
-msgstr "Error: No se pudo establecer la etiqueta u obtener el UUID de su dispositivo. No se puede continuar."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
-#, python-format
-msgid "Installation complete! (%s)"
-msgstr "¡Instalación completa! (%s)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
-msgid "Tails installation failed!"
-msgstr "¡Falló la instalación de Tails!"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
-#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
-msgid "Tails Installer"
-msgstr "Instalador de Tails"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
-msgid "Clone the current Tails"
-msgstr "Clonar el Tails actual"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
-msgid "Use a downloaded Tails ISO image"
-msgstr "Usar una imagen ISO de Tails ya descargada"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:657
-msgid "Upgrade"
-msgstr "Actualizar"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
-msgid "Manual Upgrade Instructions"
-msgstr "Instrucciones para Actualización Manual"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:371
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:569
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:634
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
-msgid "Install"
-msgstr "Instalar"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
-msgid "Installation Instructions"
-msgstr "Instrucciones de Instalación"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
-#, python-format
-msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
-msgstr "%(size)s%(vendor)s%(model)sdispositivo(%(device)s)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:392
-msgid "No ISO image selected"
-msgstr "No se seleccionó imagen ISO"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:393
-msgid "Please select a Tails ISO image."
-msgstr "Por favor seleccioná una imagen ISO de Tails"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:435
-msgid "No device suitable to install Tails could be found"
-msgstr "No pudo ser encontrado ningún dispositivo adecuado para instalar Tails"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:437
-#, python-format
-msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
-msgstr "Por favor conectá una memoria USB o tarjeta SD de al menos %0.1f GB."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
-#, python-format
-msgid ""
-"The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
-"manufacturer and Tails will fail to start from it. Please try installing on "
-"a different model."
-msgstr "La memoria USB \"%(pretty_name)s\" está configurada como no removible por su fabricante, y Tails no va a arrrancar. Por favor intentá instalando en un modelo distinto."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:478
-#, python-format
-msgid ""
-"The device \"%(pretty_name)s\" is too small to install Tails (at least "
-"%(size)s GB is required)."
-msgstr "El dispositivo \"%(pretty_name)s\" tiene poca capacidad para instalar Tails (se necesitan al menos %(size)s GB)."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:491
-#, python-format
-msgid ""
-"To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a downloaded Tails ISO image:\n"
-"%(dl_url)s"
-msgstr "Para actualizar el dispositivo \"%(pretty_name)s\" desde este Tails, necesitás usar una imagen ISO de Tails descargada:\n%(dl_url)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:513
-msgid "An error happened while installing Tails"
-msgstr "Ha ocurrido un error mientras se instalaba Tails"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:564
-msgid "Installation complete!"
-msgstr "¡Instalación completa!"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:617
-msgid "Unable to mount device"
-msgstr "No se pudo montar el dispositivo"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:624
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:656
-msgid "Confirm the target USB stick"
-msgstr "Confirmá la memoria USB de destino"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:625
-#, python-format
-msgid ""
-"%(size)s %(vendor)s %(model)s device (%(device)s)\n"
-"\n"
-"All data on this USB stick will be lost."
-msgstr "%(size)s%(vendor)s%(model)sdispositivo (%(device)s)\n\nTodos los datos en esta memoria USB se van a perder."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:643
-#, python-format
-msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
-msgstr "%(parent_size)s%(vendor)s%(model)sdispositivo (%(device)s)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:651
-msgid ""
-"\n"
-"\n"
-"The persistent storage on this USB stick will be preserved."
-msgstr "\n\nEl almacenamiento persistente en esta memoria USB será preservado."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:652
-#, python-format
-msgid "%(description)s%(persistence_message)s"
-msgstr "%(description)s%(persistence_message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:688
-msgid ""
-"The selected file is unreadable. Please fix its permissions or select "
-"another file."
-msgstr "No se pudo leer el archivo seleccionado. Por favor cambiá los permisos o seleccioná otro archivo."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
-msgid ""
-"Unable to use the selected file. You may have better luck if you move your "
-"ISO to the root of your drive (ie: C:\\)"
-msgstr "Imposible usar el archivo seleccionado. Quizás tengas mejor suerte si movés tu ISO a la carpeta raíz de tu unidad (ej: C:\\)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
-#, python-format
-msgid "%(filename)s selected"
-msgstr "%(filename)s seleccionado"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:31
-msgid "Unable to find Tails on ISO"
-msgstr "Incapaz de encontrar Tails en imagen ISO"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:37
-#, python-format
-msgid "Could not guess underlying block device: %s"
-msgstr "No se pudo suponer cual es el dispositivo de bloque subyacente: %s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:52
-#, python-format
-msgid ""
-"There was a problem executing `%(cmd)s`.\n"
-"%(out)s\n"
-"%(err)s"
-msgstr "Hubo un problema ejecutando `%(cmd)s`.\n%(out)s\n%(err)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:64
-#, python-format
-msgid "\"%s\" does not exist"
-msgstr "\"%s\" no existe"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:66
-#, python-format
-msgid "\"%s\" is not a directory"
-msgstr "\"%s\" no es una carpeta"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:77
-#, python-format
-msgid "Skipping \"%(filename)s\""
-msgstr "Omitiendo \"%(filename)s\""
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:54
-#, python-format
-msgid ""
-"There was a problem executing `%(cmd)s`.%(out)s\n"
-"%(err)s"
-msgstr "Hubo un problema ejecutando `%(cmd)s`.%(out)s\n%(err)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:126
-msgid "Could not open device for writing."
-msgstr "No se pudo abrir el dispositivo para la escritura."
-
-#: 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"
-"<i>KeePassXC</i> changed the default name of the database to <i>Passwords.kdbx</i>.\n"
-"\n"
-"Renaming your database to <i>Passwords.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
-msgstr "<b><big>¿Querés renombrar tu base de datos de <i>KeePassXC</i>?</big></b>\n\nTenés una base de datos de <i>KeePassXC</i> en tu carpeta <i>Persistente</i>:\n\n<i>${filename}</i>\n\n<i>KeePassXC</i> cambió el nombre por defecto de la base de datos a <i>Passwords.kdbx</i>.\n\nRenombrando tu base de datos a <i>Passwords.kdbx</i> le va a permitir a <i>KeePassXC</i> abrirla automáticamente en el futuro."
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:25
-msgid "Rename"
-msgstr "Renombrar"
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:26
-msgid "Keep current name"
-msgstr "Mantener nombre actual"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:94
-msgid "Persistence wizard - Persistent volume creation"
-msgstr "Asistente de persistencia - Creación de volumen persistente"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:97
-msgid "Choose a passphrase to protect the persistent volume"
-msgstr "Elegí una frase de contraseña para proteger el volumen persistente"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:100
-#, perl-brace-format
-msgid ""
-"A {size} persistent volume will be created on the <b>{vendor} {model}</b> "
-"device. Data on this volume will be stored in an encrypted form protected by"
-" a passphrase."
-msgstr "Un volumen persistente de {size} va a ser creado en el dispositivo <b>{vendor} {model}</b>. Los datos en este volumen van a ser almacenados en forma encriptada, protegidos por una frase de contraseña."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:105
-msgid "Create"
-msgstr "Crear"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:148
-msgid ""
-"<b>Beware!</b> Using persistence has consequences that must be well "
-"understood. Tails can't help you if you use it wrong! See the <i>Encrypted "
-"persistence</i> page of the Tails documentation to learn more."
-msgstr "<b>¡Prestá atención!</b> Usar persistencia tiene consecuencias que deben ser bien entendidas. ¡Tails no puede ayudarte si la usás mal! Mirá la página <i>Persistencia encriptada</i> de la documentación de Tails para aprender más."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:175
-msgid "Passphrase:"
-msgstr "Frase contraseña:"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:181
-msgid "Verify Passphrase:"
-msgstr "Verificar frase de contraseña:"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:191
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:259
-msgid "Passphrase can't be empty"
-msgstr "La frase de contraseña no puede ser vacía"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:226
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394
-msgid "Show Passphrase"
-msgstr "Mostrar Frase de Contraseña"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:250
-msgid "Passphrases do not match"
-msgstr "Las frases de contraseña no coinciden"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:305
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:178
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:101
-msgid "Failed"
-msgstr "Falló"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:313
-msgid "Mounting Tails persistence partition."
-msgstr "Montando partición persistente Tails"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:316
-msgid "The Tails persistence partition will be mounted."
-msgstr "La partición persistente Tails será montada."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:325
-msgid "Correcting permissions of the persistent volume."
-msgstr "Corrigiendo permisos del volumen persistente."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:328
-msgid "The permissions of the persistent volume will be corrected."
-msgstr "Los permisos del volumen persistente serán corregidos."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:336
-msgid "Creating default persistence configuration."
-msgstr "Creando configuración de persistencia por defecto."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:339
-msgid "The default persistence configuration will be created."
-msgstr "La configuración de persistencia por defecto será creada."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:353
-msgid "Creating..."
-msgstr "Creando..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:355
-msgid "Creating the persistent volume..."
-msgstr "Creando el volumen persistente..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:86
-msgid "Persistence wizard - Persistent volume configuration"
-msgstr "Asistente de persistencia - Configuración de volumen persistente"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:89
-msgid "Specify the files that will be saved in the persistent volume"
-msgstr "Especificá los archivos que serán salvados en el volumen persistente"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:92
-#, perl-brace-format
-msgid ""
-"The selected files will be stored in the encrypted partition {partition} "
-"({size}), on the <b>{vendor} {model}</b> device."
-msgstr "Los archivos seleccionados van a ser almacenados en la partición encriptada {partition} ({size}), en el dispositivo <b>{vendor} {model}</b>."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:98
-msgid "Save"
-msgstr "Guardar"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:191
-msgid "Saving..."
-msgstr "Guardando..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:193
-msgid "Saving persistence configuration..."
-msgstr "Salvando la configuración de persistencia..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:51
-msgid "Persistence wizard - Persistent volume deletion"
-msgstr "Asistente de persistencia - Eliminación de volumen persistente"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:54
-msgid "Your persistent data will be deleted."
-msgstr "Tus datos persistentes serán borrados."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:58
-#, perl-brace-format
-msgid ""
-"The persistent volume {partition} ({size}), on the <b>{vendor} {model}</b> "
-"device, will be deleted."
-msgstr "El volumen persistente {partition} ({size}), en el dispositivo <b>{vendor} {model}</b>, va a ser borrado."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:64
-msgid "Delete"
-msgstr "Borrar"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:114
-msgid "Deleting..."
-msgstr "Borrando..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:116
-msgid "Deleting the persistent volume..."
-msgstr "Eliminando el volumen persistente..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:53
-msgid "Personal Data"
-msgstr "Datos personales"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55
-msgid "Keep files stored in the `Persistent' directory"
-msgstr "Mantener los archivos almacenados en el directorio `Persistente'"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:68
-msgid "Welcome Screen"
-msgstr "Pantalla de Bienvenida"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70
-msgid "Language, administration password, and additional settings"
-msgstr "Lenguaje, contraseña de administración y ajustes adicionales"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:83
-msgid "Browser Bookmarks"
-msgstr "Atajos del navegador"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85
-msgid "Bookmarks saved in the Tor Browser"
-msgstr "Marcadores guardados en el Navegador Tor"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:98
-msgid "Network Connections"
-msgstr "Conexiones de Red"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100
-msgid "Configuration of network devices and connections"
-msgstr "Configuración de dispositivos y conexiones de red"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:115
-msgid "Software installed when starting Tails"
-msgstr "Programas instalados cuando se inicia Tails"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:133
-msgid "Printers"
-msgstr "Impresoras"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135
-msgid "Printers configuration"
-msgstr "Configuración de impresoras"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:148
-msgid "Thunderbird"
-msgstr "Thunderbird"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150
-msgid "Thunderbird emails, feeds, and OpenPGP keys"
-msgstr "Correos electrónicos, contenidos y claves OpenPGP de Thunderbird"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:163
-msgid "GnuPG"
-msgstr "GnuPG"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165
-msgid "OpenPGP keys outside of Thunderbird"
-msgstr "Claves OpenPGP fuera de Thunderbird"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:178
-msgid "Bitcoin Client"
-msgstr "Cliente Bitcoin"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180
-msgid "Electrum's bitcoin wallet and configuration"
-msgstr "Billetera bitcoin de Electrum y configuración"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:193
-msgid "Pidgin"
-msgstr "Pidgin"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195
-msgid "Pidgin profiles and OTR keyring"
-msgstr "Perfiles pidgin y conjunto de claves OTR"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:208
-msgid "SSH Client"
-msgstr "Cliente SSH"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210
-msgid "SSH keys, configuration and known hosts"
-msgstr "Claves SSH, configuración y equipos conocidos"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:223
-msgid "Dotfiles"
-msgstr "Archivos ocultos"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:225
-msgid ""
-"Symlink into $HOME every file or directory found in the `dotfiles' directory"
-msgstr "Crear vínculos simbólicos en $HOME de todos los archivos o directorios encontrados en el directorio `archivos_ocultos'"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:111
-msgid "Custom"
-msgstr "Personalizado"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:285
-msgid "Setup Tails persistent volume"
-msgstr "Configurar volumen persistente de Tails"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
-#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
-msgid "Error"
-msgstr "Error"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:390
-msgid "Device already has a persistent volume."
-msgstr "El dispositivo ya tiene un volumen persistente."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:397
-msgid "Device has not enough unallocated space."
-msgstr "El dispositivo no tiene suficiente espacio libre."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:403
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:416
-msgid "Device has no persistent volume."
-msgstr "El dispositivo no tiene ningún volumen persistente."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:409
-msgid ""
-"Cannot delete the persistent volume while in use. You should restart Tails "
-"without persistence."
-msgstr "No se puede eliminar el volumen persistente mientras está en uso. Deberías reiniciar Tails sin persistencia."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:421
-msgid "Persistence volume is not unlocked."
-msgstr "El volumen persistente no está desbloqueado."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:425
-msgid "Persistence volume is not mounted."
-msgstr "El volumen persistente no está montado."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:430
-msgid "Persistence volume is not readable. Permissions or ownership problems?"
-msgstr "El volumen persistente no se puede leer. ¿Problemas de permisos o propietarios?"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:435
-msgid "Persistence volume is not writable."
-msgstr "El volumen persistente no puede ser escrito."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444
-msgid "Tails is running from non-USB / non-SDIO device."
-msgstr "Tails está corriendo desde un dispositivo que no es USB / SDIO."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:449
-msgid "Device is optical."
-msgstr "El dispositivo es óptico."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:456
-msgid "Device was not created using a USB image or Tails Installer."
-msgstr "El dispositivo no fue creado usando una imagen USB o un instalador de Tails."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:698
-msgid "Persistence wizard - Finished"
-msgstr "Asistente de persistencia - Finalizado"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:701
-msgid ""
-"Any changes you have made will only take effect after restarting Tails."
-msgstr "Cualesquiera cambios que hayas hecho tomarán efecto solamente después de reiniciar Tails."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:711
-msgid "Restart Now"
-msgstr "Reiniciar Ahora"
-
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
-msgid "su is disabled. Please use sudo instead."
-msgstr "su está deshabilitado. Por favor usar sudo en vez."
-
-#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-msgid ""
-"The device Tails is running from cannot be found. Maybe you used the 'toram'"
-" option?"
-msgstr "El dispositivo desde el cual Tails está corriendo no puede ser encontrado. ¿Tal vez utilizaste la opción 'toram'?"
-
-#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:251
-msgid ""
-"The drive Tails is running from cannot be found. Maybe you used the 'toram' "
-"option?"
-msgstr "La unidad de disco desde la cual Tails está corriendo no puede ser encontrada. ¿Tal vez utilizaste la opción 'toram'?"
-
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
-msgid "Import Failed"
-msgstr "Falló la Importación"
-
-#. Translators: Don't translate {path} or {error},
-#. they are placeholders and will be replaced.
-#. They need to be present in the translated string.
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:46
-#, python-brace-format
-msgid ""
-"Failed to import keys from {path}:\n"
-"{error}"
-msgstr "Falló la importación de claves desde {path}:\n{error}"
-
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:54
-msgid "Key Imported"
-msgid_plural "Keys Imported"
-msgstr[0] "Clave Importada"
-msgstr[1] "Claves Importadas"
-
-#. Translators: Don't translate {uids}, it's a placeholder and
-#. will be replaced. It needs to be present in the translated string.
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:57
-#, python-brace-format
-msgid "Imported a key for {uids}"
-msgid_plural "Imported keys for {uids}"
-msgstr[0] "Clave importada para {uids}"
-msgstr[1] "Claves importadas para {uids}"
-
-#: 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 "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 esta compilación:\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} Por favor revisá tu lista de programas adicionales o leé la bitácora de 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 "Por favor revisá tu lista de programas adicionales o leé la bitácora de sistema para entender el problema."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
-msgid "Show Log"
-msgstr "Mostrar bitácora"
-
-#: 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 tus programas adicionales?"
-
-#: 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 esté arrancando Tails."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-msgid "Install Every Time"
-msgstr "Instalar todas las veces"
-
-#: 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 "Instalar 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:371
-msgid "The configuration of your additional software failed."
-msgstr "La configuración de tu programa adicional falló."
-
-#: 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 está arrancando Tails, podés crear un almacenamiento persistente y activar la característica <b>Programas Adicionales</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 "Falló creación de tu almacenamiento persistente."
-
-#. 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 cuando esté arrancando 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."
-msgstr "Para hacerlo, necesitás ejecutar Tails desde una memoria USB."
-
-#. Translators: Don't translate {packages}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
-#, python-brace-format
-msgid "Remove {packages} from your additional software?"
-msgstr "¿Remover {packages} de tus programas adicionales?"
-
-#. Translators: Don't translate {packages}, it's a placeholder
-#. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
-#, python-brace-format
-msgid "This will stop installing {packages} automatically."
-msgstr "Esto detendrá la instalación de {packages} automáticamente."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
-msgid "Remove"
-msgstr "Remover"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
-msgid "Installing your additional software from persistent storage..."
-msgstr "Instalando tus programas adicionales desde almacenamiento persistente..."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
-msgid "This can take several minutes."
-msgstr "Esto puede llevar varios minutos."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
-msgid "The installation of your additional software failed"
-msgstr "La instalación de tu programa adicional falló."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
-msgid "Additional software installed successfully"
-msgstr "Programas adicionales instalados exitosamente"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
-msgid "The check for upgrades of your additional software failed"
-msgstr "La búsqueda de nuevas versiones de tus programas adicionales falló."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
-msgid ""
-"Please check your network connection, restart Tails, or read the system log "
-"to understand the problem."
-msgstr "Por favor revisá tu conexión de red, reiniciá Tails, o leé la bitácora del sistema para entender el problema."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
-msgid "The upgrade of your additional software failed"
-msgstr "La instalación de nuevas versiones de tus programas adicionales falló."
-
-#: 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 "¿Remover {package} de tus programas adicionales? Esto detendrá la instalación del paquete automáticamente."
-
-#. 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 "Falló remover {pkg}"
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
-msgid "Failed to read additional software configuration"
-msgstr "La configuración de tu programa adicional falló al ser leída."
-
-#. 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 instalación de {package} automáticamente."
-
-#: 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, instalá algunos programas usando el <a href=\"synaptic.desktop\">Gestor de paquetes Synaptic</a> ó <a href=\"org.gnome.Terminal.desktop\">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, desbloqueá tu almacenamiento persistente cuando arranque Tails, e instalá algunos programas usando el <a href=\"synaptic.desktop\">Gestor de paquetes Synaptic</a> ó <a href=\"org.gnome.Terminal.desktop\">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, creá un almacenamiento persistente, e instalá algunos programas usando el <a href=\"synaptic.desktop\">Gestor de paquetes Synaptic</a> ó <a href=\"org.gnome.Terminal.desktop\">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 and create a persistent storage."
-msgstr "Para hacerlo, instalá Tails en una memoria USB y creá un almacenamiento persistente."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:251
-msgid "[package not available]"
-msgstr "[paquete no disponible]"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:51
-msgid "Synchronizing the system's clock"
-msgstr "Sincronizando el reloj del sistema"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Onion Services."
-" Please wait..."
-msgstr "Tor necesita un reloj preciso para funcionar apropiadamente, en especial para Servicios Onion. Por favor esperá..."
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:86
-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 "Bloqueador de pantalla"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
-msgid "Set up a password to unlock the screen."
-msgstr "Definí 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
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93
-msgid "Confirm"
-msgstr "Confirmar"
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:121
-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:132
-msgid "Known security issues"
-msgstr "Problemas de seguridad conocidos"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:56
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr "Placa de red ${nic} deshabilitada"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:57
-#, 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 "Falsificación de MAC para placa de red ${nic_name} (${nic}) falló, por lo que se ha deshabilitado temporalmente.\nQuizás prefieras reiniciar Tails y deshabilitar esta función."
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:66
-msgid "All networking disabled"
-msgstr "Todas las funciones de red deshabilitadas"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:67
-#, 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 "Falsificación de MAC para placa de red ${nic_name} (${nic}) falló. La recuperación de error también falló, por lo que las funciones de red están deshabilitadas.\nQuizás prefieras reiniciar Tails y deshabilitar esta función."
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
-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/upgrade#manual"
-msgstr "<b>No hay suficiente memoria disponible para comprobar nuevas versiones.</b>\n\nAsegurate que éste sistema satisface los requerimientos para correr Tails.\nMirá file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nIntentá reiniciar Tails para comprobar nuevamente por actualizaciones.\n\nO hacé una actualización manual.\nMirá https://tails.boum.org/doc/upgrade#manual"
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
-msgid "error:"
-msgstr "error:"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:67
-msgid "Warning: virtual machine detected!"
-msgstr "Advertencia: ¡máquina virtual detectada!"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:70
-msgid "Warning: non-free virtual machine detected!"
-msgstr "Advertencia: ¡máquina virtual con programas propietarios detectada!."
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:73
-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 "Tanto el sistema operativo en el equipo físico como el conjunto de programas de virtualización son capaces de monitorear lo que estás haciendo en Tails. Unicamente programas libres pueden ser considerados dignos de confianza, tanto para el sistema operativo del equipo físico como para la máquina virtual."
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
-msgid "Learn more"
-msgstr "Aprendé más"
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:40
-msgid "You need to migrate your OpenPGP keys"
-msgstr "Necesitás migrar tus claves OpenPGP"
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:42
-msgid ""
-"<i>Thunderbird</i> 78 now replaces the <i>Enigmail</i> extension with built-"
-"in support for OpenPGP encryption. To continue using your OpenPGP keys in "
-"<i>Thunderbird</i>, follow our migration instructions."
-msgstr "<i>Thunderbird</i> 78 ahora reemplaza a la extensión <i>Enigmail</i> con soporte incorporado para encriptación OpenPGP. Para continuar usando tus claves OpenPGP en <i>Thunderbird</i>, seguí nuestras instrucciones de migración."
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:44
-msgid "_Open Migration Instructions"
-msgstr "_Abrir Instrucciones de Migración"
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:45
-msgid "_Migrate Later"
-msgstr "_Migrar Luego"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Tor is not ready"
-msgstr "Tor no está listo"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:47
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor no está listo. ¿Iniciar el Navegador Tor de todos modos?"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:48
-msgid "Start Tor Browser"
-msgstr "Iniciar el Navegador Tor"
-
-#: 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 circuitos Onion"
-
-#. Translators: Don't translate {volume_label} or {volume_size},
-#. they are placeholders and will be replaced. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:65
-#, 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. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:71
-#, 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. It needs to be present in the translated
-#. string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:77
-#, python-brace-format
-msgid "{volume_size} Volume"
-msgstr "Volumen de {volume_size}"
-
-#. Translators: Don't translate {volume_name}, it's a placeholder and
-#. will be replaced. It needs to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
-#, 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. They need to be present
-#. in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:125
-#, 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/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:132
-#, 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. They need to be present
-#. in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:139
-#, 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/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:146
-#, python-brace-format
-msgid "{volume_name} – {drive_name}"
-msgstr "{volume_name} – {drive_name}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
-msgid "Wrong passphrase or parameters"
-msgstr "Frase de contraseña o parámetros erróneos"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:236
-msgid "Error unlocking volume"
-msgstr "Error desbloqueando volumen"
-
-#. Translators: Don't translate {volume_name} or {error_message},
-#. they are placeholder and will be replaced. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:241
-#, python-brace-format
-msgid ""
-"Couldn't unlock volume {volume_name}:\n"
-"{error_message}"
-msgstr "No se pudo desbloquear volumen {volume_name}:\n{error_message}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
-msgid "One or more applications are keeping the volume busy."
-msgstr "Una o más aplicaciones están manteniendo al volumen ocupado."
-
-#. Translators: Don't translate {volume_name} or {error_message},
-#. they are placeholder and will be replaced. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:350
-#, python-brace-format
-msgid ""
-"Couldn't lock volume {volume_name}:\n"
-"{error_message}"
-msgstr "No se puede bloquear el volumen {volume_name}:\n{error_message}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:352
-msgid "Locking the volume failed"
-msgstr "Falló el bloqueo del volumen"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
-msgid "No file containers added"
-msgstr "No se añadieron contenedores de archivo"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
-msgid "No VeraCrypt devices detected"
-msgstr "No se detectaron dispositivos VeraCrypt"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
-#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
-msgid "Unlock VeraCrypt Volumes"
-msgstr "Desbloquear volúmenes VeraCrypt"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
-msgid "Container already added"
-msgstr "Contenedor ya añadido"
-
-#: config/chroot_local-includes/usr/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 debiera estar listado."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
-msgid "Container opened read-only"
-msgstr "Contenedor abierto sólo-lectura"
-
-#. Translators: Don't translate {path}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/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 pudo ser abierto con acceso de escritura. En vez, fue abierto cómo sólo-lectura. No serás capaz de modificar su contenido.\n{error_message}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
-msgid "Error opening file"
-msgstr "Error abriendo archivo"
-
-#: config/chroot_local-includes/usr/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/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/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
-msgid "Failed to add container"
-msgstr "Fallo al añadir contenedor"
-
-#: config/chroot_local-includes/usr/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 archivo %s: Tiempo excedido mientras se esperaba la configuración del bucle.\nPor favor intenta utilizar la aplicación <i>Disks</i> en su lugar."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
-msgid "Choose File Container"
-msgstr "Elegir contenedor de archivo"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
-msgid "Launch the Unsafe Browser?"
-msgstr "¿Iniciar el Navegador Inseguro?"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
-msgid ""
-"The Unsafe Browser is not anonymous and the websites that you visit can see "
-"your real IP address.\\n\\nOnly use the Unsafe Browser to log in to a "
-"captive portal or browse trusted web pages on the local network."
-msgstr "El Navegador Inseguro no es anónimo y los sitios web que visités pueden ver tu dirección IP real.\\n\\nSolamente usá el Navegador Inseguro para iniciar sesión en un portal cautivo o navegar páginas web de confianza en la red local."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
-msgid "Starting the Unsafe Browser..."
-msgstr "Iniciando el Navegador Inseguro..."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
-msgid "This may take a while, so please be patient."
-msgstr "Esto puede tomar un tiempo, por favor sé paciente."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "Shutting down the Unsafe Browser..."
-msgstr "Cerrando el Navegador Inseguro..."
-
-#: 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 tomar un tiempo, y no podrás reiniciar el Navegador Inseguro hasta que esté cerrado apropiadamente."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
-msgid "Failed to restart Tor."
-msgstr "Falla 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
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:510
-msgid "Unsafe Browser"
-msgstr "Navegador Inseguro"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
-msgid ""
-"The Unsafe Browser was not enabled in the Welcome Screen.\\n\\nTo use the Unsafe Browser, restart Tails and enable the Unsafe Browser in the additional settings of the Welcome Screen.\\n\n"
-"To always enable the Unsafe Browser, turn on the Welcome Screen feature of the Persistent Storage."
-msgstr "El Navegador Inseguro no fue habilitado en la Pantalla de Bienvenida.\\n\\nPara usarlo, reiniciá Tails y habilitá el Navegador Inseguro en los ajustes adicionales de la Pantalla de Bienvenida.\\n\nPara habilitar siempre el Navegador Inseguro, activá la característica Pantalla de Bienvenida del Almacenamiento Persistente."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
-msgid ""
-"Another Unsafe Browser is currently running, or being cleaned up. Please "
-"retry in a while."
-msgstr "Otro Navegador Inseguro está corriendo, o siendo cerrado. Por favor intentá más tarde."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:107
-msgid "Failed to setup chroot."
-msgstr "Falla al configurar nuevo directorio raíz."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:114
-msgid "Failed to configure browser."
-msgstr "Falla al configurar Navegador."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:120
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr "No hemos obtenido un servidor DNS por medio de DHCP o configurado manualmente en NetworkManager."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:131
-msgid "Failed to run browser."
-msgstr "Falla al ejecutar el Navegador."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/exceptions.py:41
-#, python-format
-msgid ""
-"The %s variable was not found in any of the configuration files "
-"/etc/whisperback/config.py, ~/.whisperback/config.py, or ./config.py"
-msgstr "La variable %s no fue encontrada en ninguno de estos archivos de configuración: /etc/whisperback/config.py, ~/.whisperback/config.py, o ./config.py"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:114
-msgid "Name of the affected software"
-msgstr "Nombre de los programas afectados"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:116
-msgid "Exact steps to reproduce the error"
-msgstr "Pasos exactos para reproducir el error"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:118
-msgid "Actual result and description of the error"
-msgstr "Resultado real y descripción del error"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:120
-msgid "Desired result"
-msgstr "Resultado deseado"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:133
-msgid "Unable to load a valid configuration."
-msgstr "Incapaz de cargar una configuración válida."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:170
-msgid "Sending mail..."
-msgstr "Enviando correo electrónico..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:171
-msgid "Sending mail"
-msgstr "Enviando correo electrónico"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:173
-msgid "This could take a while..."
-msgstr "Esto podría tomar un momento..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:189
-msgid "The contact email address doesn't seem valid."
-msgstr "La dirección de correo electrónico de contacto no parece válida."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:206
-msgid "Unable to send the mail: SMTP error."
-msgstr "No se puede enviar el correo: error SMTP."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:208
-msgid "Unable to connect to the server."
-msgstr "No se puede conectar al servidor."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:210
-msgid "Unable to create or to send the mail."
-msgstr "No se puede crear o enviar correo."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:213
-msgid ""
-"\n"
-"\n"
-"The bug report could not be sent, likely due to network problems. Please try to reconnect to the network and click send again.\n"
-"\n"
-"If it does not work, you will be offered to save the bug report."
-msgstr "\n\nEl reporte de error no pudo ser enviado, probablemente debido a problemas de red. Por favor, intentá reconectarte a la red y cliquear 'enviar' nuevamente.\n\nSi esto no funciona, te va a ser ofrecido salvarlo."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:226
-msgid "Your message has been sent."
-msgstr "Tu mensaje ha sido enviado."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:233
-msgid "An error occured during encryption."
-msgstr "Ocurrió un error durante la encriptación."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:253
-#, python-format
-msgid "Unable to save %s."
-msgstr "No se puede guardar %s."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:276
-#, python-format
-msgid ""
-"The bug report could not be sent, likely due to network problems.\n"
-"\n"
-"As a work-around you can save the bug report as a file on a USB drive and try to send it to us at %s from your email account using another system. Note that your bug report will not be anonymous when doing so unless you take further steps yourself (e.g. using Tor with a throw-away email account).\n"
-"\n"
-"Do you want to save the bug report to a file?"
-msgstr "El reporte de error no pudo ser enviado, probablemente debido a problemas de red.\n\nComo medida alternativa, podés salvar el reporte de fallo como un archivo en un disco USB y tratar de enviárnoslo a %s desde tu cuenta de correo electrónico usando otro sistema. Notá que tu reporte de error no será anónimo cuando hagas eso a menos que tomes otros pasos por vos mismo (por ejemplo usando Tor con una cuenta de correo electrónico descartable).\n\n¿Querés salvar el reporte de error a un archivo?"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:338
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:280
-msgid "WhisperBack"
-msgstr "WhisperBack"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:339
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:12
-msgid "Send feedback in an encrypted mail."
-msgstr "Enviar comentarios en un correo cifrado."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:342
-msgid "Copyright © 2009-2018 Tails developers (tails(a)boum.org)"
-msgstr "Copyright © 2009-2018 desarrolladores de Tails (tails(a)boum.org)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:343
-msgid "Tails developers <tails(a)boum.org>"
-msgstr "Desarrolladores de Tails <tails(a)boum.org>"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:344
-msgid "translator-credits"
-msgstr "créditos-del-traductor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:377
-msgid "This doesn't seem to be a valid URL or OpenPGP key."
-msgstr "Este no aparenta ser un URL o clave OpenPGP válida."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:63
-#, python-format
-msgid "Invalid contact email: %s"
-msgstr "Correo electrónico de contacto inválido: %s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:83
-#, python-format
-msgid "Invalid contact OpenPGP key: %s"
-msgstr "Clave OpenPGP de contacto inválida: %s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:85
-msgid "Invalid contact OpenPGP public key block"
-msgstr "Bloque de clave pública OpenPGP de contacto inválido"
-
-#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
-msgid "Report an error"
-msgstr "Reportar 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 "Abrí una terminal como superusuario, usando gksu para pedir la contraseña"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr "Aprendé cómo usar Tails"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
-msgid "Learn more about Tails"
-msgstr "Aprendé más acerca de Tails"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
-msgid "Install, clone, upgrade Tails"
-msgstr "Instalar, clonar, actualizar Tails"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1
-msgid "Delete persistent volume"
-msgstr "Eliminar el volumen persistente"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2
-msgid "Delete the persistent volume and its content"
-msgstr "Eliminar el volumen persistente y su contenido"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1
-msgid "Configure persistent volume"
-msgstr "Configurar el volumen persistente"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2
-msgid ""
-"Configure which files and application configuration are saved between "
-"working sessions"
-msgstr "Configurar qué archivos y que configuración de la aplicación se guardan entre sesiones de trabajo"
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
-msgid "Tor Browser"
-msgstr "Navegador Tor"
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
-msgid "Anonymous Web Browser"
-msgstr "Navegador 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 web sin anonimato "
-
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
-msgid "Unsafe Web Browser"
-msgstr "Navegador web inseguro"
-
-#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
-msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr "Montar contenedores de archivo y dispositivos 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 "Configurar los programas adicionales instalados desde tu almacenamiento persistente cuando esté arrancando Tails."
-
-#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:1
-msgid "WhisperBack Error Reporting"
-msgstr "Informe de errores de WhisperBack"
-
-#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:2
-msgid "Send feedback via encrypted e-mail"
-msgstr "Enviar comentarios en un correo electrónico encriptado."
-
-#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:3
-msgid "feedback;bug;report;tails;error;"
-msgstr "comentarios;fallo;informe;tails;error;"
-
-#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr "Herraminetas especificas 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 como superusuario, necesitás autenticarte."
-
-#: ../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 "Remover un programa 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 remover un paquete de tus programas adicionales ($(command_line))"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:693
-msgid "Administration Password"
-msgstr "Contraseña de Administración"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:34
-msgid ""
-"Set up an administration password if you need to perform administrative "
-"tasks. Otherwise, the administration password is disabled for better "
-"security."
-msgstr "Configurá una contraseña de administración si necesitás realizar alguna tarea administrativa. Si no lo hacés, la contraseña de administración se deshabilita para mayor seguridad."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:69
-msgid "Enter an administration password"
-msgstr "Ingresá una contraseña de administración"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:107
-msgid "Confirm your administration password"
-msgstr "Confirmá tu contraseña de administración"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:124
-msgid "Disable"
-msgstr "Deshabilitar"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:697
-msgid "MAC Address Spoofing"
-msgstr "Falsificación de dirección MAC"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:170
-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 "La falsificación de la dirección MAC oculta el número de serie de tu interfaz de red (Wi-Fi o cableada) a la red local. Esta técnica es generalmente más segura ya que te ayuda a esconder tu ubicación geográfica. Pero también puede crear problemas de conectividad o parecer sospechoso."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:212
-msgid "Spoof all MAC addresses (default)"
-msgstr "Falsificar todas las direcciones MAC (por defecto)"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:258
-msgid "Don't spoof MAC addresses"
-msgstr "No falsificar las direcciones MAC"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:701
-msgid "Network Configuration"
-msgstr "Configuración de Red"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:327
-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 "Si tu conexión a Internet está censurada, filtrada, o canalizada a través de un tercero, podés configurar un puente Tor o un proxy local. Para trabajar completamente fuera de línea, podés deshabilitar todas las funciones de red."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:367
-msgid "Connect directly to the Tor network (default)"
-msgstr "Conectar directamente a la red de Tor (por defecto)"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:413
-msgid "Configure a Tor bridge or local proxy"
-msgstr "Configurar un puente Tor o proxy local"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:457
-msgid "Disable all networking"
-msgstr "Deshabilitar todas las funciones de red"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:526
-msgid ""
-"The Unsafe Browser allows you to log in to a captive portal.\n"
-"\n"
-"A captive portal is a web page that is displayed before you can access the Internet. Captive portals usually require to log in to the network or enter information such as an email address.\n"
-"\n"
-"The Unsafe Browser is not anonymous and can deanonymize you. Use it only to log in to captive portals."
-msgstr "El Navegador Inseguro te permite iniciar sesión en un portal cautivo.\n\nUn portal cautivo es una página web que es mostrada antes de que puedas acceder Internet. Los portales cautivos usualmente requieren inciar sesión en la red o entrar información tal como una dirección de correo electrónico.\n\nEl Navegador Inseguro no es anónimo y puede deanonimizarte. Usalo solamente para iniciar sesión en portales cautivos."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:572
-msgid "Disable the Unsafe Browser (default)"
-msgstr "Deshabilitar el Navegador Inseguro (por defecto)"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:617
-msgid "Enable the Unsafe Browser"
-msgstr "Habilitar el Navegador Inseguro"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100
-msgid "Settings were loaded from the persistent storage."
-msgstr "Los ajustes fueron cargados desde el almacenamiento persistente."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:168
-msgid ""
-"You will configure the Tor bridge and local proxy later on after connecting "
-"to a network."
-msgstr "Vas a configurar el puente Tor y el proxy local luego, después de conectar a una red."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:220
-msgid "Welcome to Tails!"
-msgstr "¡Bienvenido a Tails!"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:254
-msgid "Language & Region"
-msgstr "Idioma y Región"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:290
-msgid "Default Settings"
-msgstr "Configuración por defecto"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:353
-msgid "Encrypted _Persistent Storage"
-msgstr "Almacenamiento encriptado _Persistente"
-
-#. The label for this placeholder text is not very big, so keep this string
-#. short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:447
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Ingresá tu frase de contraseña para desbloquear el almacenamiento persistente"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:495
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
-msgstr "Tu almacenamiento persistente está desbloqueado. Reiniciá Tails para bloquearlo de nuevo."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:533
-msgid "_Additional Settings"
-msgstr "Ajustes _Adicionales"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:616
-msgid "Add an additional setting"
-msgstr "Agregar una configuración adicional"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:665
-msgid ""
-"The default settings are safe in most situations. To add a custom setting, "
-"press the \"+\" button below."
-msgstr "Los ajustes por defecto son seguros en la mayoría de las situaciones. Para añadir un ajuste personalizado, presioná el botón \"+\" que está abajo."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:709
-msgid "Shutdown"
-msgstr "Apagar"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:720
-msgid "_Start Tails"
-msgstr "_Iniciar Tails"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
-msgid "File Containers"
-msgstr "Contenedores de archivo"
-
-#: ../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 discos"
-
-#: ../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 con o avalada 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 "Bloqueá éste 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 "Desprendé éste volumen"
-
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
-msgid "Target USB stick:"
-msgstr "Memoria USB de destino:"
-
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
-msgid "Reinstall (delete all data)"
-msgstr "Reinstalar (borrar todos los datos)"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:11
-msgid "Copyright © 2009-2018 tails(a)boum.org"
-msgstr "Copyright © 2009-2018 tails(a)boum.org"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
-msgid ""
-"WhisperBack - Send feedback in an encrypted mail\n"
-"Copyright (C) 2009-2018 Tails developers <tails(a)boum.org>\n"
-"\n"
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 3 of the License, or (at\n"
-"your option) any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful, but\n"
-"WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n"
-"General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program. If not, see <http://www.gnu.org/licenses/>.\n"
-msgstr "WhisperBack - Envianos tus opiniones en un correo electrónico encriptado\nCopyright (C) 2009-2018 Desarrolladores de Tails <tails(a)boum.org>\nEste programa es gratis. Podés redistribuirlo y/o modificarlo\nbajo los términos de la Licencia Pública General GNU como aparece publicada por\nla Free Software Foundation; pudiendo ser la versión 3 de la Licencia, o (tu\nopción) cualquier versión posterior.\n\nEste programa es distribuido con la esperanza de que será útil, pero\nSIN NINGUNA GARANTIA; sin siquiera la garantía implícita de\nCOMERCIALIZACION o APTITUD PARA UN PROPOSITO PARTICULAR. Mirá la\nLicencia Pública General GNU para más detalles.\n\nDeberías haber recibido una copia de la Licencia Pública General GNU\njunto con éste programa. Si no, mirá <http://www.gnu.org/licenses/>.\n"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:122
-msgid ""
-"If you want us to encrypt messages when we respond to you, add your key ID, "
-"a link to your key, or the key as a public key block:"
-msgstr "Si querés que encriptemos los mensajes cuando te respondamos, agregá el ID de tu clave, un vínculo a la misma, o la clave como bloque de clave pública:"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:308
-msgid "Summary"
-msgstr "Resumen"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:337
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:472
-msgid "Bug description"
-msgstr "Descripción del error"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:378
-msgid "Help:"
-msgstr "Ayuda:"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:388
-msgid "Read our bug reporting guidelines."
-msgstr "Leé nuestros lineamientos para reporte de errores."
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:416
-msgid "Email address (if you want an answer from us)"
-msgstr "Dirección de correo electrónico (si querés una respuesta por parte nuestra)"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:445
-msgid "optional PGP key"
-msgstr "clave PGP opcional"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:489
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:600
-msgid "Technical details to include"
-msgstr "Detalles técnicos para incluir"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:527
-msgid "headers"
-msgstr "encabezados"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:575
-msgid "debugging info"
-msgstr "información de depuración"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:667
-msgid "Send"
-msgstr "Enviar"
-
-#: ../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/tails.pot b/tails.pot
index 39fb248913..954af007a4 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: English (http://www.transifex.com/otf/torproject/language/en/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/tr.po b/tr.po
deleted file mode 100644
index 83ab0ddf64..0000000000
--- a/tr.po
+++ /dev/null
@@ -1,2395 +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:
-# MinGyu19 <mingyu(a)yaani.com>, 2020
-# Ayca Omrak <aycaom(a)hotmail.com>, 2013
-# Bullgeschichte <bullgeschichte(a)riseup.net>, 2015
-# Can Günay <cangunay(a)yandex.com>, 2018
-# 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 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
-# Emir SARI, 2020
-# Emma Peel, 2018,2020
-# imratirtil <d.imra.gundogdu(a)gmail.com>, 2014
-# Kaya Zeren <kayazeren(a)gmail.com>, 2015-2020
-# 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
-# T. E. Kalayci <tekrei(a)gmail.com>, 2020
-# 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-06 15:37+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:42
-msgid "Tor is ready"
-msgstr "Tor hazır"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:43
-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/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:113
-#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
-msgid "Additional Software"
-msgstr "Ek Uygulamalar"
-
-#: 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 kalıcı depolama biriminden otomatik olarak ek uygulamalar 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 uygulamalar Tails başlatılırken kalıcı depolama biriminden otomatik olarak 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 uygulamalar 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> diğer uygulamaları kurun."
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
-msgid "_Create persistent storage"
-msgstr "_Kalıcı depolama birimi oluştur"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:64
-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:66
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your Bitcoin wallet.\n"
-"It is strongly recommended to only run Electrum when its persistence feature is activated."
-msgstr "Tails yeniden başlatıldığında, Bitcoin cüzdanınız da dahil tüm Electrum verileri kaybolur. \nElectrum 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:67
-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:70
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
-msgid "_Launch"
-msgstr "_Başlat"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:71
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
-msgid "_Exit"
-msgstr "Çı_kış"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:197
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:621
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:798
-msgid ""
-"For debugging information, execute the following command: sudo tails-"
-"debugging-info"
-msgstr "Sorun giderme bilgileri için şu komutu yürütün: sudo tails-debugging-info"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:263
-msgid ""
-"<b>An error occured while updating the signing key.</b>\\n\\n<b>This "
-"prevents determining whether an upgrade is available from our "
-"website.</b>\\n\\nCheck your network connection, and restart Tails to try "
-"upgrading again.\\n\\nIf the problem persists, go to "
-"file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
-msgstr "<b>İmzalama anahtarı güncellenirken bir sorun çıktı.</b>\\n\\n\\<b>Bu durum web sitemizde bir güncelleme olup olmadığının belirlenmesini engeller.</b>n\\nGüncellemeleri denetlemek için ağ bağlantınızı gözden geçirin ve Tails uygulamasını yeniden başlatın.\\n\\nSorun sürüyorsa, file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html adresine bakabilirsiniz."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:268
-msgid "Error while updating the signing key"
-msgstr "İmzalama anahtarı güncellenirken sorun çıktı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:295
-msgid "Error while checking for upgrades"
-msgstr "Güncellemeler denetlenirken sorun çıktı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297
-msgid ""
-"<b>Could not determine whether an upgrade is available from our website.</b>\n"
-"\n"
-"Check your network connection, and restart Tails to try upgrading again.\n"
-"\n"
-"If the problem persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
-msgstr "<b>Web sitemizde bir güncelleme olup olmadığı belirlenemedi.</b>\n\nGüncellemeleri denetlemek için ağ bağlantınızı gözden geçirin ve Tails uygulamasını yeniden başlatın.\n\nSorun sürüyorsa, file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html adresine bakabilirsiniz."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:312
-msgid "no automatic upgrade is available from our website for this version"
-msgstr "web sitemizde bu sürüm için otomatik güncelleme desteği yok"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318
-msgid "your device was not created using a USB image or Tails Installer"
-msgstr "aygıtnız bir USB kalıbı ya da Tails kurucu ile oluşturulmamış"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:323
-msgid "Tails was started from a DVD or a read-only device"
-msgstr "Tails bir DVD ya da salt okunur aygıt üzerinden başlatıldı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:328
-msgid "there is not enough free space on the Tails system partition"
-msgstr "Tails sistem bölümünde yeterli boş alan yok"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:333
-msgid "not enough memory is available on this system"
-msgstr "bu sistemde yeterli bellek yok"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:338
-#, perl-brace-format
-msgid "No explanation available for reason '{reason}'."
-msgstr "'{reason}' gerekçesi için bir açıklama yok."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:359
-msgid "The system is up-to-date"
-msgstr "Sistem güncel"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364
-msgid "This version of Tails is outdated, and may have security issues."
-msgstr "Bu Tails sürümü güncel değil ve güvenlik sorunları olabilir."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:395
-#, perl-brace-format
-msgid ""
-"The available incremental upgrade requires {space_needed} of free space on "
-"Tails system partition, but only {free_space} is available."
-msgstr "Kullanılabilecek artımlı yükseltme için Tails sistem bölümünde {space_needed} boş alan gerekli ancak yalnız {free_space} var."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:407
-#, perl-brace-format
-msgid ""
-"The available incremental upgrade requires {memory_needed} of free memory, "
-"but only {free_memory} is available."
-msgstr "Kullanılabilecek artımlı yükseltme için {memory_needed} boş bellek gerekli ancak yalnız {free_memory} var."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:426
-msgid ""
-"An incremental upgrade is available, but no full upgrade is.\n"
-"This should not happen. Please report a bug."
-msgstr "Artımlı bir yükseltme varken tam yükseltme yok gibi görünüyor.\nBu olmamalıydı. Lütfen bu sorunu bildirin."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:430
-msgid "Error while detecting available upgrades"
-msgstr "Güncellemeler denetlenirken sorun çıktı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:439
-#, perl-brace-format
-msgid ""
-"<b>You should upgrade to {name} {version}.</b>\n"
-"\n"
-"For more information about this new version, go to {details_url}\n"
-"\n"
-"We recommend you close all other applications during the upgrade.\n"
-"Downloading the upgrade might take a long time, from several minutes to a few hours.\n"
-"\n"
-"Download size: {size}\n"
-"\n"
-"Do you want to upgrade now?"
-msgstr "<b>{name} {version} sürümüne güncellemeniz gerekli.</b>\n\nBu sürüm hakkında ayrıntılı bilgi almak için, {details_url} adresine bakabilirsiniz.\n\nBu güncelleme sırasında açık tüm uygulamaları kapatmanız önerilir.\nGüncellemenin indirilmesi birkaç dakika ile birkaç saat arasında sürebilir.\n\nİndirme boyutu: {size}\n\nŞimdi güncellemek ister misiniz?"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451
-msgid "Upgrade available"
-msgstr "Güncelleme yayınlanmış"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:452
-msgid "Upgrade now"
-msgstr "Şimdi güncelle"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:453
-msgid "Upgrade later"
-msgstr "Daha sonra güncelle"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:460
-#, perl-brace-format
-msgid ""
-"<b>You should do a manual upgrade to {name} {version}.</b>\n"
-"\n"
-"For more information about this new version, go to {details_url}\n"
-"\n"
-"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
-"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>{name} {version} sürümüne el ile güncelleyebilirsiniz.</b>\n\nBu sürüm hakkında ayrıntılı bilgi almak için {details_url} adresine bakabilirsiniz\n\nAygıtınız bu sürüme otomatik olarak güncellenemez: {explanation}.\n\nEl ile güncellemenin nasıl yapılacağını öğrenmek için https://tails.boum.org/doc/upgrade/#manual adresine bakabilirsiniz"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
-msgid "New version available"
-msgstr "Yeni bir sürüm yayınlanmış"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:552
-msgid "Downloading upgrade"
-msgstr "Güncelleme indiriliyor"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:554
-#, perl-brace-format
-msgid "Downloading the upgrade to {name} {version}..."
-msgstr "{name} {version} güncellemesi indiriliyor..."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:614
-msgid ""
-"<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network "
-"connection, and restart Tails to try upgrading again.\\n\\nIf the problem "
-"persists, go to "
-"file:///usr/share/doc/tails/website/doc/upgrade/error/download.en.html"
-msgstr "<b>Güncelleme indirilemedi.</b>\\n\\nAğ bağlantınızı denetleyin, ve Tails uygulamasını yeniden başlatıp yeniden güncellemeyi deneyin.\\n\\nSorun sürüyorsa, file:///usr/share/doc/tails/website/doc/upgrade/error/download.en.html adresine bakabilirsiniz."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:625
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:640
-msgid "Error while downloading the upgrade"
-msgstr "Güncelleme indirilirken sorun çıktı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635
-#, perl-brace-format
-msgid ""
-"Output file '{output_file}' does not exist, but tails-iuk-get-target-file "
-"did not complain. Please report a bug."
-msgstr "'{output_file}' çıktı dosyası bulunamadı ancak tails-iuk-get-target-file uygulaması bunu bir sorun olarak bildirmedi. Lütfen bu hatayı bildirin."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:651
-msgid "Error while creating temporary downloading directory"
-msgstr "Geçiçi indirme klasörü oluşturulurken sorun çıktı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:654
-msgid "Failed to create temporary download directory"
-msgstr "Geçici indirme klasörü oluşturulamadı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678
-msgid ""
-"<b>Could not choose a download server.</b>\n"
-"\n"
-"This should not happen. Please report a bug."
-msgstr "<b>Bir indirme sunucusu seçilemedi.</b>\n\nBu olmamalıydı. Lütfen hata olarak bildirin."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:681
-msgid "Error while choosing a download server"
-msgstr "İndirme sunucusu seçilirken sorun çıktı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:695
-msgid ""
-"The upgrade was successfully downloaded.\n"
-"\n"
-"The network connection will now be disabled.\n"
-"\n"
-"Please save your work and close all other applications."
-msgstr "Güncelleme indirildi.\n\nŞimdi ağ bağlantınız devre dışı bırakılacak.\n\nLütfen çalışmalarınızı kaydedip açık olan tüm uygulamaları kapatın."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:700
-msgid "Upgrade successfully downloaded"
-msgstr "Güncelleme indirildi"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701
-msgid "Apply upgrade"
-msgstr "Güncellemeyi uygula"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708
-msgid ""
-"<b>Your Tails device was successfully upgraded.</b>\n"
-"\n"
-"Some security features were temporarily disabled.\n"
-"You should restart Tails on the new version as soon as possible.\n"
-"\n"
-"Do you want to restart now?"
-msgstr "<b>Tails aygıtınız güncellendi.</b>\n\nBazı güvenlik özellikleri geçici olarak devre dışı bırakıldı.\nYeni sürüme geçmek için Tails uygulamasını en kısa sürede yeniden başlatın\n\nŞimdi yeniden başlatmak ister misiniz?"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713
-msgid "Restart Tails"
-msgstr "Tails Uygulamasını Yeniden Başlat"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714
-msgid "Restart now"
-msgstr "Şimdi yeniden başlat"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715
-msgid "Restart later"
-msgstr "Daha sonra yeniden başlat"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725
-msgid "Error while restarting the system"
-msgstr "Sistem yeniden başlatılırken sorun çıktı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726
-msgid "Failed to restart the system"
-msgstr "Sistem yeniden başlatılamadı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:739
-msgid "Error while shutting down the network"
-msgstr "Ağ kapatılırken sorun çıktı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:740
-msgid "Failed to shutdown network"
-msgstr "Ağ kapatılamadı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:750
-msgid "Error while cancelling the upgrade download"
-msgstr "Güncellemenin indirilmesi iptal edilirken sorun çıktı"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:751
-msgid "Failed to cancel the upgrade download"
-msgstr "Güncellemenin indirilmesi iptal edilemedi"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:757
-msgid "Upgrading the system"
-msgstr "Sistem güncelleniyor"
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:759
-msgid ""
-"<b>Your Tails device is being upgraded...</b>\n"
-"\n"
-"For security reasons, the networking is now disabled."
-msgstr "<b>Tails aygıtınız güncelleniyor...</b>\n\nGüvenlik nedenlerinden dolayı, ağ devre dışı bırakıldı."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:792
-msgid ""
-"<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device"
-" needs to be repaired and might be unable to restart.\\n\\nPlease follow the"
-" instructions at "
-"file:///usr/share/doc/tails/website/doc/upgrade/error/install.en.html"
-msgstr "<b>Güncelleme kurulurken bir sorun çıktı.</b>\\n\\nTails aygıtınızın onarılması gerekiyor ve yeniden başlatılamayabilir.\\n\\nLütfen file:///usr/share/doc/tails/website/doc/upgrade/error/install.en.html adresindeki yönergeleri izleyin."
-
-#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:802
-msgid "Error while installing the upgrade"
-msgstr "Güncelleme kurulurken sorun çıktı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32
-msgid "Additional Settings"
-msgstr "Ek Ayarlar"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:581
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:49
-msgid "Cancel"
-msgstr "İptal"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:46
-msgid "Add"
-msgstr "Ekle"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:54
-msgid "Back"
-msgstr "Geri"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:64
-msgid "_Administration Password"
-msgstr "_Yönetim Parolası"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:187
-msgid "_MAC Address Spoofing"
-msgstr "_MAC Adresi Yanıltması"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:250
-msgid "_Network Connection"
-msgstr "_Ağ Bağlantısı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:259
-msgid "Direct (default)"
-msgstr "Doğrudan (varsayılan)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:261
-msgid "Bridge & Proxy"
-msgstr "Köprü ve Vekil Sunucu"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:263
-msgid "Offline"
-msgstr "Çevrimdışı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:333
-msgid "_Unsafe Browser"
-msgstr "_Unsafe Browser"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:342
-msgid "Enabled"
-msgstr "Etkin"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:344
-msgid "Disabled (default)"
-msgstr "Devre dışı (varsayılan)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:395
-msgid "On (default)"
-msgstr "Açık (varsayılan)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:397
-msgid "On"
-msgstr "Açık"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:399
-msgid "Off"
-msgstr "Kapalı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:401
-msgid "Off (default)"
-msgstr "Kapalı (varsayılan)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:91
-#, python-brace-format
-msgid ""
-"live-persist failed with return code {returncode}:\n"
-"{stderr}"
-msgstr "live-persist şu hata kodu ile yürütülemedi {returncode}:\n{stderr}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:122
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:139
-#, python-brace-format
-msgid ""
-"cryptsetup failed with return code {returncode}:\n"
-"{stdout}\n"
-"{stderr}"
-msgstr "cryptsetup şu hata kodu ile yürütülemedi {returncode}:\n{stdout}\n{stderr}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:153
-#, python-brace-format
-msgid ""
-"live-persist failed with return code {returncode}:\n"
-"{stdout}\n"
-"{stderr}"
-msgstr "live-persist şu hata kodu ile yürütülemedi {returncode}:\n{stdout}\n{stderr}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:167
-#, python-brace-format
-msgid ""
-"umount failed with return code {returncode}:\n"
-"{stdout}\n"
-"{stderr}"
-msgstr "umount şu hata kodu ile yürütülemedi {returncode}:\n{stdout}\n{stderr}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:67
-msgid "Unlocking…"
-msgstr "Kilit açılıyor..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:95
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:462
-msgid "Unlock"
-msgstr "Kilidi Aç"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:100
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:40
-msgid "Cannot unlock encrypted storage with this passphrase."
-msgstr "Bu parola ile şifreli depolama alanının kilidi açılamadı."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
-msgid "_Language"
-msgstr "_Dil"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:207
-msgid "_Formats"
-msgstr "Biçim_ler"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:244
-msgid "_Keyboard Layout"
-msgstr "_Tuş Takımı Düzeni"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:261
-#, python-format
-msgid "Unable to write on %(device)s, skipping."
-msgstr "%(device)s aygıtına yazılamadı, atlanıyor."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:294
-#, python-format
-msgid ""
-"Some partitions of the target device %(device)s are mounted. They will be "
-"unmounted before starting the installation process."
-msgstr "%(device)s hedef aygıtının bazı bölümleri takılmış. Kurulum başlatılmadan önce bu bölümler çıkarılacak."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:303
-msgid "Extracting live image to the target device..."
-msgstr "Canlı İşletim Sistemi kalıbı hedef aygıta ayıklanıyor..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:310
-#, python-format
-msgid "Wrote to device at %(speed)d MB/sec"
-msgstr "Aygıta %(speed)d MB/saniye hızında yazılıyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:408
-#, python-format
-msgid ""
-"There was a problem executing the following command: `%(command)s`.\n"
-"A more detailed error log has been written to \"%(filename)s\"."
-msgstr "Şu komut yürütülürken bir sorun çıktı: `%(command)s`.\nAyrıntılı bir hata raporu \"%(filename)s\" dosyasına yazıldı."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:424
-#, python-format
-msgid ""
-"Not enough free space on device.\n"
-"%(iso_size)dMB ISO + %(overlay_size)dMB overlay > %(free_space)dMB free space"
-msgstr "Aygıt üzerinde yeterli boş alan yok.\n%(iso_size)dMB ISO + %(overlay_size)dMB kaplama > %(free_space)dMB boş alan"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:433
-#, python-format
-msgid "Creating %sMB persistent overlay"
-msgstr "%sMB kalıcı depolama birimi kaplaması oluşturuluyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:483
-#, python-format
-msgid "Unable to copy %(infile)s to %(outfile)s: %(message)s"
-msgstr "%(infile)s %(outfile)s konumuna kopyalanamadı: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:497
-msgid "Removing existing Tails system"
-msgstr "Var olan Tails sistemi kaldırılıyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:507
-#, python-format
-msgid "Unable to remove file from previous Tails system: %(message)s"
-msgstr "Önceki Tails sisteminden dosya kaldırılamadı: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:514
-#, python-format
-msgid "Unable to chmod %(file)s: %(message)s"
-msgstr "chmod yürütülemedi %(file)s: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:521
-#, python-format
-msgid "Unable to remove directory from previous Tails system: %(message)s"
-msgstr "Önceki Tails sisteminden klasör kaldırılamadı: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:569
-#, python-format
-msgid "Cannot find device %s"
-msgstr "%s aygıtı bulunamadı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:619
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:836
-msgid "Unknown filesystem. Your device may need to be reformatted."
-msgstr "Dosya sistemi bilinmiyor. Aygıtınızın yeniden biçimlendirilmesi gerekebilir."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:622
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:839
-#, python-format
-msgid "Unsupported filesystem: %s"
-msgstr "Dosya sistemi desteklenmiyor: %s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:640
-#, python-format
-msgid "Unknown GLib exception while trying to mount device: %(message)s"
-msgstr "Aygıt takılmaya çalışılırken bilinmeyen bir Glib sorunu çıktı: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:645
-#, python-format
-msgid "Unable to mount device: %(message)s"
-msgstr "Aygıt takılamadı: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:650
-msgid "No mount points found"
-msgstr "Bir takılma noktası bulunamadı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:661
-#, python-format
-msgid "Entering unmount_device for \"%(device)s\""
-msgstr "\"%(device)s\" için unmount_device işleniyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:670
-#, python-format
-msgid "Unmounting mounted filesystems on \"%(device)s\""
-msgstr "\"%(device)s\" üzerindeki takılı dosya sistemleri çıkarılıyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:674
-#, python-format
-msgid "Unmounting \"%(udi)s\" on \"%(device)s\""
-msgstr "\"%(udi)s\" \"%(device)s\" aygıtı üzerinden çıkarılıyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:685
-#, python-format
-msgid "Mount %s exists after unmounting"
-msgstr "Çıkarma işleminden sonra %s takılı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:698
-#, python-format
-msgid "Partitioning device %(device)s"
-msgstr "%(device)s aygıtı bölümleniyor "
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:821
-#, python-format
-msgid "Unsupported device '%(device)s', please report a bug."
-msgstr "'%(device)s' aygıtı desteklenmiyor, lütfen bu sorunu bildirin."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:824
-msgid "Trying to continue anyway."
-msgstr "Yine de sürdürülmeye çalışılıyor."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:833
-msgid "Verifying filesystem..."
-msgstr "Dosya sistemi doğrulanıyor..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:857
-#, python-format
-msgid "Unable to change volume label: %(message)s"
-msgstr "Birim etiketi değiştirişemedi: %(message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:862
-msgid "Installing bootloader..."
-msgstr "Başlatıcı kuruluyor..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:869
-#, python-format
-msgid "Removing %(file)s"
-msgstr " %(file)s siliniyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:951
-#, python-format
-msgid "%s already bootable"
-msgstr "%s zaten başlatılabilir"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:971
-msgid "Unable to find partition"
-msgstr "Bölüm bulunamadı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:990
-#, python-format
-msgid "Formatting %(device)s as FAT32"
-msgstr "%(device)s FAT32 olarak biçimlendiriliyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1053
-#, python-format
-msgid "Reading extracted MBR from %s"
-msgstr "%s üzerinden ayıklanan MBR okunuyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1057
-#, python-format
-msgid "Could not read the extracted MBR from %(path)s"
-msgstr "%(path)s üzerinden ayıklanan MBR okunamadı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1070
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1071
-#, python-format
-msgid "Resetting Master Boot Record of %s"
-msgstr "%s üzerindeki ana ön yükleme kaydı (MBR) sıfırlanıyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1076
-msgid "Drive is a loopback, skipping MBR reset"
-msgstr "Sürücü kapalı bir çevrim. Ana ön yükleme kaydı (MBR) sıfırlaması atlanıyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/creator.py:1080
-msgid "Synchronizing data on disk..."
-msgstr "Diskteki veriler eşitleniyor..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:146
-msgid ""
-"Error: Cannot set the label or obtain the UUID of your device. Unable to "
-"continue."
-msgstr "Hata: Etiket ayarlanamıyor ya da aygıtınızın UUID kodu alınamıyor. İşlem sürdürülemiyor."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:180
-#, python-format
-msgid "Installation complete! (%s)"
-msgstr "Kurulum tamamlandı! (%s)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:185
-msgid "Tails installation failed!"
-msgstr "Tails kurulumu tamamlanamadı!"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:274
-#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
-msgid "Tails Installer"
-msgstr "Tails Kurucu"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:316
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
-msgid "Clone the current Tails"
-msgstr "Geçerli Tails kurulumunu kopyala"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:323
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
-msgid "Use a downloaded Tails ISO image"
-msgstr "İndirilmiş bir Tails ISO kalıbı kullan"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:361
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:657
-msgid "Upgrade"
-msgstr "Güncelle"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:362
-msgid "Manual Upgrade Instructions"
-msgstr "El İle Güncelleme Yönergeleri"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:371
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:569
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:634
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
-msgid "Install"
-msgstr "Kur"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:373
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
-msgid "Installation Instructions"
-msgstr "Kurulum Yönergeleri"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:380
-#, python-format
-msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
-msgstr "%(size)s %(vendor)s %(model)s aygıt (%(device)s)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:392
-msgid "No ISO image selected"
-msgstr "Herhangi bir ISO kalıbı seçilmemiş"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:393
-msgid "Please select a Tails ISO image."
-msgstr "Lütfen bir Tails ISO kalıbı seçin."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:435
-msgid "No device suitable to install Tails could be found"
-msgstr "Tails kurucusuna uygun bir aygıt bulunamadı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:437
-#, python-format
-msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
-msgstr "Lütfen en az %0.1f GB kapasiteli bir USB bellek ya da SD kart takın."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:468
-#, python-format
-msgid ""
-"The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
-"manufacturer and Tails will fail to start from it. Please try installing on "
-"a different model."
-msgstr "USB belleği \"%(pretty_name)s\" üreticisi tarafından çıkarılamaz olarak yapılandırılmış olduğundan Tails buradan başlatılamayacak. Lütfen farklı bir modele kurmayı deneyin."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:478
-#, python-format
-msgid ""
-"The device \"%(pretty_name)s\" is too small to install Tails (at least "
-"%(size)s GB is required)."
-msgstr "\"%(pretty_name)s\" aygıtı Tails uygulamasının kurulması için çok küçük (en az %(size)s GB gereklidir)."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:491
-#, python-format
-msgid ""
-"To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a downloaded Tails ISO image:\n"
-"%(dl_url)s"
-msgstr "\"%(pretty_name)s\" aygıtını bu Tails sürümünden güncellemek için indirilmiş Tails ISO kalıbına gerek duyacaksınız:\n%(dl_url)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:513
-msgid "An error happened while installing Tails"
-msgstr "Tails kurulurken bir sorun çıktı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:564
-msgid "Installation complete!"
-msgstr "Kurulum tamamlandı!"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:617
-msgid "Unable to mount device"
-msgstr "Aygıt takılamadı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:624
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:656
-msgid "Confirm the target USB stick"
-msgstr "Hedef USB belleği onaylayın"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:625
-#, python-format
-msgid ""
-"%(size)s %(vendor)s %(model)s device (%(device)s)\n"
-"\n"
-"All data on this USB stick will be lost."
-msgstr "%(size)s %(vendor)s %(model)s aygıt (%(device)s)\n\nBu USB bellek üzerindeki tüm veriler kaybolacak."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:643
-#, python-format
-msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
-msgstr "%(parent_size)s %(vendor)s %(model)s aygıt (%(device)s)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:651
-msgid ""
-"\n"
-"\n"
-"The persistent storage on this USB stick will be preserved."
-msgstr "\n\nBu USB bellekteki kalıcı depolama birimi korunacak."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:652
-#, python-format
-msgid "%(description)s%(persistence_message)s"
-msgstr "%(description)s%(persistence_message)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:688
-msgid ""
-"The selected file is unreadable. Please fix its permissions or select "
-"another file."
-msgstr "Seçilen dosya okunamıyor. Lütfen dosya izinlerini denetleyin ya da başka bir dosya seçin."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:694
-msgid ""
-"Unable to use the selected file. You may have better luck if you move your "
-"ISO to the root of your drive (ie: C:\\)"
-msgstr "Seçilmiş dosya kullanılamadı. ISO kalıbını diskinizin kök klasörüne taşımanız işe yarayabilir (C:\\ gibi)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:700
-#, python-format
-msgid "%(filename)s selected"
-msgstr "%(filename)s seçildi"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:31
-msgid "Unable to find Tails on ISO"
-msgstr "ISO dosyasında Tails bulunamadı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:37
-#, python-format
-msgid "Could not guess underlying block device: %s"
-msgstr "Temel blok aygıtı öngörülemedi: %s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:52
-#, python-format
-msgid ""
-"There was a problem executing `%(cmd)s`.\n"
-"%(out)s\n"
-"%(err)s"
-msgstr "`%(cmd)s` çalıştırılırken bir sorun çıktı.\n%(out)s\n%(err)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:64
-#, python-format
-msgid "\"%s\" does not exist"
-msgstr "\"%s\" bulunamadı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:66
-#, python-format
-msgid "\"%s\" is not a directory"
-msgstr "\"%s\" bir klasör değil"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/source.py:77
-#, python-format
-msgid "Skipping \"%(filename)s\""
-msgstr "\"%(filename)s\" atlanıyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:54
-#, python-format
-msgid ""
-"There was a problem executing `%(cmd)s`.%(out)s\n"
-"%(err)s"
-msgstr "`%(cmd)s`,%(out)s çalıştırılırken bir sorun çıktı.\n%(err)s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/utils.py:126
-msgid "Could not open device for writing."
-msgstr "Aygıt yazılmak üzere açılamadı."
-
-#: 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"
-"<i>KeePassXC</i> changed the default name of the database to <i>Passwords.kdbx</i>.\n"
-"\n"
-"Renaming your database to <i>Passwords.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
-msgstr "<b><big><i>KeePassXC</i> veri tabanınızı yeniden adlandırmak istiyor musunuz?</big></b>\n\n<i>Kalıcı depolama</i> klasörünüzde bir <i>KeePassXC</i> veritabanınız var:\n\n<i>${filename}</i>\n\n<i>KeePassXC</i>, veritabanının varsayılan adını şu şekilde değiştirdi: <i>Passwords.kdbx</i>\n\nVeritabanınız <i>Passwords.kdbx</i> olarak yeniden adlandırıldığında <i>KeePassXC</i> tarafından otomatik olarak açılabilir."
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:25
-msgid "Rename"
-msgstr "Yeniden Adlandır"
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:26
-msgid "Keep current name"
-msgstr "Geçerli ad korunsun"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:94
-msgid "Persistence wizard - Persistent volume creation"
-msgstr "Kalıcılık yardımcısı - Kalıcı depolama birimi oluşturma"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:97
-msgid "Choose a passphrase to protect the persistent volume"
-msgstr "Kalıcı depolama birimini korumayacak bir parola seçin"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:100
-#, perl-brace-format
-msgid ""
-"A {size} persistent volume will be created on the <b>{vendor} {model}</b> "
-"device. Data on this volume will be stored in an encrypted form protected by"
-" a passphrase."
-msgstr "<b>{vendor} {model}</b> aygıtında {size} boyutunda bir kalıcı depolama birimi oluşturulacak. Buradaki veriler parola ile şifrelenmiş olarak depolanacak."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:105
-msgid "Create"
-msgstr "Oluştur"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:148
-msgid ""
-"<b>Beware!</b> Using persistence has consequences that must be well "
-"understood. Tails can't help you if you use it wrong! See the <i>Encrypted "
-"persistence</i> page of the Tails documentation to learn more."
-msgstr "<b>Dikkat!</b> Kalıcı kullanımın iyi anlamanız gereken sonuçları vardır. Yanlış kullanırsanız Tails uygulamasının size yardımı olmaz. Ayrıntılı bilgi almak için Tails belgelerindeki <i>Şifrelenmiş kaıcılık</i> bölümüne bakabilirsiniz."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:175
-msgid "Passphrase:"
-msgstr "Parola:"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:181
-msgid "Verify Passphrase:"
-msgstr "Parola Onayı:"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:191
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:259
-msgid "Passphrase can't be empty"
-msgstr "Parola boş bırakılamaz"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:226
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394
-msgid "Show Passphrase"
-msgstr "Parola Görüntülensin"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:250
-msgid "Passphrases do not match"
-msgstr "Parola ile onayı aynı değil"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:305
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:178
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:101
-msgid "Failed"
-msgstr "Başarısız"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:313
-msgid "Mounting Tails persistence partition."
-msgstr "Tails kalıcılık bölümü takılıyor"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:316
-msgid "The Tails persistence partition will be mounted."
-msgstr "Tails kalıcılık bölümü takılacak"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:325
-msgid "Correcting permissions of the persistent volume."
-msgstr "Kalıcı depolama birimi izinleri düzeltiliyor."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:328
-msgid "The permissions of the persistent volume will be corrected."
-msgstr "Kalıcı depolama biriminin izinleri düzeltilecek."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:336
-msgid "Creating default persistence configuration."
-msgstr "Varsayılan kalıcılık ayarları oluşturuluyor."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:339
-msgid "The default persistence configuration will be created."
-msgstr "Varsayılan kalıcılık yapılandırması oluşturulacak."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:353
-msgid "Creating..."
-msgstr "Oluşturuluyor..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:355
-msgid "Creating the persistent volume..."
-msgstr "Kalıcı depolama birimi oluşturuluyor..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:86
-msgid "Persistence wizard - Persistent volume configuration"
-msgstr "Kalıcılık yardımcısı - Kalıcı depolama birimi yapılandırması"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:89
-msgid "Specify the files that will be saved in the persistent volume"
-msgstr "Kalıcı depolama birimine kaydedilecek dosyaları belirtin"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:92
-#, perl-brace-format
-msgid ""
-"The selected files will be stored in the encrypted partition {partition} "
-"({size}), on the <b>{vendor} {model}</b> device."
-msgstr "Seçilen dosyalar <b>{vendor} {model}</b> aygıtında bulunan şifreli {partition} ({size}) bölümüne depolanacak."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:98
-msgid "Save"
-msgstr "Kaydet"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:191
-msgid "Saving..."
-msgstr "Kaydediliyor..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:193
-msgid "Saving persistence configuration..."
-msgstr "Kalıcılık ayarları kaydediliyor..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:51
-msgid "Persistence wizard - Persistent volume deletion"
-msgstr "Kalıcılık yardımcısı - Kalıcı depolama birimini silme"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:54
-msgid "Your persistent data will be deleted."
-msgstr "Kalıcı depolama birimindeki verileriniz silinecek."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:58
-#, perl-brace-format
-msgid ""
-"The persistent volume {partition} ({size}), on the <b>{vendor} {model}</b> "
-"device, will be deleted."
-msgstr "<b>{vendor} {model}</b> aygıtındaki, {partition} ({size}) kalıcı depolama birimi silinecek."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:64
-msgid "Delete"
-msgstr "Sil"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:114
-msgid "Deleting..."
-msgstr "Siliniyor..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:116
-msgid "Deleting the persistent volume..."
-msgstr "Kalıcı depolama birimi siliniyor..."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:53
-msgid "Personal Data"
-msgstr "Kişisel Veriler"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55
-msgid "Keep files stored in the `Persistent' directory"
-msgstr "Dosyalar `Persistent' klasöründe depolansın"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:68
-msgid "Welcome Screen"
-msgstr "Hoş Geldiniz Ekranı"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70
-msgid "Language, administration password, and additional settings"
-msgstr "Dil, yönetim parolası ve diğer ayarlar"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:83
-msgid "Browser Bookmarks"
-msgstr "Yer İmlerine Göz At"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85
-msgid "Bookmarks saved in the Tor Browser"
-msgstr "Tor Browser üzerine kaydedilmiş yer imleri"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:98
-msgid "Network Connections"
-msgstr "Ağ Bağlantıları"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100
-msgid "Configuration of network devices and connections"
-msgstr "Ağ aygıt ve bağlantılarının ayarları"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:115
-msgid "Software installed when starting Tails"
-msgstr "Tails başlatılırken kurulan uygulamalar"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:133
-msgid "Printers"
-msgstr "Yazıcılar"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135
-msgid "Printers configuration"
-msgstr "Yazıcı ayarları"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:148
-msgid "Thunderbird"
-msgstr "Thunderbird"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150
-msgid "Thunderbird emails, feeds, and OpenPGP keys"
-msgstr "Thunderbird e-postalar, akışlar ve OpenPGP anahtarları"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:163
-msgid "GnuPG"
-msgstr "GnuPG"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165
-msgid "OpenPGP keys outside of Thunderbird"
-msgstr "Thunderbird dışındaki OpenPGP anahtarları"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:178
-msgid "Bitcoin Client"
-msgstr "Bitcoin İstemcisi"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180
-msgid "Electrum's bitcoin wallet and configuration"
-msgstr "Electrum bitcoin cüzdanı ve ayarları"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:193
-msgid "Pidgin"
-msgstr "Pidgin"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195
-msgid "Pidgin profiles and OTR keyring"
-msgstr "Pidgin profilleri ve Kayıt Dışı anahtarlığı"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:208
-msgid "SSH Client"
-msgstr "SSH İstemcisi"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210
-msgid "SSH keys, configuration and known hosts"
-msgstr "SSH anahtarları, ayarları ve bilinen sunucular"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:223
-msgid "Dotfiles"
-msgstr "Dotfiles"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:225
-msgid ""
-"Symlink into $HOME every file or directory found in the `dotfiles' directory"
-msgstr "`dotfiles' klasöründe bulunan tüm dosya ve klasörler için $HOME üzerinde sembolik bağlantı oluşturur"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:111
-msgid "Custom"
-msgstr "Özel"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:285
-msgid "Setup Tails persistent volume"
-msgstr "Tails kalıcı depolama birimini kur"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
-#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
-msgid "Error"
-msgstr "Hata"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:390
-msgid "Device already has a persistent volume."
-msgstr "Aygıt üzerinde zaten bir kalıcı depolama birimi var."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:397
-msgid "Device has not enough unallocated space."
-msgstr "Aygıt üzerinde yeteri kadar boş alan yok."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:403
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:416
-msgid "Device has no persistent volume."
-msgstr "Aygıt üzerinde bir kalıcı depolama birimi yok."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:409
-msgid ""
-"Cannot delete the persistent volume while in use. You should restart Tails "
-"without persistence."
-msgstr "Kullanımda olduğundan kalıcı depolama birimi silinemedi. Tails yazılımını kalıcılık olmadan yeniden başlatmalısınız."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:421
-msgid "Persistence volume is not unlocked."
-msgstr "Kalıcılık biriminin kilidi açılamadı."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:425
-msgid "Persistence volume is not mounted."
-msgstr "Kalıcılık birimi takılmamış."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:430
-msgid "Persistence volume is not readable. Permissions or ownership problems?"
-msgstr "Kalıcılık birimi okunamıyor. İzin ya da sahiplik sorunları olabilir mi?"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:435
-msgid "Persistence volume is not writable."
-msgstr "Kalıcı depolama birimi yazılabilir değil."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444
-msgid "Tails is running from non-USB / non-SDIO device."
-msgstr "Tails, USB ya da SDIO özelliği olmayan bir aygıt üzerinden çalışıyor."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:449
-msgid "Device is optical."
-msgstr "Aygıt optik disk."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:456
-msgid "Device was not created using a USB image or Tails Installer."
-msgstr "Aygıt bir USB kalıbı ya da Tails kurucusu kullanılarak oluşturulmamış."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:698
-msgid "Persistence wizard - Finished"
-msgstr "Kalıcılık yardımcısı - Tamamlandı"
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:701
-msgid ""
-"Any changes you have made will only take effect after restarting Tails."
-msgstr "Yaptığınız değişiklikler Tails yeniden başlatıldıktan sonra geçerli olacak."
-
-#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:711
-msgid "Restart Now"
-msgstr "Şimdi Yeniden Başlat"
-
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
-msgid "su is disabled. Please use sudo instead."
-msgstr " su komutu devre dışı bırakılmış. Lütfen yerine sudo komutunu kullanın."
-
-#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
-msgid ""
-"The device Tails is running from cannot be found. Maybe you used the 'toram'"
-" option?"
-msgstr "Tails uygulamasının çalıştığı bir aygıt bulunamadı. 'toram' seçeneğini mi kullanıyorsunuz?"
-
-#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:251
-msgid ""
-"The drive Tails is running from cannot be found. Maybe you used the 'toram' "
-"option?"
-msgstr "Tails uygulamasının çalıştığı bir sürücü bulunamadı. 'toram' seçeneğini mi kullanıyorsunuz?"
-
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
-msgid "Import Failed"
-msgstr "İçe Aktarma Tamamlanamadı"
-
-#. Translators: Don't translate {path} or {error},
-#. they are placeholders and will be replaced.
-#. They need to be present in the translated string.
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:46
-#, python-brace-format
-msgid ""
-"Failed to import keys from {path}:\n"
-"{error}"
-msgstr "Anahtarlar {path} üzerinden içe aktarılamadı:\n{error}"
-
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:54
-msgid "Key Imported"
-msgid_plural "Keys Imported"
-msgstr[0] "Anahtar İçe Aktarıldı"
-msgstr[1] "Anahtarlar İçe Aktarıldı"
-
-#. Translators: Don't translate {uids}, it's a placeholder and
-#. will be replaced. It needs to be present in the translated string.
-#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:57
-#, python-brace-format
-msgid "Imported a key for {uids}"
-msgid_plural "Imported keys for {uids}"
-msgstr[0] "{uids} için anahtar içe aktarıldı"
-msgstr[1] "{uids} için anahtarlar içe aktarıldı"
-
-#: 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 uygulama 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 uygulama 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 "{packages} ek uygulamalara 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 kalıcı depolama biriminizden otomatik olarak 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:371
-msgid "The configuration of your additional software failed."
-msgstr "Ek uygulamanı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 kurulum yapılması için bir kalıcı depolama birimi oluşturarak <b>Ek Uygulamalar</b> özelliğini etkinleştirebilirsiniz."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
-msgid "Create Persistent Storage"
-msgstr "Kalıcı Depolama Birimi Oluştur"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
-msgid "Creating your persistent storage failed."
-msgstr "Kalıcı depolama birimi 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."
-msgstr "Bunun için Tails uygulamasını 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:359
-#, python-brace-format
-msgid "Remove {packages} from your additional software?"
-msgstr "{packages} ek uygulamaları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:363
-#, 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:365
-#: 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:544
-msgid "Installing your additional software from persistent storage..."
-msgstr "Ek uygulamalarınız kalıcı depolama biriminden kuruluyor..."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
-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:559
-msgid "The installation of your additional software failed"
-msgstr "Ek uygulama kurulamadı"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
-msgid "Additional software installed successfully"
-msgstr "Ek uygulama kuruldu"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
-msgid "The check for upgrades of your additional software failed"
-msgstr "Ek uygulamalarınızın güncellemeleri denetlenemedi"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
-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:603
-msgid "The upgrade of your additional software failed"
-msgstr "Ek uygulama 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 uygulamaları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 uygulama 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> diğer uygulamaları 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ı depolama biriminizin 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> diğer uygulamaları 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, bir kalıcı depolama birimi 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> diğer uygulamaları kurun."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205
-msgid ""
-"To do so, install Tails on a USB stick and create a persistent storage."
-msgstr "Bunun için Tails uygulamasını bir USB belleğe kurun ve bir kalıcı depolama birimi ekleyin."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:251
-msgid "[package not available]"
-msgstr "[paket kullanılamıyor]"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:51
-msgid "Synchronizing the system's clock"
-msgstr "Sistem saati eşitleniyor "
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Onion Services."
-" Please wait..."
-msgstr "Tor uygulamasının düzgün çalışabilmesi için saatin doğru olması önemlidir, özellikle Onion Hizmetleri için. Lütfen bekleyin..."
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:86
-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
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93
-msgid "Confirm"
-msgstr "Onayla"
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:121
-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:132
-msgid "Known security issues"
-msgstr "Bilinen güvenlik sorunları"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:56
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr "${nic} ağ kartı devre dışı"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:57
-#, 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:66
-msgid "All networking disabled"
-msgstr "Tüm ağ devre dışı"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:67
-#, 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:36
-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/upgrade#manual"
-msgstr "<b>Güncellemeleri denetlemek için yeterli bellek yok.</b>\n\nBu sistemin Tails yazılımının gereksinimlerini karşıladığına emin olun.\nBilgiler: file:///usr/share/doc/tails/website/doc/about/requirements.tr.html\n\nGüncellemeleri denetlemek için Tails yazılımını yeniden başlatmayı deneyin.\n\nYa da el ile güncelleyin.\nBilgiler: https://tails.boum.org/doc/upgrade#manual"
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
-msgid "error:"
-msgstr "hata:"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:67
-msgid "Warning: virtual machine detected!"
-msgstr "Uyarı: Sanal makine algılandı!"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:70
-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:73
-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:77
-msgid "Learn more"
-msgstr "Ayrıntılı bilgi alın"
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:40
-msgid "You need to migrate your OpenPGP keys"
-msgstr "OpenPGP anahtarlarınızı aktarmanız gerekli"
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:42
-msgid ""
-"<i>Thunderbird</i> 78 now replaces the <i>Enigmail</i> extension with built-"
-"in support for OpenPGP encryption. To continue using your OpenPGP keys in "
-"<i>Thunderbird</i>, follow our migration instructions."
-msgstr "<i>Thunderbird</i> 78 OpenPGP şifrelemesi desteği için <i>Enigmail</i> eklentisini kullanıyor. OpenPGP anahtarlarınızı <i>Thunderbird</i> ile kullanmayı sürdürmek için aktarma yönergelerimizi izleyin."
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:44
-msgid "_Open Migration Instructions"
-msgstr "_Aktarma Yönergelerini Aç"
-
-#: config/chroot_local-includes/usr/local/bin/thunderbird:45
-msgid "_Migrate Later"
-msgstr "_Sonra Aktar"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Tor is not ready"
-msgstr "Tor hazır değil"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:47
-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:48
-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. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:65
-#, 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. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:71
-#, 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. It needs to be present in the translated
-#. string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:77
-#, 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. It needs to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
-#, 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. They need to be present
-#. in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:125
-#, 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/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:132
-#, 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. They need to be present
-#. in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:139
-#, 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/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:146
-#, python-brace-format
-msgid "{volume_name} – {drive_name}"
-msgstr "{volume_name} – {drive_name}"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:234
-msgid "Wrong passphrase or parameters"
-msgstr "Parola ya da parametreler hatalı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:236
-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. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:241
-#, 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/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
-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. They need
-#. to be present in the translated string.
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:350
-#, 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/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:352
-msgid "Locking the volume failed"
-msgstr "Birim kilitlenemedi"
-
-#: config/chroot_local-includes/usr/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/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/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/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/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/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/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/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/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/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/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/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/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 "Launch the Unsafe Browser?"
-msgstr "Güvenli Olmayan Tarayıcı başlatılsın mı?"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
-msgid ""
-"The Unsafe Browser is not anonymous and the websites that you visit can see "
-"your real IP address.\\n\\nOnly use the Unsafe Browser to log in to a "
-"captive portal or browse trusted web pages on the local network."
-msgstr "Güvenli Olmayan Tarayıcı anonimlik sağlamadığından, ziyaret ettiğiniz web sayfaları gerçek IP adresinizi görebilir.\\n\\nGüvenli Olmayan Tarayıcıyı yalnız internet bağlantısı kurmak için oturum açma sayfasına erişmek ya da yerel ağınızdaki güvenilir web siteleri için 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
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:510
-msgid "Unsafe Browser"
-msgstr "Güvenli Olmayan Tarayıcı"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
-msgid ""
-"The Unsafe Browser was not enabled in the Welcome Screen.\\n\\nTo use the Unsafe Browser, restart Tails and enable the Unsafe Browser in the additional settings of the Welcome Screen.\\n\n"
-"To always enable the Unsafe Browser, turn on the Welcome Screen feature of the Persistent Storage."
-msgstr "Hoş geldiniz ekranında, Güvenli Olmayan Tarayıcı etkinleştirilmemiş.\\n\\nGüvenli Olmayan Tarayıcıyı kullanmak için, Tails uygulamasını yeniden başlatın ve Hoş Geldiniz Ekranındaki ek ayarlardan Güvenli Olmayan Tarayıcıyı etkinleştirin.\\n\nGüvenli Olmayan Tarayıcıyı kalıcı olarak etkinleştirmek için, Kalıcı Depolama Biriminde Hoş Geldiniz Ekranı özelliğini açın."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
-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:107
-msgid "Failed to setup chroot."
-msgstr "chroot kurulamadı."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:114
-msgid "Failed to configure browser."
-msgstr "Tarayıcıyı ayarlanamadı."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:120
-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:131
-msgid "Failed to run browser."
-msgstr "Tarayıcıyı çalıştırılamadı."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/exceptions.py:41
-#, python-format
-msgid ""
-"The %s variable was not found in any of the configuration files "
-"/etc/whisperback/config.py, ~/.whisperback/config.py, or ./config.py"
-msgstr "%s değişkeni /etc/whisperback/config.py, ~/.whisperback/config.py ya da ./config.py ayar dosyalarının hiçbirinde bulunamadı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:114
-msgid "Name of the affected software"
-msgstr "Etkilenen uygulamanın adı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:116
-msgid "Exact steps to reproduce the error"
-msgstr "Hatayı yeniden oluşturmak için atılacak adımlar"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:118
-msgid "Actual result and description of the error"
-msgstr "Oluşan sonuç ve hatanın tanımı"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:120
-msgid "Desired result"
-msgstr "Beklenen sonuç"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:133
-msgid "Unable to load a valid configuration."
-msgstr "Geçerli bir ayar yüklenemedi."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:170
-msgid "Sending mail..."
-msgstr "E-posta gönderiliyor..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:171
-msgid "Sending mail"
-msgstr "E-posta gönderiliyor"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:173
-msgid "This could take a while..."
-msgstr "Bu işlem biraz zaman alabilir..."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:189
-msgid "The contact email address doesn't seem valid."
-msgstr "İletişim e-posta adresi geçerli gibi görünmüyor."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:206
-msgid "Unable to send the mail: SMTP error."
-msgstr "E-posta gönderilemedi: SMTP hatası."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:208
-msgid "Unable to connect to the server."
-msgstr "Sunucu ile bağlantı kurulamadı."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:210
-msgid "Unable to create or to send the mail."
-msgstr "E-posta oluşturulamadı ya da gönderilemedi."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:213
-msgid ""
-"\n"
-"\n"
-"The bug report could not be sent, likely due to network problems. Please try to reconnect to the network and click send again.\n"
-"\n"
-"If it does not work, you will be offered to save the bug report."
-msgstr "\n\nHata raporu ağ sorunları nedeniyle gönderilemedi. Lütfen ağ bağlantısını yeniden kurduktan sonra e-postayı yeniden göndermeyi deneyin.\n\nİşe yaramazsa hata raporunuzu kaydetmeniz önerilir."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:226
-msgid "Your message has been sent."
-msgstr "İletiniz gönderildi."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:233
-msgid "An error occured during encryption."
-msgstr "Şifreleme sırasında bir sorun çıktı."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:253
-#, python-format
-msgid "Unable to save %s."
-msgstr "%s kaydedilemedi."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:276
-#, python-format
-msgid ""
-"The bug report could not be sent, likely due to network problems.\n"
-"\n"
-"As a work-around you can save the bug report as a file on a USB drive and try to send it to us at %s from your email account using another system. Note that your bug report will not be anonymous when doing so unless you take further steps yourself (e.g. using Tor with a throw-away email account).\n"
-"\n"
-"Do you want to save the bug report to a file?"
-msgstr "Ağ sorunları nedeniyle hata raporu gönderilemedi.\n\nGeçici bir çözüm olarak, hata raporunu bir USB belleğe dosya olarak kaydedip başka bir sistem üzerinden ve kendi e-posta hesabınızdan %s adresini kullanarak bize gönderebilirsiniz. Bu işlemi yaparken kendi önlemlerinizi almazsanız anonimliğiniz ortadan kalkar (Tor uygulamasını ve tek kullanımlık bir e-posta adresini kullanmak gibi). \n\nHata raporunun dosya olarak kaydedilmesini ister misiniz?"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:338
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:280
-msgid "WhisperBack"
-msgstr "WhisperBack"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:339
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:12
-msgid "Send feedback in an encrypted mail."
-msgstr "Şifrelenmiş e-posta ile geri bildirim gönderin."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:342
-msgid "Copyright © 2009-2018 Tails developers (tails(a)boum.org)"
-msgstr "Telif Hakkı © 2009-2018 Tails Geliştiricileri (tails(a)boum.org)"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:343
-msgid "Tails developers <tails(a)boum.org>"
-msgstr "Tails geliştiricileri <tails(a)boum.org>"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:344
-msgid "translator-credits"
-msgstr "Çeviriye Katkıda Bulunanlar"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:377
-msgid "This doesn't seem to be a valid URL or OpenPGP key."
-msgstr "Bu geçerli bir İnternet adresine ya da OpenPGP anahtarına benzemiyor."
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:63
-#, python-format
-msgid "Invalid contact email: %s"
-msgstr "İletişim e-posta adresi geçersiz: %s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:83
-#, python-format
-msgid "Invalid contact OpenPGP key: %s"
-msgstr "İletişim OpenPGP anahtarı geçersiz: %s"
-
-#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:85
-msgid "Invalid contact OpenPGP public key block"
-msgstr "İletişim OpenPGP herkese açık anahtar bloğu geçersiz"
-
-#: ../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/tails-installer.desktop.in.h:2
-msgid "Install, clone, upgrade Tails"
-msgstr "Tails uygulamasını kur, kopyala, yükselt"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1
-msgid "Delete persistent volume"
-msgstr "Kalıcı depolama birimini sil"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2
-msgid "Delete the persistent volume and its content"
-msgstr "Kalıcı depolama birimini ve içeriğini siler"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1
-msgid "Configure persistent volume"
-msgstr "Kalıcı depolama birimini yapılandır"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2
-msgid ""
-"Configure which files and application configuration are saved between "
-"working sessions"
-msgstr "Çalışma oturumları arasında kaydedilecek dosya ve uygulama ayarlarını yapılandırır."
-
-#: ../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 kalıcı depolama biriminizden kurulacak ek uygulamaları yapılandırın."
-
-#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:1
-msgid "WhisperBack Error Reporting"
-msgstr "WhisperBack Sorun Bildirimi"
-
-#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:2
-msgid "Send feedback via encrypted e-mail"
-msgstr "Şifreli e-posta ile geri bildirim gönderin"
-
-#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:3
-msgid "feedback;bug;report;tails;error;"
-msgstr "geri bildirim;sorun;hara;bildirim;tails;"
-
-#: ../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 uygulama 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 uygulamalarınızdan bir paket kaldırmak için kimlik doğrulaması gerekir ($(command_line))"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:693
-msgid "Administration Password"
-msgstr "Yönetici Parolası"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:34
-msgid ""
-"Set up an administration password if you need to perform administrative "
-"tasks. Otherwise, the administration password is disabled for better "
-"security."
-msgstr "Yönetim işlemleri yapacaksanız bir yönetim parolası yazın. Yoksa güvenlik için yönetim parolası devre dışı bırakılır."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:69
-msgid "Enter an administration password"
-msgstr "Yönetim parolasını yazın"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:107
-msgid "Confirm your administration password"
-msgstr "Yönetim parolasını onaylayın"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:124
-msgid "Disable"
-msgstr "Devre Dışı Bırak"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:697
-msgid "MAC Address Spoofing"
-msgstr "MAC Adresi Yanıltması"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:170
-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 "MAC adreslerini yanıltması ağ kartlarınızın (Wi-Fİ ya da kablolu) seri numarasını yerel ağlardan gizler. Bu özellik coğrafi konumunuzu gizlemenize yardımcı olacağından genellikle daha fazla güvenlik sağlar. Bununla birlikte bağlanma sorunlarına ya da şüpheli olarak algılanmanıza yol açabilir."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:212
-msgid "Spoof all MAC addresses (default)"
-msgstr "Tüm MAC adresleri yanıltılsın (varsayılan)"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:258
-msgid "Don't spoof MAC addresses"
-msgstr "MAC adresleri yanıltılmasın"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:701
-msgid "Network Configuration"
-msgstr "Ağ Yapılandırması"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:327
-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 "İnternet bağlantınız sansürleniyor, süzülüyor ya da vekil sunucu kullanıyorsa, bir Tor köprüsü ya da yerel vekil sunucu yapılandırabilirsiniz. Tamamıyla çevrimdışı çalışmak için, tüm ağları devre dışı bırakabilirsiniz."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:367
-msgid "Connect directly to the Tor network (default)"
-msgstr "Doğrudan Tor ağı ile bağlantı kurulsun (varsayılan)"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:413
-msgid "Configure a Tor bridge or local proxy"
-msgstr "Bir Tor köprüsü ya da vekil sunucu yapılandır"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:457
-msgid "Disable all networking"
-msgstr "Tüm ağ devre dışı bırakılsın"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:526
-msgid ""
-"The Unsafe Browser allows you to log in to a captive portal.\n"
-"\n"
-"A captive portal is a web page that is displayed before you can access the Internet. Captive portals usually require to log in to the network or enter information such as an email address.\n"
-"\n"
-"The Unsafe Browser is not anonymous and can deanonymize you. Use it only to log in to captive portals."
-msgstr "Unsafe Browser bir kısıtlama portali oturumu açmanızı sağlar.\n\nKısıtlama portali (captive portal), İnternet erişimi öncesinde görüntülenen bir web sayfasıdır. Genellikle ağda oturum açmanız ya da e-posta adresi, cep telefonu gibi bilgiler yazmanız istenir.\n\nUnsafe Browser anonim değildir ve kimliğinizin açığa çıkmasına neden olabilir. O yüzden yalnız kısıtlama portallerine oturum açmak için kullanın."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:572
-msgid "Disable the Unsafe Browser (default)"
-msgstr "Unsafe Browser kullanılmasın (varsayılan)"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:617
-msgid "Enable the Unsafe Browser"
-msgstr "Unsafe Browser kullanılsın (varsayılan)"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100
-msgid "Settings were loaded from the persistent storage."
-msgstr "Ayarlar kalıcı depolama biriminden yüklendi."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:168
-msgid ""
-"You will configure the Tor bridge and local proxy later on after connecting "
-"to a network."
-msgstr "Bir ağa bağlandıktan sonra Tor köprüsü ya da yerel vekil sunucu yapılandırmasını yapacaksınız."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:220
-msgid "Welcome to Tails!"
-msgstr "Tails Uygulamasına Hoş Geldiniz!"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:254
-msgid "Language & Region"
-msgstr "Dil ve Bölge"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:290
-msgid "Default Settings"
-msgstr "Varsayılan Ayarlar"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:353
-msgid "Encrypted _Persistent Storage"
-msgstr "Şifreli _Kalıcı Depolama Birimi"
-
-#. The label for this placeholder text is not very big, so keep this string
-#. short.
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:447
-msgid "Enter your passphrase to unlock the persistent storage"
-msgstr "Kalıcı depolama biriminin kilidini açmak için parolanızı yazın"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:495
-msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
-msgstr "Kalıcı depolama biriminin kilidi açıldı. Yeniden kilitlemek için Tails uygulamasını yeniden başlatın."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:533
-msgid "_Additional Settings"
-msgstr "_Ek Ayarlar"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:616
-msgid "Add an additional setting"
-msgstr "Ek bir ayar ekle"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:665
-msgid ""
-"The default settings are safe in most situations. To add a custom setting, "
-"press the \"+\" button below."
-msgstr "Çoğu durum için varsayılan ayarları kullanmak güvenlidir. Özel bir ayar eklemek için aşağıdaki \"+\" düğmesine tıklayın."
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:709
-msgid "Shutdown"
-msgstr "Kapat"
-
-#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:720
-msgid "_Start Tails"
-msgstr "Tails _Başlat"
-
-#: ../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/share/tails-installer/tails-installer.ui.in:265
-msgid "Target USB stick:"
-msgstr "Hedef USB belleği:"
-
-#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
-msgid "Reinstall (delete all data)"
-msgstr "Yeniden kur (tüm verileri sil)"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:11
-msgid "Copyright © 2009-2018 tails(a)boum.org"
-msgstr "Telif Hakkı © 2009-2018 tails(a)boum.org"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
-msgid ""
-"WhisperBack - Send feedback in an encrypted mail\n"
-"Copyright (C) 2009-2018 Tails developers <tails(a)boum.org>\n"
-"\n"
-"This program is free software; you can redistribute it and/or modify\n"
-"it under the terms of the GNU General Public License as published by\n"
-"the Free Software Foundation; either version 3 of the License, or (at\n"
-"your option) any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be useful, but\n"
-"WITHOUT ANY WARRANTY; without even the implied warranty of\n"
-"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n"
-"General Public License for more details.\n"
-"\n"
-"You should have received a copy of the GNU General Public License\n"
-"along with this program. If not, see <http://www.gnu.org/licenses/>.\n"
-msgstr "WhisperBack - Şifreli e-posta ile geri bildirim gönderin.\nTelif Hakkı (C) 2009-2018 Tails geliştiricileri <tails(a)boum.org>\n\nBu program özgür bir yazılımdır: Özgür Yazılım Vakfı tarafından yayımlanan\nGNU Genel Kamu Lisansı 3. sürüm ya da (isteğinize bağlı olarak) daha\nsonraki sürümlerinin hükümleri altında yeniden dağıtabilir ve/veya\ndeğiştirebilirsiniz.\n\nBu program işe yaraması umuduyla dağıtılmıştır, ancak HİÇBİR GARANTİSİ\nYOKTUR; hatta SATILABİLİRLİK ya da BİR AMACA HİZMET gibi bir garantisi de\nyoktur. Ayrıntılı bilgi almak için GNU Genel Kamu Lisansı içeriğine bakabilirsiniz.\n\nBu programın içeriğinde bir GNU Genel Kamu Lisansı kopyası da bulunmalı.\nElinizde yoksa <http://www.gnu.org/licenses/> adresine bakabilirsiniz.\n"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:122
-msgid ""
-"If you want us to encrypt messages when we respond to you, add your key ID, "
-"a link to your key, or the key as a public key block:"
-msgstr "Size yanıt verirken iletilerimizi şifrelememizi istiyorsanız, anahtarınızı, anahtar kodu, anahtarınıza yöneltilmiş bir bağlantı ya da herkese açık anahtar bloğu şeklinde ekleyin:"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:308
-msgid "Summary"
-msgstr "Özet"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:337
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:472
-msgid "Bug description"
-msgstr "Hata açıklaması"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:378
-msgid "Help:"
-msgstr "Yardım:"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:388
-msgid "Read our bug reporting guidelines."
-msgstr "Hata bildirme yönergelerini okuyun."
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:416
-msgid "Email address (if you want an answer from us)"
-msgstr "E-posta adresiniz (bizden bir yanıt almak istiyorsanız)"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:445
-msgid "optional PGP key"
-msgstr "İsteğe bağlı PGP anahtarı"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:489
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:600
-msgid "Technical details to include"
-msgstr "Katılacak teknik ayrıntılar"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:527
-msgid "headers"
-msgstr "üst bilgiler"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:575
-msgid "debugging info"
-msgstr "hata ayıklama bilgileri"
-
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:667
-msgid "Send"
-msgstr "Gönder"
-
-#: ../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] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc
by translation@torproject.org 11 Dec '20
by translation@torproject.org 11 Dec '20
11 Dec '20
commit 889898b00db3274a3d676de070482838c0c692d7
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Dec 11 09:47:00 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tails-misc
---
ach.po | 17 +++++++----------
af.po | 17 +++++++----------
ar.po | 23 ++++++++++-------------
ast.po | 17 +++++++----------
az.po | 17 +++++++----------
be.po | 17 +++++++----------
bg.po | 17 +++++++----------
bn.po | 17 +++++++----------
br.po | 17 +++++++----------
bs.po | 17 +++++++----------
ca.po | 17 +++++++----------
cs.po | 21 +++++++++------------
cy.po | 17 +++++++----------
da.po | 19 ++++++++-----------
de.po | 23 ++++++++++-------------
el.po | 21 +++++++++------------
en_GB.po | 21 +++++++++------------
eo.po | 17 +++++++----------
es.po | 23 ++++++++++-------------
es_AR.po | 23 ++++++++++-------------
es_MX.po | 17 +++++++----------
et.po | 17 +++++++----------
eu.po | 17 +++++++----------
fa.po | 17 +++++++----------
fi.po | 21 +++++++++------------
fr.po | 23 ++++++++++-------------
fy.po | 17 +++++++----------
ga.po | 17 +++++++----------
gd.po | 17 +++++++----------
gl.po | 17 +++++++----------
gu.po | 17 +++++++----------
he.po | 27 ++++++++++++---------------
hi.po | 19 ++++++++-----------
hr.po | 21 +++++++++------------
hu.po | 21 +++++++++------------
hy.po | 17 +++++++----------
ia.po | 17 +++++++----------
id.po | 17 +++++++----------
is.po | 21 +++++++++------------
it.po | 23 ++++++++++-------------
ja.po | 23 ++++++++++-------------
ka.po | 21 +++++++++------------
kab.po | 17 +++++++----------
kk.po | 17 +++++++----------
km.po | 17 +++++++----------
kn.po | 19 ++++++++-----------
ko.po | 21 +++++++++------------
lt.po | 17 +++++++----------
lv.po | 17 +++++++----------
mk.po | 21 +++++++++------------
ml.po | 17 +++++++----------
mr.po | 19 ++++++++-----------
ms_MY.po | 17 +++++++----------
my.po | 17 +++++++----------
nb.po | 17 +++++++----------
ne.po | 17 +++++++----------
nl.po | 19 ++++++++-----------
nl_BE.po | 17 +++++++----------
nn.po | 17 +++++++----------
oc.po | 17 +++++++----------
or.po | 17 +++++++----------
pa.po | 17 +++++++----------
pl.po | 17 +++++++----------
pt_BR.po | 23 ++++++++++-------------
pt_PT.po | 17 +++++++----------
ro.po | 19 ++++++++-----------
ru.po | 17 +++++++----------
si.po | 17 +++++++----------
si_LK.po | 17 +++++++----------
sk.po | 17 +++++++----------
sl.po | 17 +++++++----------
son.po | 17 +++++++----------
sq.po | 23 ++++++++++-------------
sr.po | 17 +++++++----------
sv.po | 23 ++++++++++-------------
sw.po | 19 ++++++++-----------
ta.po | 17 +++++++----------
tails.pot | 21 +++++++++------------
te.po | 17 +++++++----------
th.po | 17 +++++++----------
tr.po | 23 ++++++++++-------------
uk.po | 17 +++++++----------
ur.po | 17 +++++++----------
uz.po | 17 +++++++----------
vi.po | 17 +++++++----------
zh_CN.po | 19 ++++++++-----------
zh_HK.po | 17 +++++++----------
zh_TW.po | 17 +++++++----------
88 files changed, 684 insertions(+), 948 deletions(-)
diff --git a/ach.po b/ach.po
index 1530b4ddf7..e198e46123 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Acoli (http://www.transifex.com/otf/torproject/language/ach/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/af.po b/af.po
index 0012cd1eff..963ded5533 100644
--- a/af.po
+++ b/af.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Afrikaans (http://www.transifex.com/otf/torproject/language/af/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ar.po b/ar.po
index 190315f70d..839fd31aff 100644
--- a/ar.po
+++ b/ar.po
@@ -36,9 +36,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-10 15:29+0000\n"
-"Last-Translator: NASI₿ <nomadweb(a)protonmail.ch>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -252,8 +252,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>يجب إجراء ترقية يدوية لـ {name} {version}.</b>\n\nلمزيد من المعلومات حول هذا الإصدار الجديد ، انتقل إلى {details_url}\n\nلا يمكن ترقية جهازك تلقائيًا إلى هذا الإصدار الجديد: {الشرح}.\n\nلمعرفة كيفية إجراء ترقية يدوية ، انتقل إلى https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1171,7 +1171,7 @@ msgstr "اعداد قرص دائم لتيلز"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "خطأ"
@@ -1597,6 +1597,7 @@ msgid ""
msgstr "فشلت عملية انتحال وحدة تحكم وصول الوسائط لبطاقة الشبكة ${nic_name} (${nic}) لذا فقد تم تعطيلها مؤقتا.\nربما تفضل إعادة تشغيل Tails وتعطيل انتحال وحدة تحكم وصول الوسائط."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1606,10 +1607,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>لا تتوفر ذاكرة كافية للتحقق من وجود ترقيات.</b>\n\nتأكد من أن هذا النظام يلبي متطلبات تشغيل Tails.\nانظر الملف: ///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nحاول إعادة تشغيل Tails للتحقق من الترقيات مرة أخرى.\n\nأو قم بإجراء ترقية يدوية.\nانظر https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "خطأ:"
@@ -2331,10 +2332,6 @@ msgstr "إعادة النتصيب (يتم حذف كافة البيانات)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "حقوق النسخ © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ast.po b/ast.po
index b1ea14ccad..5432cba0b7 100644
--- a/ast.po
+++ b/ast.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Asturian (http://www.transifex.com/otf/torproject/language/ast/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/az.po b/az.po
index 50505cfb85..dd7b79d06d 100644
--- a/az.po
+++ b/az.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Azerbaijani (http://www.transifex.com/otf/torproject/language/az/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr "Tails-in davamlı həcmini quraşdır"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Xəta"
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "xəta:"
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/be.po b/be.po
index da3e9d737d..120f8b63b9 100644
--- a/be.po
+++ b/be.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Belarusian (http://www.transifex.com/otf/torproject/language/be/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Памылка"
@@ -1564,6 +1564,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2298,10 +2299,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/bg.po b/bg.po
index aa73eee569..d92a2d4803 100644
--- a/bg.po
+++ b/bg.po
@@ -19,8 +19,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Bulgarian (http://www.transifex.com/otf/torproject/language/bg/)\n"
"MIME-Version: 1.0\n"
@@ -235,7 +235,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1154,7 +1154,7 @@ msgstr "Настройка Tails устойчиви обем"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "ГРЕШКА"
@@ -1572,6 +1572,7 @@ msgid ""
msgstr "MAC спуфинга се провали за мрежова карта ${nic_name} (${nic}). Възстановяването на грешката също не успя, така че всички мрежи е забранени.\nМоже би предпочитате рестартиране на Tails и забраняване на MAC спуфинга."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1581,10 +1582,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "грешка:"
@@ -2306,10 +2307,6 @@ msgstr "Преинсталирай (изтрива цялата информац
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/bn.po b/bn.po
index 2875f4c7c2..67a66f0a83 100644
--- a/bn.po
+++ b/bn.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Bengali (http://www.transifex.com/otf/torproject/language/bn/)\n"
"MIME-Version: 1.0\n"
@@ -226,7 +226,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1145,7 +1145,7 @@ msgstr "সেট পুকুর দৃঢ় ভলিউম"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "ভুল"
@@ -1563,6 +1563,7 @@ msgid ""
msgstr "নেটওয়ার্ক কার্ড ${nic_name} (${nic}) জন্য MAC স্পুফিং ব্যর্থ হয়েছে। ত্রুটি পুনরুদ্ধারের ব্যর্থ তাই সমস্ত নেটওয়ার্কিং নিষ্ক্রিয় করা হয়।\nআপনি পুচ্ছ পুনর্সূচনা এবং ম্যাক spoofing অক্ষম করতে পারে।"
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1572,10 +1573,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "ত্রুটি:"
@@ -2297,10 +2298,6 @@ msgstr "পুনরায় ইনস্টল করুন (সমস্ত
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "কপিরাইট © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/br.po b/br.po
index b0b49d3797..2ce3c0827f 100644
--- a/br.po
+++ b/br.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Breton (http://www.transifex.com/otf/torproject/language/br/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Fazi"
@@ -1567,6 +1567,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1576,10 +1577,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2301,10 +2302,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/bs.po b/bs.po
index e69f1dc297..a3df597fda 100644
--- a/bs.po
+++ b/bs.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Bosnian (http://www.transifex.com/otf/torproject/language/bs/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ca.po b/ca.po
index 5356bbea06..397fb10cd9 100644
--- a/ca.po
+++ b/ca.po
@@ -25,8 +25,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Catalan (http://www.transifex.com/otf/torproject/language/ca/)\n"
"MIME-Version: 1.0\n"
@@ -241,7 +241,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1160,7 +1160,7 @@ msgstr "Configura el volum persistent de Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Error"
@@ -1578,6 +1578,7 @@ msgid ""
msgstr "El falsejament de la identitat de l'adreça MAC ha fallat per la targeta de xarxa ${nic_name} (${nic}). També ha fallat la recuperació d'errors i tot el treball en xarxa està desactivat.\nPotser preferireu reiniciar el Tails i desactivar el falsejament de l'adreça MAC "
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1587,10 +1588,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "Hi ha hagut un error:"
@@ -2312,10 +2313,6 @@ msgstr "Reinstal·lar (esborrar tots els arxius)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/cs.po b/cs.po
index fbd6c9a743..c0ab38dcdd 100644
--- a/cs.po
+++ b/cs.po
@@ -24,8 +24,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n"
"MIME-Version: 1.0\n"
@@ -240,8 +240,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Měli byste provést ruční aktualizaci na {name} {version}.</b>\n\nVíce informací o této nové verzi najdete na %{details_url}s\n\nAktualizovat vaše zařízení na tuto verzi automaticky není možné. Důvod: %{explanation}s.\n\nVíce informací o ruční aktualizaci najdete na adrese https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1159,7 +1159,7 @@ msgstr "Nastavení trvalého svazku pro Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Chyba"
@@ -1581,6 +1581,7 @@ msgid ""
msgstr "Falšování MAC adresy pro síťovou kartu ${nic_name} (${nic}) selhalo. Opravení chyby také selhalo a veškerý síťový provoz byl deaktivován.\nMěli byste restartovat Tails a falšování MAC adresy vypnout."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1590,10 +1591,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Není k dispozici dostatek paměti potřebné ke kontrole aktualizací</b>\n\nUjistěte se že tento systém splňuje požadavky ke spuštění Tails.\nPodívejte se na dokument :///usr/share/doc/tails/website/doc/requirements.en.html\n\nPokuste se restartovat Tails a znovu zkontrolujte aktualizace.\n\nNebo spusťte manuální aktualizaci.\n\nPodívejte se na https://tails.boum.org/doc/first_steps/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "chyba:"
@@ -2315,10 +2316,6 @@ msgstr "Přeinstalovat (smazat všechna data)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/cy.po b/cy.po
index bd31982905..5cf7c33ca5 100644
--- a/cy.po
+++ b/cy.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
"MIME-Version: 1.0\n"
@@ -226,7 +226,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1145,7 +1145,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Gwall"
@@ -1567,6 +1567,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1576,10 +1577,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "gwall:"
@@ -2301,10 +2302,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/da.po b/da.po
index f518d28a42..2f2663086b 100644
--- a/da.po
+++ b/da.po
@@ -20,8 +20,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Danish (http://www.transifex.com/otf/torproject/language/da/)\n"
"MIME-Version: 1.0\n"
@@ -236,8 +236,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Du bør foretage en manual opgradering til {name} {version}.</b>\n\nFor mere information om den nye version, gå til {details_url}\n\nDet er ikke muligt automatisk at opgradere din enhed til den nye version: {explanation}.\n\nLær at foretage manual opgradering, gå til https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1155,7 +1155,7 @@ msgstr "Opsæt vedvarende diskområde i Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Fejl"
@@ -1573,6 +1573,7 @@ msgid ""
msgstr "MAC-spoofing mislykkedes for netværkskortet ${nic_name} (${nic}). Fejlgendannelsen mislykkedes også, så al netværk er deaktiveret. \nDu vil måske foretrække at genstarte Tails og deaktivere MAC-spoofing."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1582,10 +1583,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "fejl:"
@@ -2307,10 +2308,6 @@ msgstr "Geninstaller (slet al data)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Ophavsret © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/de.po b/de.po
index 9f13c89cc2..f85309ae6c 100644
--- a/de.po
+++ b/de.po
@@ -37,9 +37,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-06 09:48+0000\n"
-"Last-Translator: Curtis Baltimore <curtisbaltimore(a)protonmail.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -253,8 +253,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Du solltest manuell aktualisieren zu {name} {version}.</b>\n\nFür weitere Informationen über diese Version, gehe zu {details_url}\n\nEs ist nicht möglich, dein Gerät automatisch auf diese neue Version zu aktualisieren: {explanation}.\n\nUm zu erfahren, wie ein manuelles Upgrade durchgeführt wird, gehe zu https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1172,7 +1172,7 @@ msgstr "Beständige Datenpartition für Tails erstellen"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Fehler"
@@ -1590,6 +1590,7 @@ msgid ""
msgstr "Bei der Netzwerkkarte ${nic_name} (${nic}) schlugen die MAC-Manipulation und die Fehlerbehebung fehl. Deshalb wurden jetzt alle Verbindungen deaktiviert. \nSie sollten eventuell die MAC-Manipulation deaktivieren und Tails neu starten."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1599,10 +1600,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "\"<b>Nicht ausreichend freier Arbeitsspeicher, um nach Aktualisierungen zu prüfen.</b>\n\nStellen Sie sicher, dass das System den Voraussetzungen für ein laufendes Tails-System entspricht.\nSee file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nVersuchen Sie Tails neu zu starten und erneut nach Aktualisierungen zu prüfen.\n\nOder führen Sie eine manuelle Aktualisierung durch.\nLesen Sie https://tails.boum.org/doc/upgrade#manual\""
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "Fehler:"
@@ -2324,10 +2325,6 @@ msgstr "Neu installieren (alle Daten löschen)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/index.de.html"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/el.po b/el.po
index ac6ea2670a..24e171e1bd 100644
--- a/el.po
+++ b/el.po
@@ -30,8 +30,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
"MIME-Version: 1.0\n"
@@ -246,8 +246,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>θα πρέπει να κάνετε χειροκίνητη αναβάθμιση στη {name} {version}.</b>\n\nΓια περισσότερες πληροφορίες σχετικά με τη νέα έκδοση, δείτε στο {details_url}\n\nΔεν είναι δυνατή η αυτόματη αναβάθμιση της συσκευής σας στη νέα έκδοση: {explanation}.\n\nΓια να μάθετε πώς να κάνετε μια μη αυτόματη αναβάθμιση, μεταβείτε στη διεύθυνση https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1165,7 +1165,7 @@ msgstr " Διαμόρφωση μόνιμου τόμου του Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Σφάλμα"
@@ -1583,6 +1583,7 @@ msgid ""
msgstr "Η μεταμφίεση της MAC απέτυχε για την κάρτα δικτύου ${nic_name} (${nic}). Απέτυχε επίσης και η ανάκτηση από αυτό το σφάλμα, και έτσι η δικτύωση απενεργοποιήθηκε.\nΊσως είναι καλύτερα να επανεκκινήσετε το Tails και να απενεργοποιήσετε την μεταμφίεση της MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1592,10 +1593,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Δεν υπάρχει αρκετή διαθέσιμη μνήμη για έλεγχο αναβαθμίσεων.\n\nΒεβαιωθείτε ότι το σύστημα πληροί τις απαιτήσεις για την εκτέλεση του Tails.\nΔείτε file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nΚάντε επανεκκίνηση του Tails για να ελέγξετε ξανά για αναβαθμίσεις.\n\nΉ κάντε μια χειροκίνητη αναβάθμιση.\nΔείτε https://tails.boum.org/doc/first_steps/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "σφάλμα:"
@@ -2317,10 +2318,6 @@ msgstr "Επανεγκατάσταση (διαγραφή όλων των δεδ
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Πνευματική ιδιοκτησία © 2009-2018 tails(a)boum.org "
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/en_GB.po b/en_GB.po
index 3728523e02..adfe111a8a 100644
--- a/en_GB.po
+++ b/en_GB.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/otf/torproject/language/en_GB/)\n"
"MIME-Version: 1.0\n"
@@ -227,8 +227,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>You should do a manual upgrade to {name} {version}.</b>\n\nFor more information about this new version, go to {details_url}\n\nIt is not possible to automatically upgrade your device to this new version: {explanation}.\n\nTo learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1146,7 +1146,7 @@ msgstr "Setup Tails persistent volume"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Error"
@@ -1564,6 +1564,7 @@ msgid ""
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."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/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/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "error:"
@@ -2298,10 +2299,6 @@ msgstr "Reinstall (delete all data)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/eo.po b/eo.po
index adcf9484ac..364bd9e492 100644
--- a/eo.po
+++ b/eo.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Esperanto (http://www.transifex.com/otf/torproject/language/eo/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Eraro"
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "eraro:"
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/es.po b/es.po
index df56dbe44f..2b25109053 100644
--- a/es.po
+++ b/es.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 15:11+0000\n"
-"Last-Translator: eulalio barbero espinosa <eulaliob(a)gmail.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -236,8 +236,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Deberías hacer una actualización manual de {name} {version}.</b>\n\nPara más información sobre esta nueva versión, ir a {details_url}\n\nNo es posible actualizar automáticamente tu dispositivo a esta nueva versión: {explanation}.\n\nPara aprender a hacer una actualización manual, ir a https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1155,7 +1155,7 @@ msgstr "Configurar el volumen persistente de Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Error"
@@ -1573,6 +1573,7 @@ msgid ""
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:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1582,10 +1583,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>No hay suficiente memoria disponible para buscar actualizaciones.</b>\n\nAsegúrate de que este sistema cumple con los requisitos para ejecutar Tails.\nMira el archivo:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nIntenta reiniciar Tails para buscar actualizaciones de nuevo.\n\nO haz una actualización manual.\nVer https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "error:"
@@ -2307,10 +2308,6 @@ msgstr "Reinstalar (borra todos los datos) "
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/es_AR.po b/es_AR.po
index 55fa3deac2..38830ba312 100644
--- a/es_AR.po
+++ b/es_AR.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 22:18+0000\n"
-"Last-Translator: Zuhualime Akoochimoya\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -231,8 +231,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Deberías hacer una actualización manual a {name} {version}.</b>\n\nPara obtener más información sobre esta nueva versión, visitá {details_url}\n\nNo es posible actualizar automáticamente tu dispositivo a esta nueva versión: {explanation}.\n\nPara aprender cómo hacer una actualización manual, visitá https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1150,7 +1150,7 @@ msgstr "Configurar volumen persistente de Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Error"
@@ -1568,6 +1568,7 @@ msgid ""
msgstr "Falsificación de MAC para placa de red ${nic_name} (${nic}) falló. La recuperación de error también falló, por lo que las funciones de red están deshabilitadas.\nQuizás prefieras reiniciar Tails y deshabilitar esta función."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1577,10 +1578,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>No hay suficiente memoria disponible para comprobar nuevas versiones.</b>\n\nAsegurate que éste sistema satisface los requerimientos para correr Tails.\nMirá file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nIntentá reiniciar Tails para comprobar nuevamente por actualizaciones.\n\nO hacé una actualización manual.\nMirá https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "error:"
@@ -2302,10 +2303,6 @@ msgstr "Reinstalar (borrar todos los datos)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/es_MX.po b/es_MX.po
index 73d442a364..17911461e6 100644
--- a/es_MX.po
+++ b/es_MX.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/otf/torproject/language/es_MX/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr "Ajustar el volumen persistente de Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Error"
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/et.po b/et.po
index 54d42933fc..e532f95664 100644
--- a/et.po
+++ b/et.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Estonian (http://www.transifex.com/otf/torproject/language/et/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Viga"
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "tõrge:"
@@ -2296,10 +2297,6 @@ msgstr "Taasinstalli (kustuta kõik andmed)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/eu.po b/eu.po
index be8859c9be..7596d9bdf6 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Basque (http://www.transifex.com/otf/torproject/language/eu/)\n"
"MIME-Version: 1.0\n"
@@ -230,7 +230,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1149,7 +1149,7 @@ msgstr "Konfiguratu Tailsen bolumen iraunkorra"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Akatsa"
@@ -1567,6 +1567,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1576,10 +1577,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "akatsa:"
@@ -2301,10 +2302,6 @@ msgstr "Instalatu berriro (datu guztiak ezabatu)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/fa.po b/fa.po
index ecba4f1d55..24a1b61586 100644
--- a/fa.po
+++ b/fa.po
@@ -36,8 +36,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Persian (http://www.transifex.com/otf/torproject/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -252,7 +252,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1171,7 +1171,7 @@ msgstr "راه اندازی حجم درایو مداوم برای تیلز(Tails
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "خطا"
@@ -1589,6 +1589,7 @@ msgid ""
msgstr "تغییر آدرس MAC برای کارت شبکه ${nic_name} (${nic}) ناموفق بود. همچنین ترمیم این خطا نیز موفقیت آمیز نبود و همه شبکه به همین خاطر غیرفعال شد.\nشما می توانید Tails را دوباره راه اندازی کنید و یا MAC Spoofing یا همان حقه زدن MAC را غیر فعال کنید."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1598,10 +1599,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "خطا :"
@@ -2323,10 +2324,6 @@ msgstr "نصب مجدد (حذف تمام داده ها)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "کپی رایت © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/fi.po b/fi.po
index 4eb201beb3..8d6890a3e5 100644
--- a/fi.po
+++ b/fi.po
@@ -19,8 +19,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Finnish (http://www.transifex.com/otf/torproject/language/fi/)\n"
"MIME-Version: 1.0\n"
@@ -235,8 +235,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Sinun pitäisi päivittää manuaalisesti versioon {name} {version}.</b>\n\nLisätietoja tästä uudesta versiosta saat siirtymällä osoitteeseen {details_url}\n\nLaitettasi ei ole mahdollista päivittää tähän uuteen versioon automaattisesti: {explanation}.\n\nOppiaksesi tekemään manuaalisen päivityksen siirry osoiteeseen https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1154,7 +1154,7 @@ msgstr "Valmistele Tailsin pysyvä taltio"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Virhe"
@@ -1572,6 +1572,7 @@ msgid ""
msgstr "MAC-osoitteen väärennös epäonnistui verkkokortilla ${nic_name} (${nic}). Myös virhepalautuminen epäonnistui, joten kaikki verkkoyhteydet on otettu pois käytöstä.\nOlisi ehkä paras käynnistää Tails uudelleen ja ottaa pois käytöstä MAC-väärennös."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1581,10 +1582,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Muistia ei ole kylliksi päivitysten tarkistamiseksi.</b>\nVarmista, että järjestelmä tyydyttää suoritettavan Tails-ohjelman vaatimukset.\nKatso file:///usr/share/doc/tails/website/doc/about/requirements.en.html\nYritä käynnistää Tails uudelleen päivitysten tarkistamiseksi.\nTai tee manuaalinen päivitys.\nKatso https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "virhe:"
@@ -2306,10 +2307,6 @@ msgstr "Asenna uudelleen (poista kaikki data)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Tekijänoikeus © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/fr.po b/fr.po
index 4cf3e2dc9b..914cbb6c0e 100644
--- a/fr.po
+++ b/fr.po
@@ -40,9 +40,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-06 10:09+0000\n"
-"Last-Translator: Curtis Baltimore <curtisbaltimore(a)protonmail.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -256,8 +256,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Vous devriez mettre à niveau manuellement vers {name} {version}.</b>\n\nPour plus de précisions sur cette nouvelle version, visitez {details_url}.\n\nIl n’est pas possible de mettre votre appareil automatiquement à niveau vers cette nouvelle version : {explanation}.\n\nPour apprendre à faire une mise à niveau manuelle, visitez https://tails.boum.org/doc/upgrade/index.fr.html#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1175,7 +1175,7 @@ msgstr "Configurer le volume persistant de Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Erreur"
@@ -1593,6 +1593,7 @@ msgid ""
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:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1602,10 +1603,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Il n’y a pas assez de mémoire disponible pour vérifier la présence de mises à niveau.</b>\n\nAssurez-vous que ce système répond aux exigences d’exécution de Tails.\nConsultez file:///usr/share/doc/tails/website/doc/about/requirements.fr.html\n\nEssayez de redémarrer Tails pour revérifier la présence de mises à niveau.\n\nOu effectuez une mise à niveau manuelle.\nConsultez https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "erreur :"
@@ -2327,10 +2328,6 @@ msgstr "Réinstaller (supprimer toutes les données)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Tous droits réservés © 2009 à 2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/index.fr.html"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/fy.po b/fy.po
index 6dec41fbe0..f19dc11780 100644
--- a/fy.po
+++ b/fy.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Western Frisian (http://www.transifex.com/otf/torproject/language/fy/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Flater"
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "flater:"
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ga.po b/ga.po
index 6d8ee6a353..5e4167fd68 100644
--- a/ga.po
+++ b/ga.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Irish (http://www.transifex.com/otf/torproject/language/ga/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr "Socraigh imleabhar seasmhach Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Earráid"
@@ -1568,6 +1568,7 @@ msgid ""
msgstr "Theip ar dhallamullóg MAC ar chárta líonra ${nic_name} (${nic}). Theip ar athshlánú ón earráid freisin, agus díchumasaíodh líonrú go hiomlán dá bharr sin.\nB'fhéidir gurbh fhearr leat Tails a atosú agus dallamullóg MAC a dhíchumasú."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1577,10 +1578,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "earráid:"
@@ -2302,10 +2303,6 @@ msgstr "Athshuiteáil (scriosfar na sonraí go léir)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Cóipcheart © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/gd.po b/gd.po
index b659ffa110..b34fcb0aa9 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Gaelic, Scottish (http://www.transifex.com/otf/torproject/language/gd/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1564,6 +1564,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2298,10 +2299,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/gl.po b/gl.po
index 9cf26f90b4..42dc03c0c5 100644
--- a/gl.po
+++ b/gl.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Galician (http://www.transifex.com/otf/torproject/language/gl/)\n"
"MIME-Version: 1.0\n"
@@ -226,7 +226,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1145,7 +1145,7 @@ msgstr "Configure o volume persistente de Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Erro"
@@ -1563,6 +1563,7 @@ msgid ""
msgstr "Fallou o MAC spoofing para a tarxeta de red ${nic_name} (${nic}). A recuperación do erro tamén fallou así que a rede se deshabilitou.\nQuizáis prefira reiniciar Tails e deshabilitar o MAC spoofing."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1572,10 +1573,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "erro:"
@@ -2297,10 +2298,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/gu.po b/gu.po
index cb41bca64c..6078416cce 100644
--- a/gu.po
+++ b/gu.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Gujarati (http://www.transifex.com/otf/torproject/language/gu/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "ભૂલ"
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/he.po b/he.po
index c9ed5ac703..5f93b91374 100644
--- a/he.po
+++ b/he.po
@@ -10,16 +10,16 @@
# ION, 2017-2020
# Johnny Diralenzo, 2015
# Kunda, 2014
-# Omeritzics Games <omeritzicschwartz(a)gmail.com>, 2020
-# Omeritzics Games <omeritzicschwartz(a)gmail.com>, 2020
+# Omer I.S. <omeritzicschwartz(a)gmail.com>, 2020
+# Omer I.S. <omeritzicschwartz(a)gmail.com>, 2020
# Ruben <drarbib(a)gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-06 13:02+0000\n"
-"Last-Translator: Omeritzics Games <omeritzicschwartz(a)gmail.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -233,8 +233,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>אתה צריך לעשות שדרוג ידני אל {name} {version}.</b>\n\nלעוד מידע אודות גרסה חדשה זו, לך אל {details_url}\n\nזה בלתי אפשרי לשדרג באופן אוטומטי את ההתקן שלך אל גרסה חדשה זו: {explanation}.\n\nכדי ללמוד כיצד לעשות בעצמך שדרוג ידני, לך אל https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1152,7 +1152,7 @@ msgstr "קביעת תצורת כרך מתמיד של Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "שגיאה"
@@ -1574,6 +1574,7 @@ msgid ""
msgstr "זיוף MAC נכשל עבור כרטיס הרשת ${nic_name} (${nic}). השבת השגיאה נכשלה אף היא כך שכל הרישות מושבת.\nאולי תעדיף להפעיל מחדש את Tails ולהשבית זיוף MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1583,10 +1584,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>אין מספיק זיכרון זמין כדי לבדוק אחר שדרוגים.</b>\n\nוודא שמערכת זו עומדת בדרישות להרצת Tails.\nראה file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nנסה להפעיל מחדש את Tails כדי לבדוק שוב אחר שדרוגים.\n\nאו עשה שדרוג ידני.\nראה https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "שגיאה:"
@@ -2308,10 +2309,6 @@ msgstr "התקן מחדש (מחק כל הנתונים)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "זכויות יוצרים © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/hi.po b/hi.po
index 5b5297cd5a..39e02ff39c 100644
--- a/hi.po
+++ b/hi.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 10:53+0000\n"
-"Last-Translator: Karan Saini\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "त्रुटि"
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/hr.po b/hr.po
index 9494f0c1af..4f0a14565c 100644
--- a/hr.po
+++ b/hr.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Croatian (http://www.transifex.com/otf/torproject/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -226,8 +226,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Treba ručno nadograditi na {name} {version}.</b>\n\nZa daljnje informacije o ovoj novoj verziji, idi na {details_url}\n\nNije moguće automatski nadograditi uređaj na ovu novu verziju: {explanation}.\n\nSaznaj kako ručno nadograditi na https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1145,7 +1145,7 @@ msgstr "Postavi Tails trajni pogon"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Greška"
@@ -1565,6 +1565,7 @@ msgid ""
msgstr "MAC oponašanje nije uspjelo za mrežnu karticu ${nic_name} (${nic}). Oporavljanje od greške također nije uspjelo tako da je sav mrežni rad deaktiviran.\nPokušaj ponovno pokrenuti Tails i deaktivirati MAC oponašanje."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1574,10 +1575,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Nema dovoljno memorije za provjeru nadogradnji.</b>\n\nProvjeri, zadovoljava li ovaj sustav zahtjeve za pokretanje Tailsa.\nPogledaj file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nPokušaj ponovo pokrenuti Tails za ponovnu provjeru nadogradnji.\n\nIli nadogradi ručno.\nPogledaj https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "greška:"
@@ -2299,10 +2300,6 @@ msgstr "Instaliraj ponovo (obriši sve podatke)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009. – 2018. tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/hu.po b/hu.po
index 26123fc164..d69fd5e596 100644
--- a/hu.po
+++ b/hu.po
@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Hungarian (http://www.transifex.com/otf/torproject/language/hu/)\n"
"MIME-Version: 1.0\n"
@@ -232,8 +232,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Kézi frissítést kellene csinálnia a {name}{version} változatra.</b>\n\nBővebb információ az új verzióról itt: %{details_url}s\n\nNem lehetséges az automatikus frissítés az eszközön erre a verzióra: {explanation}.\n\nInformáció a kézzel történő frissítésről itt: https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1151,7 +1151,7 @@ msgstr "Tails tartós kötet telepítése"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Hiba"
@@ -1569,6 +1569,7 @@ msgid ""
msgstr "A MAC cím váltás a következő hálózati kártyán sikertelen volt: ${nic_name} (${nic}). A hibaelhárítás is sikertelen volt, úgyhogy a hálózati kártya le lett tiltva.\nÚjraindíthatja a Tails-t és letilthatja a MAC cím cserét."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1578,10 +1579,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Nincs elég memória a frissítések ellenőrzéséhez.</b>\n\nGyőződjön meg róla a számítógépe megfelel a minimális rendszerkövetelményeknek.\nTovábbi információt itt talál: file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nIndítsa újra a Tail-s és próbálja meg mégegyszer frissíteni.\n\nVagy frissítse manuálisan. Lásd: https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "hiba:"
@@ -2303,10 +2304,6 @@ msgstr "Újratelepítés (összes adat törlése)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/hy.po b/hy.po
index 9bd69c1b47..f0969ed472 100644
--- a/hy.po
+++ b/hy.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Armenian (http://www.transifex.com/otf/torproject/language/hy/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Սխալ"
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ia.po b/ia.po
index efd7e1087b..044a74cf3c 100644
--- a/ia.po
+++ b/ia.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Interlingua (http://www.transifex.com/otf/torproject/language/ia/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Error"
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/id.po b/id.po
index 0997161df6..447d5ca63e 100644
--- a/id.po
+++ b/id.po
@@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Indonesian (http://www.transifex.com/otf/torproject/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -238,7 +238,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1157,7 +1157,7 @@ msgstr "Pengaturan volume tetap Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Kesalahan"
@@ -1573,6 +1573,7 @@ msgid ""
msgstr "Pemalsuan MAC gagal untuk kartu jaringan ${nic_name} (${nic}). Pemulihan galat juga gagal jadi semua jaringan dinonaktifkan.\nKamu mungkin ingin lebih memilih untuk memulai ulang Tails dan menonaktifkan pemalsuan MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1582,10 +1583,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "kesalahan:"
@@ -2307,10 +2308,6 @@ msgstr "Pasang ulang (hapus semua data)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Hak Cipta © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/is.po b/is.po
index 0f857123a3..d2e87f7eee 100644
--- a/is.po
+++ b/is.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Icelandic (http://www.transifex.com/otf/torproject/language/is/)\n"
"MIME-Version: 1.0\n"
@@ -224,8 +224,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Þú ættir að uppfæra handvirkt í {name} {version}.</b>\n\nTil að sjá nánari upplýsingar um nýju útgáfuna, farðu á {details_url}\n\nEkki er hægt að uppfæra tækið sjálfvirkt í þessa nýju útgáfu: {explanation}.\n\nTil að sjá hvernig framkvæma eigi handvirka uppfærslu, farðu þá á https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1143,7 +1143,7 @@ msgstr "Setja upp varanlega gagnageymslu í Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Villa"
@@ -1561,6 +1561,7 @@ msgid ""
msgstr "Dulbúningur MAC-vistfangs mistókst fyrir netkortið ${nic_name} (${nic}). Viðgerð villunnar mistókst einnig, þannig að öll netvinnsla er tímabundið óvirk.\nÞú gætir viljað endurræsa Tails og gera dulbúning MAC-vistfangs óvirkan."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Ekki er nægt minni eftir til að athuga með uppfærslur.</b>\n\nGakktu úr skugga um að þetta kerfi uppfylli kröfur til að keyra Tails.\nSkoðaðu file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nReyndu að endurræsa Tails til að athuga aftur með uppfærslur.\n\nEða uppfærðu handvirkt.\nSkoðaðu https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "villa:"
@@ -2295,10 +2296,6 @@ msgstr "Setja upp aftur (eyða öllum gögnum)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Höfundarréttur © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/it.po b/it.po
index 8a04717834..a695c451a0 100644
--- a/it.po
+++ b/it.po
@@ -34,9 +34,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 14:07+0000\n"
-"Last-Translator: Random_R\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -250,8 +250,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Dovresti fare un aggiornamento manuale a {name} {version}.</b>\n\nPer ulteriori informazioni riguardo questa nuova versione, visita {details_url}\n\nNon è possibile aggiornare automaticamente il tuo dispositivo a questa nuova versione: {explanation}.\n\nPer imparare come fare un aggiornamento manuale, visita https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1169,7 +1169,7 @@ msgstr "Configurare un volume persistente Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Errore"
@@ -1587,6 +1587,7 @@ msgid ""
msgstr "L'oscuramento dell'indirizzo MAC è fallito per la scheda di rete ${nic_name} (${nic}). Anche il ripristino dell'errore è fallito, pertanto la rete è disabilitata.\nSi potrebbe voler riavviare Tails e disabilitare l'oscuramento dell'indirizzo MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1596,10 +1597,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Memoria insufficiente per controllare gli aggiornamenti.</b> \n\nAssicurarsi che il sistema soddisfi i prerequisiti necessari per eseguire Tails.\nVedi file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nProva a riavviare Tails per ricontrollare la presenza di aggiornamenti.\n\nOppure esegui un aggiornamento manuale.\nConsulta https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "errore:"
@@ -2321,10 +2322,6 @@ msgstr "Reinstalla (elimina tutti i dati)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ja.po b/ja.po
index ad9985d69a..e28b958c94 100644
--- a/ja.po
+++ b/ja.po
@@ -33,9 +33,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-09 15:54+0000\n"
-"Last-Translator: Kaede\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -249,8 +249,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr " {name} {version}に手動でアップグレードする必要があります。\n\nこの新しいバージョンの詳細については、{details_url}にアクセスしてください\n\n{explanation} により、デバイスをこの新しいバージョンに自動的にアップグレードすることはできません。\n\n手動アップグレードの方法については、https://tai… をご覧ください。"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1168,7 +1168,7 @@ msgstr "Talis 永続的ボリュームをセットアップ"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "エラー"
@@ -1584,6 +1584,7 @@ msgid ""
msgstr "MAC スプーフィングが、ネットワークカード ${nic_name} (${nic}) のために失敗しました。エラー回復も失敗したので、ネットワーク能力は全て無効化されます。\nTails を再起動して、 MAC スプーフィーングを無効化したいかもしれません。"
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1593,10 +1594,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>アップグレードの確認に十分なメモリが利用できません。</b>\n\nこのシステムが Tails の動作する要件を満たしているか確認してください。\nSee file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n をご覧ください。\n\nTails を再起動してから、もう一度アップグレードを確認してください。\n\nまたは、手動でアップグレードを行ってください。\nhttps://tails.bo… \nをご覧ください。"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "エラー:"
@@ -2318,10 +2319,6 @@ msgstr "再インストール(全てのデータを消去)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ka.po b/ka.po
index 87684c0ff3..8c7358df25 100644
--- a/ka.po
+++ b/ka.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Georgian (http://www.transifex.com/otf/torproject/language/ka/)\n"
"MIME-Version: 1.0\n"
@@ -226,8 +226,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>თქვენ ხელით უნდა განაახლოთ ვერსიაზე {name} {version}.</b>\n\nვრცლად, ამ ახალი ვერსიის შესახებ, იხილეთ {details_url}\n\nშეუძლებელია თქვენი მოწყობილობის ავტომატური განახლება ამ ახალ ვერსიაზე: {explanation}.\n\nვრცლად, ხელით განახლების შესახებ, იხილეთ https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1145,7 +1145,7 @@ msgstr "Tails-ის მუდმივი მეხსიერების გ
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "შეცდომა"
@@ -1563,6 +1563,7 @@ msgid ""
msgstr "MAC-მისამართის გადაკეთება ვერ მოხერხდა ქსელის დაფისთვის ${nic_name} (${nic}). ვერც აღდგენა მოხერხდა შეცდომის შემდეგ, ასე რომ ყველა ქსელი გათიშულია.\nშესაძლოა ამჯობინოთ Tails-ის ხელახლა გაშვება და MAC-მისამართის გადაკეთების გათიშვა."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1572,10 +1573,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>მეხსიერება არასაკმარისია განახლებებზე შემოწმებისთვის.</b>\n\nდარწმუნდით, რომ ეს სისტემა აკმაყოფილებს საჭირო მოთხოვნებს Tails-ის გასაშვებად.\nიხილეთ file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nსცადეთ Tails-ის ხელახლა გაშვება განახლებების შემოწმებისთვის.\n\nან ხელით განაახლეთ.\nიხილეთ https://tails.boum.org/doc/first_steps/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "შეცდომა:"
@@ -2297,10 +2298,6 @@ msgstr "ხელახლა დაყენება (ყველა მო
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "ყველა უფლება დაცულია © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/kab.po b/kab.po
index 192d2aef68..867af10820 100644
--- a/kab.po
+++ b/kab.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Kabyle (http://www.transifex.com/otf/torproject/language/kab/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/kk.po b/kk.po
index 5b9fe15534..191abda2a7 100644
--- a/kk.po
+++ b/kk.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Kazakh (http://www.transifex.com/otf/torproject/language/kk/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr "Tails тұрақты көлемін орнатыңыз"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Қате"
@@ -1562,6 +1562,7 @@ msgid ""
msgstr "${nic_name} желілік карта үшін MAC спуфинг сәтсіз аяқталды (${nic}). Қатені қалпына келтіру де сәтсіз болды, сондықтан барлық желілер өшірілген.\nҚалдықтарды қайта іске қосуды және MAC спуфингін өшіруді қалауыңыз мүмкін."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "Қате:"
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/km.po b/km.po
index be29317ebe..f4997fd42f 100644
--- a/km.po
+++ b/km.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Khmer (http://www.transifex.com/otf/torproject/language/km/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr "រៀបចំកម្រិតសំឡេងថេររ
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "កំហុស"
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "កំហុស៖"
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/kn.po b/kn.po
index c29bbb02c1..76f8116a28 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 11:43+0000\n"
-"Last-Translator: Yogesh K S <yogesh(a)karnatakaeducation.org.in>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "ದೋಷ"
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ko.po b/ko.po
index df00972647..4027257704 100644
--- a/ko.po
+++ b/ko.po
@@ -17,8 +17,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Korean (http://www.transifex.com/otf/torproject/language/ko/)\n"
"MIME-Version: 1.0\n"
@@ -233,8 +233,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>{name} {version}로 수동 업그레이드를 수행해야 합니다.</b>\n\n이 새 버전에 대한 자세한 내용을 보려면 {details_url}로 이동합니다\n\n디바이스를 이 새 버전 {explanation}로 자동 업그레이드할 수 없습니다.\n\n수동 업그레이드를 수행하는 방법에 대해 알아보려면 https://tails.boum.org/doc/upgrade/#manual로 이동합니다"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1152,7 +1152,7 @@ msgstr "Talis의 영구적 볼륨을 설정"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "오류"
@@ -1568,6 +1568,7 @@ msgid ""
msgstr "네트워크 카드 ${nic_name} (${nic}) 의 MAC 스푸핑이 실패했습니다. 오류복구도 실패했기 때문에 모든 네트워킹이 비활성화 되었습니다.\nTails를 다시 키고 MAC 위장을 비활성화하실 수 있습니다."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1577,10 +1578,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>메모리가 부족하여 업그레이드를 확인할 수 없습니다.</b>\n\n이 시스템이 Tails 실행에 필요한 요구 사항을 충족하는지 확인합니다.\nfile:///usr/share/doc/tails/website/doc/about/requirements.en.html을 참조합니다.\n\nTails를 다시 시작하여 업그레이드를 다시 확인합니다.\n\n또는 수동 업그레이드를 수행합니다.\nhttps://tails.boum.org/doc/upgrade#manual을 참조하세요."
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "오류:"
@@ -2302,10 +2303,6 @@ msgstr "재설치하기 (모든 데이터를 삭제)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/lt.po b/lt.po
index c3ff39465a..117c523374 100644
--- a/lt.po
+++ b/lt.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Lithuanian (http://www.transifex.com/otf/torproject/language/lt/)\n"
"MIME-Version: 1.0\n"
@@ -227,7 +227,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1146,7 +1146,7 @@ msgstr "Nustatyti Tails ilgalaikį tomą"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Klaida"
@@ -1568,6 +1568,7 @@ msgid ""
msgstr "MAC klastojimas tinklo plokštei ${nic_name} (${nic}) nepavyko. Klaidos atkūrimas taip pat patyrė nesėkmę, taigi, visas darbas tinkle yra išjungtas.\nJūs galite pageidauti iš naujo paleisti Tails ir išjungti MAC klastojimą."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1577,10 +1578,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "klaida:"
@@ -2302,10 +2303,6 @@ msgstr "Įdiegti iš naujo (ištrinti visus duomenis)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Autorių teisės © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/lv.po b/lv.po
index 6a56cb803b..4c5fe2fcbf 100644
--- a/lv.po
+++ b/lv.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Latvian (http://www.transifex.com/otf/torproject/language/lv/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr "Iestatīt Tails pastāvības sējumu"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Kļūda"
@@ -1564,6 +1564,7 @@ msgid ""
msgstr "Tīkla kartei ${nic_name} (${nic}) nesekmīga MAC izlikšanās. Kļūdu atkopšana arī bija nesekmīga, tāpēc visa tīklošana tika atspējota.\nIespējams, ka izvēlēsities pārstartēt Tails un atspējot MAC izlikšanos."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "kļūda:"
@@ -2298,10 +2299,6 @@ msgstr "Pārinstalēt (dzēst visus datus)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/mk.po b/mk.po
index 7a3a95a029..ccce203f04 100644
--- a/mk.po
+++ b/mk.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Macedonian (http://www.transifex.com/otf/torproject/language/mk/)\n"
"MIME-Version: 1.0\n"
@@ -228,8 +228,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Треба да направите рачна надградба во {name} {version}. </b>\n\nЗа повеќе информации за новата верзија, одете во {details_url}\n\nНе е можно автоматско надградување на вашиот уред во оваа нова верзија: {explanation}.\n\nЗа да научите како да направите рачна надградба, одете на https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1147,7 +1147,7 @@ msgstr "Поставување на постојан простор на Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Грешка"
@@ -1565,6 +1565,7 @@ msgid ""
msgstr "MAC спуфингот не успеа за мрежната картичка ${nic_name} (${nic}). Враќањето на грешката исто така не успеа па целото мрежно поврзување беше оневозможено.\nМожеби повеќе ќе сакате повторно да го стартувате Tails и да го оневозможите MAC спуфингот. "
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1574,10 +1575,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Нема доволно достапна меморија за проверка за надградби.</b>\n\nБидете сигурни дека овој систем ги задоволува барањата за работење на Tails.\nВидете file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nОбидете се повторно да го стартувате Tails за повторно да проверите за надградби.\n\nИли направете рачна надградба.\nВидете https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "грешка:"
@@ -2299,10 +2300,6 @@ msgstr "Преинсталирај (избриши ги сите податоц
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Авторски права © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ml.po b/ml.po
index 3dcdeaf7fe..e643f91d12 100644
--- a/ml.po
+++ b/ml.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Malayalam (http://www.transifex.com/otf/torproject/language/ml/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr "സ്ഥിരമായ ഒരു ടൈൽസ് വോളിയം
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "പിശക്"
@@ -1562,6 +1562,7 @@ msgid ""
msgstr "നെറ്റുവർക് കാർഡിന്റെ {nic_name} ($ {nic}) MAC സ്പൂഫിംഗ് പരാജയപ്പെട്ടു, പിശക് വീണ്ടെടുക്കലും പരാജയപ്പെട്ടതിനാൽ എല്ലാ നെറ്റ്വർക്കിംഗും പ്രവർത്തനരഹിതമാക്കി.\nടൈൽസ് പുനരാരംഭിക്കാനും MAC സ്പൂഫിംഗ് അപ്രാപ്തമാക്കാനും നിങ്ങൾ താൽപ്പര്യപ്പെട്ടേക്കാം."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "പിശക്:"
@@ -2296,10 +2297,6 @@ msgstr "വീണ്ടും ഇൻസ്റ്റാൾ ചെയ്യുക
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "പകർപ്പവകാശം © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/mr.po b/mr.po
index a6e2a1056d..be7b1dcfc9 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 08:49+0000\n"
-"Last-Translator: Prachi Joshi <josprachi(a)yahoo.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "त्रुटी"
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr "पुन्हा इन्स्टॉल करा (सर्व ड
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ms_MY.po b/ms_MY.po
index c57ef7cd35..9a71aa3beb 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/otf/torproject/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
@@ -227,7 +227,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1146,7 +1146,7 @@ msgstr "Persediaan volum berterusan Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Ralat"
@@ -1562,6 +1562,7 @@ msgid ""
msgstr "Perdayaan MAC gagal bagi kad rangkaian ${nic_name} (${nic}). Pemulihan ralat juga gagal maka semua perangkaian dilumpuhkan.\nAnda perlu memulakan semula Tails dan lumpuhkan perdayaan MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "ralat:"
@@ -2296,10 +2297,6 @@ msgstr "Pasang semula (padam semua data)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "HakCipta © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/my.po b/my.po
index 34340d79c0..2f3389ce8b 100644
--- a/my.po
+++ b/my.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Burmese (http://www.transifex.com/otf/torproject/language/my/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "ချို့ယွင်းချက်"
@@ -1558,6 +1558,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1567,10 +1568,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2292,10 +2293,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/nb.po b/nb.po
index 9d9460268e..a47a612429 100644
--- a/nb.po
+++ b/nb.po
@@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/otf/torproject/language/nb/)\n"
"MIME-Version: 1.0\n"
@@ -238,7 +238,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1157,7 +1157,7 @@ msgstr "Sett opp Tails med vedvarende lagring"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Feil"
@@ -1575,6 +1575,7 @@ msgid ""
msgstr "MAC-simulering mislyktes for nettverkskortet ${nic_name} (${nic}). Feilgjenopprettingen mislyktes også, så all nettverkstilknytning er avskrudd. \nDu foretrekker kanskje å starte Tails på nytt og skru avMAC-simulering."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1584,10 +1585,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "feil:"
@@ -2309,10 +2310,6 @@ msgstr "Reinstaller (slett all data)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Opphavsrett © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ne.po b/ne.po
index 1058329fbf..2d3ccbb676 100644
--- a/ne.po
+++ b/ne.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Nepali (http://www.transifex.com/otf/torproject/language/ne/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/nl.po b/nl.po
index ccad9fdc8b..399768ef48 100644
--- a/nl.po
+++ b/nl.po
@@ -37,8 +37,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Dutch (http://www.transifex.com/otf/torproject/language/nl/)\n"
"MIME-Version: 1.0\n"
@@ -253,8 +253,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>U zult een handmatige upgrade naar {name} {version} moeten uitvoeren.</b>\n\nGa voor meer informatie over deze nieuwe versie naar {details_url}.\n\nHet is niet mogelijk om uw apparaat automatisch naar deze nieuwe versie te upgraden: {explanation}.\n\nGa voor uitleg over een handmatige upgrade naar https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1172,7 +1172,7 @@ msgstr "Permanent volume voor Tails configureren"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Fout"
@@ -1590,6 +1590,7 @@ msgid ""
msgstr "MAC-spoofing voor netwerkkaart ${nic_name} (${nic}) is mislukt. Omdat foutherstel ook is mislukt, zijn alle netwerken uitgeschakeld.\nU kunt ervoor kiezen Tails opnieuw te starten en MAC-spoofing uit te schakelen."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1599,10 +1600,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "fout:"
@@ -2324,10 +2325,6 @@ msgstr "Herinstalleren (alle gegevens verwijderen)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/nl_BE.po b/nl_BE.po
index c34705a6aa..797f7dbdf1 100644
--- a/nl_BE.po
+++ b/nl_BE.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Dutch (Belgium) (http://www.transifex.com/otf/torproject/language/nl_BE/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Foutmelding:"
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "foutmelding:"
@@ -2296,10 +2297,6 @@ msgstr "Herinstalleren (Verwijder alle data)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/nn.po b/nn.po
index cd386290e7..47a53ed655 100644
--- a/nn.po
+++ b/nn.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/otf/torproject/language/nn/)\n"
"MIME-Version: 1.0\n"
@@ -226,7 +226,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1145,7 +1145,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Feil"
@@ -1563,6 +1563,7 @@ msgid ""
msgstr "MAC-forfalsking vart mislukka for nettverkskortet ${nic_name} (${nic}). Feilatterreisingi vart òg mislukka, so alle nettverksfunksjonar er slegne av.\nDet kan vera at du fyretrekker å starta um Halar og slå av MAC-forfalsking."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1572,10 +1573,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "feil:"
@@ -2297,10 +2298,6 @@ msgstr "Installer på nytt (slett alle dataa)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/oc.po b/oc.po
index fe109010a1..d969f7c27a 100644
--- a/oc.po
+++ b/oc.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/otf/torproject/language/oc/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/or.po b/or.po
index 2328d95b19..bc6cb42918 100644
--- a/or.po
+++ b/or.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Oriya (http://www.transifex.com/otf/torproject/language/or/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/pa.po b/pa.po
index 429a9f355f..3bd7185beb 100644
--- a/pa.po
+++ b/pa.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/otf/torproject/language/pa/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "ਗਲਤੀ:"
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "ਗਲਤੀ:"
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/pl.po b/pl.po
index a45a64fac6..e7f7cc3b10 100644
--- a/pl.po
+++ b/pl.po
@@ -27,8 +27,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Polish (http://www.transifex.com/otf/torproject/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -243,7 +243,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1162,7 +1162,7 @@ msgstr "Ustaw wolumen przechowywania danych Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Błąd"
@@ -1584,6 +1584,7 @@ msgid ""
msgstr "Spoofing MAC dla karty sieciowej ${nic_name} (${nic}) nie udał się. Próba usunięcia błędu także się nie powiodła, a zatem wszystkie połączenia sieciowe pozostają nieaktywne. Spróbuj uruchomić system Tails ponownie i wyłączyć spoofing MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1593,10 +1594,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "błąd:"
@@ -2318,10 +2319,6 @@ msgstr "Przeinstaluj (kasuje wszystkie dane)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/pt_BR.po b/pt_BR.po
index b40612fbb0..65851b9318 100644
--- a/pt_BR.po
+++ b/pt_BR.po
@@ -35,9 +35,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-06 17:40+0000\n"
-"Last-Translator: Igor Bk 13\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -251,8 +251,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Você deve fazer uma atualização manual para {name} {version}.</b>\n\nPara mais informações sobre esta nova versão, acesse {details_url}\n\nNão é possível atualizar automaticamente o seu dispositivo para esta nova versão: {explanation}.\n\nPara saber como fazer uma atualização manual, acesse https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1170,7 +1170,7 @@ msgstr "Configurar o volume persistente do Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Erro"
@@ -1588,6 +1588,7 @@ msgid ""
msgstr "A máscara de identidade MAC falhou para a placa de rede ${nic_name} (${nic}). A recuperação do erro também falhou, portanto, toda a navegação está desabilitada.\nTalvez seja melhor reiniciar o Tails e desabilitar a máscara de identidade MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1597,10 +1598,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Memória disponível insuficiente para procurar por atualizações.</b>\n\nConfira se esse sistema satisfaz os requerimentos para executar o Tails.\nVeja file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nTente reiniciar o Tails para procurar por atualizações novamente.\n\nOu faça uma atualização manual.\nVeja https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "erro:"
@@ -2322,10 +2323,6 @@ msgstr "Reinstalar (apagar todos os dados)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/pt_PT.po b/pt_PT.po
index 5304f33af5..acfece36f2 100644
--- a/pt_PT.po
+++ b/pt_PT.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/otf/torproject/language/pt_PT/)\n"
"MIME-Version: 1.0\n"
@@ -229,7 +229,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1148,7 +1148,7 @@ msgstr "Configurar o volume permanente do Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Erro"
@@ -1566,6 +1566,7 @@ msgid ""
msgstr "Mascarar endereço MAC para o cartão da rede ${nic_name} (${nic}) falhou. A recuperação de erro também falhou, por isso toda a rede está desativada.\nPode preferir reiniciar o Tails e desativar a máscara do endereço MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1575,10 +1576,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "erro:"
@@ -2300,10 +2301,6 @@ msgstr "Reinstalar (eliminar todos os dados)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Direitos de Autor © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ro.po b/ro.po
index ffe07e0b29..81cecda715 100644
--- a/ro.po
+++ b/ro.po
@@ -26,8 +26,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Romanian (http://www.transifex.com/otf/torproject/language/ro/)\n"
"MIME-Version: 1.0\n"
@@ -242,8 +242,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Ar trebui să faceți o actualizare manuală la {name} {version}.</b>\n\nPentru mai multe informații despre această nouă versiune, accesați {details_url}\n\nNu este posibilă actualizarea automată a dispozitivului la această nouă versiune: {explanation}.\n\nPentru a afla cum să efectuați o actualizare manuală, accesați https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1161,7 +1161,7 @@ msgstr "Configurare volum persistent Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Eroare"
@@ -1581,6 +1581,7 @@ msgid ""
msgstr "Falsificarea adresei MAC a eșuat pentru placa de rețea ${nic_name} (${nic}). Și recuperarea erorii a eșuat de asemenea astfel încât toate rețelele sunt dezactivate.\n\nAți putea alege să restartați Tails și să dezactivați falsificarea adresei MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1590,10 +1591,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "eroare:"
@@ -2315,10 +2316,6 @@ msgstr "Reinstalează (șterge toate datele)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ru.po b/ru.po
index 994a0581a8..e36f455a4c 100644
--- a/ru.po
+++ b/ru.po
@@ -37,8 +37,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Russian (http://www.transifex.com/otf/torproject/language/ru/)\n"
"MIME-Version: 1.0\n"
@@ -253,7 +253,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1172,7 +1172,7 @@ msgstr "Установить постоянное хранилище Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Ошибка"
@@ -1594,6 +1594,7 @@ msgid ""
msgstr "MAC-адрес сетевой карты ${nic_name} (${nic}) подменить не удалось. Не сработало и восстановление после ошибки, и поэтому весь сетевой сервис полностью отключен.\nВозможно, вам придется перезагрузить Tails и отключить режим подмены MAC-адреса. "
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1603,10 +1604,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "ошибка:"
@@ -2328,10 +2329,6 @@ msgstr "Переустановить (стереть все данные)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/si.po b/si.po
index 72c2179691..6e4c49e076 100644
--- a/si.po
+++ b/si.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Sinhala (http://www.transifex.com/otf/torproject/language/si/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/si_LK.po b/si_LK.po
index e246f597c0..0f568d44f7 100644
--- a/si_LK.po
+++ b/si_LK.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/otf/torproject/language/si_LK/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr "Tails ස්ථාවර වෙළුම පිහිටුවන්න.
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "දෝෂයකි"
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/sk.po b/sk.po
index d3c5af51e6..8d61876c31 100644
--- a/sk.po
+++ b/sk.po
@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Slovak (http://www.transifex.com/otf/torproject/language/sk/)\n"
"MIME-Version: 1.0\n"
@@ -232,7 +232,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1151,7 +1151,7 @@ msgstr "Nastavenie trvalého oddielu Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Chyba"
@@ -1573,6 +1573,7 @@ msgid ""
msgstr "Predstieranie MAC adresy - MAC spoofing zlyhalo pre sieťovú kartu ${nic_name} (${nic}). Obnova po chybe taktiež zlyhala, takže všetky siete sú neaktívne.\nMožno by ste mali dať prednosť reštartovaniu Tails a vypnúť predstieranie MAC adresy."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1582,10 +1583,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "chyba:"
@@ -2307,10 +2308,6 @@ msgstr "Preinštalovať (zmazať všetky dáta)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/sl.po b/sl.po
index 79429111b6..17e252540f 100644
--- a/sl.po
+++ b/sl.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Slovenian (http://www.transifex.com/otf/torproject/language/sl/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr "Nastavitve trajnega nosilca Sledi"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Napaka"
@@ -1565,6 +1565,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1574,10 +1575,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "napaka:"
@@ -2299,10 +2300,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/son.po b/son.po
index fea0e71fff..1d0fa73a4f 100644
--- a/son.po
+++ b/son.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Songhay (http://www.transifex.com/otf/torproject/language/son/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1558,6 +1558,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1567,10 +1568,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2292,10 +2293,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/sq.po b/sq.po
index af6c1b5ad2..8cd1c8c7d7 100644
--- a/sq.po
+++ b/sq.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 09:32+0000\n"
-"Last-Translator: Besnik Bleta <besnik(a)programeshqip.org>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -227,8 +227,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Duhet të bëni një përmirësim dorazi me {name} {version}.</b>\n\nPër më tepër të dhëna mbi këtë version të ri, shkoni te {details_url}\n\nS’është e mundur të përmirësohet automatikisht pajisja juaj me këtë version të ri: {explanation}.\n\nQë të mësoni se si të bëni një përmirësim dorazi, shkoni te https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1146,7 +1146,7 @@ msgstr "Ujdisni vëllim të qëndrueshëm Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Gabim"
@@ -1564,6 +1564,7 @@ msgid ""
msgstr "Dështoi maskimi i adresës MAC për kartën e rrjetit ${nic_name} (${nic}). Dështoi edhe rimarrja pas gabimi, ndaj është çaktivizuar krejt punimi në rrjet.\nMund të parapëlqenit të rinisni Tails dhe të çaktivizoni maskim adrese MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "Pa kujtesë të mjaftueshme të passhme për të kontrolluar për përmirësime.\n\nSigurohuni se ky sistem i plotëson domosdoshmëritë për xhirim të Tails.\nShihni kartelën:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nQë të rikontrollohet për përmirësime, provoni të rinisni Tails.\n\nOse bëni një përmirësim dorazi.\nShihni https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "gabim:"
@@ -2298,10 +2299,6 @@ msgstr "Riinstaloje (fshi krejt të dhënat)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Të drejta kopjimi © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/sr.po b/sr.po
index b2bca1ee50..f11222c6c1 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Serbian (http://www.transifex.com/otf/torproject/language/sr/)\n"
"MIME-Version: 1.0\n"
@@ -227,7 +227,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1146,7 +1146,7 @@ msgstr "Podesite Tails trajnu particiju"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Greška"
@@ -1566,6 +1566,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1575,10 +1576,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "greška:"
@@ -2300,10 +2301,6 @@ msgstr "Reinstaliraj (svi podaci biće obrisani)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/sv.po b/sv.po
index c00ca8633b..40f95b7b3d 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-08 21:41+0000\n"
-"Last-Translator: Jonatan Nyberg <jonatan.nyberg.karl(a)gmail.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -240,8 +240,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Du bör göra en manuell uppgradering till {name} {version}.</b>\n\nMer information om den här nya versionen finns på {details_url}\n\nDet är inte möjligt att automatiskt uppgradera din enhet till den här nya versionen: {explanation}.\n\nFör att lära dig hur man gör en manuell uppgradering, gå till https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1159,7 +1159,7 @@ msgstr "Konfigurera bestående lagring för Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Fel"
@@ -1577,6 +1577,7 @@ msgid ""
msgstr "Det gick inte att fejka MAC för nätverkskort ${nic_name} (${nic}). Dessutom misslyckades felåterhämtningen, så alla nätverk har inaktiverats.\nDu vill nog starta om Tails och inaktivera fejkning av MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1586,10 +1587,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Inte tillräckligt med tillgängligt minne för att leta efter uppdateringar.</b>\n\nKontrollera så att detta system uppfyller kraven för att köra Tails. \nSe file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nStarta om Tails för att söka efter uppdateringar igen.\n\nEller gör en manuell uppdatering.\nSe https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "fel:"
@@ -2311,10 +2312,6 @@ msgstr "Installera om (ta bort all data)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/sw.po b/sw.po
index 53f92ca6e5..0c91756367 100644
--- a/sw.po
+++ b/sw.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-09 10:46+0000\n"
-"Last-Translator: Zaituni Njovu <zaituni(a)zainafoundationtz.org>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "kosa"
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ta.po b/ta.po
index b35c93a2ba..5ec22e3753 100644
--- a/ta.po
+++ b/ta.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Tamil (http://www.transifex.com/otf/torproject/language/ta/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "பிழை"
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "காப்புரிமை © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/tails.pot b/tails.pot
index 5cb9984e42..99f470cb8c 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: English (http://www.transifex.com/otf/torproject/language/en/)\n"
"MIME-Version: 1.0\n"
@@ -223,8 +223,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>You should do a manual upgrade to {name} {version}.</b>\n\nFor more information about this new version, go to {details_url}\n\nIt is not possible to automatically upgrade your device to this new version: {explanation}.\n\nTo learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr "<b>You should do a manual upgrade to {name} {version}.</b>\n\nFor more information about this new version, go to {details_url}\n\nIt is not possible to automatically upgrade your device to this new version: {explanation}.\n\nTo learn how to do a manual upgrade, go to {manual_upgrade_url}"
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1142,7 +1142,7 @@ msgstr "Setup Tails persistent volume"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Error"
@@ -1560,6 +1560,7 @@ msgid ""
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."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/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/upgrade#manual"
+"See {manual_upgrade_url}"
+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 {manual_upgrade_url}"
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "error:"
@@ -2294,10 +2295,6 @@ msgstr "Reinstall (delete all data)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/te.po b/te.po
index b9a9f376a5..4029742dc2 100644
--- a/te.po
+++ b/te.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Telugu (http://www.transifex.com/otf/torproject/language/te/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "లోపం"
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/th.po b/th.po
index a99dadf03e..e556d72097 100644
--- a/th.po
+++ b/th.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Thai (http://www.transifex.com/otf/torproject/language/th/)\n"
"MIME-Version: 1.0\n"
@@ -229,7 +229,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1148,7 +1148,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "ผิดพลาด"
@@ -1564,6 +1564,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "ผิดพลาด"
@@ -2298,10 +2299,6 @@ msgstr "ติดตั้งใหม่ (ลบข้อมูลทั้ง
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/tr.po b/tr.po
index 83ab0ddf64..4d482ed933 100644
--- a/tr.po
+++ b/tr.po
@@ -32,9 +32,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-06 15:37+0000\n"
-"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -248,8 +248,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>{name} {version} sürümüne el ile güncelleyebilirsiniz.</b>\n\nBu sürüm hakkında ayrıntılı bilgi almak için {details_url} adresine bakabilirsiniz\n\nAygıtınız bu sürüme otomatik olarak güncellenemez: {explanation}.\n\nEl ile güncellemenin nasıl yapılacağını öğrenmek için https://tails.boum.org/doc/upgrade/#manual adresine bakabilirsiniz"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1167,7 +1167,7 @@ msgstr "Tails kalıcı depolama birimini kur"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Hata"
@@ -1585,6 +1585,7 @@ msgid ""
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:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1594,10 +1595,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Güncellemeleri denetlemek için yeterli bellek yok.</b>\n\nBu sistemin Tails yazılımının gereksinimlerini karşıladığına emin olun.\nBilgiler: file:///usr/share/doc/tails/website/doc/about/requirements.tr.html\n\nGüncellemeleri denetlemek için Tails yazılımını yeniden başlatmayı deneyin.\n\nYa da el ile güncelleyin.\nBilgiler: https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "hata:"
@@ -2319,10 +2320,6 @@ msgstr "Yeniden kur (tüm verileri sil)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Telif Hakkı © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/uk.po b/uk.po
index ec4791b44f..d8839a8fef 100644
--- a/uk.po
+++ b/uk.po
@@ -18,8 +18,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Ukrainian (http://www.transifex.com/otf/torproject/language/uk/)\n"
"MIME-Version: 1.0\n"
@@ -234,7 +234,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1153,7 +1153,7 @@ msgstr "Встановити постійне сховище Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Помилка"
@@ -1575,6 +1575,7 @@ msgid ""
msgstr "Підміна MAC не вдалася для мережевої карти ${nic_name} (${nic}). Помилку не вдалося виправити, тому мережа повністю вимкнена.\nМожливо, ви віддасте перевагу перевантаженню Tails і вимкненню підміни MAC. "
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1584,10 +1585,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "помилка:"
@@ -2309,10 +2310,6 @@ msgstr "Перевстановити (вилучити всі дані)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Авторське право © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ur.po b/ur.po
index 9f5bc2975f..e25dea3be7 100644
--- a/ur.po
+++ b/ur.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Urdu (http://www.transifex.com/otf/torproject/language/ur/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "غلطی"
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/uz.po b/uz.po
index 6071c02d4e..4497a2abae 100644
--- a/uz.po
+++ b/uz.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Uzbek (http://www.transifex.com/otf/torproject/language/uz/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Xato"
@@ -1558,6 +1558,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1567,10 +1568,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2292,10 +2293,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/vi.po b/vi.po
index 8abe2241e3..978385cd93 100644
--- a/vi.po
+++ b/vi.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Vietnamese (http://www.transifex.com/otf/torproject/language/vi/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr "Cài đặt ổ đĩa bền vững của Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Lỗi"
@@ -1560,6 +1560,7 @@ msgid ""
msgstr "Việc giả MAC thất bại ở card mạng ${nic_name} (${nic}). Việc phục hồi lỗi này cũng thất bại nên tất cả mạng lưới bị vô hiệu.\nBạn nên tham khảo để khởi động lại Tails và vô hiệu hóa việc giả MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "lỗi:"
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/zh_CN.po b/zh_CN.po
index e8303d6d3b..eb3d17fedd 100644
--- a/zh_CN.po
+++ b/zh_CN.po
@@ -38,9 +38,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-07 08:43+0000\n"
-"Last-Translator: Scott Rhodes <starring169(a)gmail.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -254,7 +254,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1173,7 +1173,7 @@ msgstr "设置 Tails 永久卷"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "错误"
@@ -1589,6 +1589,7 @@ msgid ""
msgstr "MAC 伪装对 ${nic_name} (${nic}) 失败。错误恢复也一同失败,所以所有网络已被禁用。\n您可能会选择重启 Tails 并禁用 MAC 伪装。"
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1598,10 +1599,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "错误:"
@@ -2323,10 +2324,6 @@ msgstr "重新安装(删除所有数据)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "© 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/zh_HK.po b/zh_HK.po
index 5720b58220..dff89c0e20 100644
--- a/zh_HK.po
+++ b/zh_HK.po
@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/otf/torproject/language/zh_HK/)\n"
"MIME-Version: 1.0\n"
@@ -228,7 +228,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1147,7 +1147,7 @@ msgstr "設定Tails持續磁碟區"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "錯誤"
@@ -1563,6 +1563,7 @@ msgid ""
msgstr "網絡咭${nic_name} (${nic})進行MAC偽裝失敗。而進行還原時也失敗,故佢暫時被停用。\n你可能要將Tails重新啟動並停用MAC偽裝。"
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1572,10 +1573,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "錯誤:"
@@ -2297,10 +2298,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/zh_TW.po b/zh_TW.po
index 6b7b5f048e..6749bebbdd 100644
--- a/zh_TW.po
+++ b/zh_TW.po
@@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/otf/torproject/language/zh_TW/)\n"
"MIME-Version: 1.0\n"
@@ -238,7 +238,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1157,7 +1157,7 @@ msgstr "設定 Tails 永久性磁碟區"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "錯誤"
@@ -1573,6 +1573,7 @@ msgid ""
msgstr "網路卡 ${nic_name} (${nic}) 之實體位址偽裝失敗,且錯誤還原過程亦失敗了,所以所有網路連線功能皆被關閉了。\n您可能要將 Tails 重新啟動,並且停用網路卡實體位址偽裝功能。"
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1582,10 +1583,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "錯誤:"
@@ -2307,10 +2308,6 @@ msgstr "重新安裝(刪除所有資料)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
1
0

11 Dec '20
commit f1df9d0c339554d24068be98fe538540ac539d27
Author: hiro <hiro(a)torproject.org>
Date: Fri Dec 11 10:30:01 2020 +0100
Add .onion to btc payserver form
---
content/cryptocurrency/contents.lr | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/content/cryptocurrency/contents.lr b/content/cryptocurrency/contents.lr
index 0d50c208..06dc33db 100644
--- a/content/cryptocurrency/contents.lr
+++ b/content/cryptocurrency/contents.lr
@@ -41,6 +41,10 @@ body:
</div>
<input type="image" class="submit" name="submit" src="https://btcpay.torproject.net/img/paybutton/pay.svg" style="width:209px" alt="Pay with BtcPay, Self-Hosted Bitcoin Payment Processor">
</form>
+ <p>
+ Donate using the .onion address
+ </p>
+ <a href="http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion">http://3rk3juzfjgs6tpn57betff4yrnuprd72xdzn6tmgf4rbdwnjy3dapoqd.onion</a>
</div>
<div class="preamble">
<p>
1
0

[translation/tails-misc_release] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
by translation@torproject.org 11 Dec '20
by translation@torproject.org 11 Dec '20
11 Dec '20
commit 5e76cd2cc47adff6b55bfba7771dc8bcfa51882f
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Dec 11 09:17:05 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
---
ach.po | 17 +++++++----------
af.po | 17 +++++++----------
ast.po | 15 ++++++---------
bg.po | 17 +++++++----------
bn.po | 17 +++++++----------
br.po | 15 ++++++---------
ca.po | 17 +++++++----------
cs.po | 17 +++++++----------
el.po | 17 +++++++----------
en_GB.po | 17 +++++++----------
es_MX.po | 15 ++++++---------
et.po | 17 +++++++----------
eu.po | 15 ++++++---------
fa.po | 17 +++++++----------
fi.po | 15 ++++++---------
fr.po | 19 ++++++++-----------
fy.po | 17 +++++++----------
ga.po | 17 +++++++----------
gd.po | 17 +++++++----------
gl.po | 17 +++++++----------
he.po | 23 ++++++++++-------------
hi.po | 19 ++++++++-----------
hr.po | 21 +++++++++------------
hu.po | 17 +++++++----------
hy.po | 17 +++++++----------
ia.po | 17 +++++++----------
id.po | 17 +++++++----------
is.po | 15 ++++++---------
it.po | 15 ++++++---------
ja.po | 15 ++++++---------
ka.po | 17 +++++++----------
kab.po | 15 ++++++---------
km.po | 17 +++++++----------
kn.po | 19 ++++++++-----------
ko.po | 17 +++++++----------
lt.po | 15 ++++++---------
lv.po | 17 +++++++----------
mk.po | 19 ++++++++-----------
ml.po | 17 +++++++----------
mr.po | 19 ++++++++-----------
ms_MY.po | 15 ++++++---------
my.po | 17 +++++++----------
nb.po | 17 +++++++----------
ne.po | 17 +++++++----------
nl.po | 17 +++++++----------
nl_BE.po | 17 +++++++----------
nn.po | 15 ++++++---------
oc.po | 15 ++++++---------
or.po | 15 ++++++---------
pa.po | 17 +++++++----------
pt_BR.po | 19 ++++++++-----------
pt_PT.po | 17 +++++++----------
ro.po | 15 ++++++---------
si.po | 17 +++++++----------
si_LK.po | 15 ++++++---------
sk.po | 15 ++++++---------
sl.po | 15 ++++++---------
son.po | 17 +++++++----------
sq.po | 19 ++++++++-----------
sv.po | 15 ++++++---------
te.po | 17 +++++++----------
uk.po | 15 ++++++---------
ur.po | 17 +++++++----------
uz.po | 17 +++++++----------
zh_CN.po | 15 ++++++---------
zh_TW.po | 15 ++++++---------
66 files changed, 452 insertions(+), 650 deletions(-)
diff --git a/ach.po b/ach.po
index 1530b4ddf7..e198e46123 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Acoli (http://www.transifex.com/otf/torproject/language/ach/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/af.po b/af.po
index db5cd42292..ffff3f776a 100644
--- a/af.po
+++ b/af.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Afrikaans (http://www.transifex.com/otf/torproject/language/af/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ast.po b/ast.po
index 59b2a13e08..b32c25e729 100644
--- a/ast.po
+++ b/ast.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Asturian (http://www.transifex.com/otf/torproject/language/ast/)\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/bg.po b/bg.po
index b861efaae5..a1265ddd61 100644
--- a/bg.po
+++ b/bg.po
@@ -19,8 +19,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Bulgarian (http://www.transifex.com/otf/torproject/language/bg/)\n"
"MIME-Version: 1.0\n"
@@ -235,7 +235,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1154,7 +1154,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1572,6 +1572,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1581,10 +1582,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2306,10 +2307,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/bn.po b/bn.po
index 1bfb5e4dcf..bf15ca1855 100644
--- a/bn.po
+++ b/bn.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Bengali (http://www.transifex.com/otf/torproject/language/bn/)\n"
"MIME-Version: 1.0\n"
@@ -226,7 +226,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1145,7 +1145,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1563,6 +1563,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1572,10 +1573,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2297,10 +2298,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/br.po b/br.po
index b9a0b6373b..1d75619e0c 100644
--- a/br.po
+++ b/br.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Breton (http://www.transifex.com/otf/torproject/language/br/)\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1567,6 +1567,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1576,10 +1577,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2301,10 +2302,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ca.po b/ca.po
index 7a09892b86..3a1bcf4b57 100644
--- a/ca.po
+++ b/ca.po
@@ -25,8 +25,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Catalan (http://www.transifex.com/otf/torproject/language/ca/)\n"
"MIME-Version: 1.0\n"
@@ -241,7 +241,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1160,7 +1160,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Error"
@@ -1578,6 +1578,7 @@ msgid ""
msgstr "El falsejament de la identitat de l'adreça MAC ha fallat per la targeta de xarxa ${nic_name} (${nic}). També ha fallat la recuperació d'errors i tot el treball en xarxa està desactivat.\nPotser preferireu reiniciar el Tails i desactivar el falsejament de l'adreça MAC "
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1587,10 +1588,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "Hi ha hagut un error:"
@@ -2312,10 +2313,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/cs.po b/cs.po
index cf3b8ce39b..dbe69e344e 100644
--- a/cs.po
+++ b/cs.po
@@ -24,8 +24,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n"
"MIME-Version: 1.0\n"
@@ -240,7 +240,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1159,7 +1159,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Chyba"
@@ -1581,6 +1581,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1590,10 +1591,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "chyba:"
@@ -2315,10 +2316,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/el.po b/el.po
index 9da52657f7..38b553bb0d 100644
--- a/el.po
+++ b/el.po
@@ -30,8 +30,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
"MIME-Version: 1.0\n"
@@ -246,7 +246,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1165,7 +1165,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1583,6 +1583,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1592,10 +1593,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2317,10 +2318,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/en_GB.po b/en_GB.po
index 4089c5f77f..9280c2b426 100644
--- a/en_GB.po
+++ b/en_GB.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/otf/torproject/language/en_GB/)\n"
"MIME-Version: 1.0\n"
@@ -227,7 +227,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1146,7 +1146,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1564,6 +1564,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2298,10 +2299,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/es_MX.po b/es_MX.po
index fa8697159d..d7ed4218e6 100644
--- a/es_MX.po
+++ b/es_MX.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/otf/torproject/language/es_MX/)\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/et.po b/et.po
index 1c360a5fc7..77c6c1cb01 100644
--- a/et.po
+++ b/et.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Estonian (http://www.transifex.com/otf/torproject/language/et/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/eu.po b/eu.po
index db0dad89a7..d2279e1968 100644
--- a/eu.po
+++ b/eu.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Basque (http://www.transifex.com/otf/torproject/language/eu/)\n"
@@ -230,7 +230,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1149,7 +1149,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1567,6 +1567,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1576,10 +1577,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2301,10 +2302,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/fa.po b/fa.po
index c0f2d79ac9..0436043a0f 100644
--- a/fa.po
+++ b/fa.po
@@ -36,8 +36,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Persian (http://www.transifex.com/otf/torproject/language/fa/)\n"
"MIME-Version: 1.0\n"
@@ -252,7 +252,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1171,7 +1171,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1589,6 +1589,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1598,10 +1599,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2323,10 +2324,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/fi.po b/fi.po
index a596d1af97..9303b465c4 100644
--- a/fi.po
+++ b/fi.po
@@ -19,7 +19,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Finnish (http://www.transifex.com/otf/torproject/language/fi/)\n"
@@ -235,7 +235,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1154,7 +1154,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Virhe"
@@ -1572,6 +1572,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1581,10 +1582,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "virhe:"
@@ -2306,10 +2307,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/fr.po b/fr.po
index ca1618626a..c3a405d284 100644
--- a/fr.po
+++ b/fr.po
@@ -40,7 +40,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-06 10:09+0000\n"
"Last-Translator: Curtis Baltimore <curtisbaltimore(a)protonmail.com>\n"
"Language-Team: French (http://www.transifex.com/otf/torproject/language/fr/)\n"
@@ -256,8 +256,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Vous devriez mettre à niveau manuellement vers {name} {version}.</b>\n\nPour plus de précisions sur cette nouvelle version, visitez {details_url}.\n\nIl n’est pas possible de mettre votre appareil automatiquement à niveau vers cette nouvelle version : {explanation}.\n\nPour apprendre à faire une mise à niveau manuelle, visitez https://tails.boum.org/doc/upgrade/index.fr.html#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1175,7 +1175,7 @@ msgstr "Configurer le volume persistant de Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Erreur"
@@ -1593,6 +1593,7 @@ msgid ""
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:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1602,10 +1603,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Il n’y a pas assez de mémoire disponible pour vérifier la présence de mises à niveau.</b>\n\nAssurez-vous que ce système répond aux exigences d’exécution de Tails.\nConsultez file:///usr/share/doc/tails/website/doc/about/requirements.fr.html\n\nEssayez de redémarrer Tails pour revérifier la présence de mises à niveau.\n\nOu effectuez une mise à niveau manuelle.\nConsultez https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "erreur :"
@@ -2327,10 +2328,6 @@ msgstr "Réinstaller (supprimer toutes les données)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Tous droits réservés © 2009 à 2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/index.fr.html"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/fy.po b/fy.po
index 0da02cfc70..70233e9fa5 100644
--- a/fy.po
+++ b/fy.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Western Frisian (http://www.transifex.com/otf/torproject/language/fy/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ga.po b/ga.po
index 8d617b3328..30bf92f6fa 100644
--- a/ga.po
+++ b/ga.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Irish (http://www.transifex.com/otf/torproject/language/ga/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr "Socraigh imleabhar seasmhach Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Earráid"
@@ -1568,6 +1568,7 @@ msgid ""
msgstr "Theip ar dhallamullóg MAC ar chárta líonra ${nic_name} (${nic}). Theip ar athshlánú ón earráid freisin, agus díchumasaíodh líonrú go hiomlán dá bharr sin.\nB'fhéidir gurbh fhearr leat Tails a atosú agus dallamullóg MAC a dhíchumasú."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1577,10 +1578,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "earráid:"
@@ -2302,10 +2303,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/gd.po b/gd.po
index b659ffa110..b34fcb0aa9 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Gaelic, Scottish (http://www.transifex.com/otf/torproject/language/gd/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1564,6 +1564,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2298,10 +2299,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/gl.po b/gl.po
index 12daf48a41..0c9b73cea3 100644
--- a/gl.po
+++ b/gl.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Galician (http://www.transifex.com/otf/torproject/language/gl/)\n"
"MIME-Version: 1.0\n"
@@ -226,7 +226,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1145,7 +1145,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1563,6 +1563,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1572,10 +1573,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2297,10 +2298,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/he.po b/he.po
index ae77b491cc..7afb7d2439 100644
--- a/he.po
+++ b/he.po
@@ -17,9 +17,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-06 13:02+0000\n"
-"Last-Translator: Omer I.S. <omeritzicschwartz(a)gmail.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -233,8 +233,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>אתה צריך לעשות שדרוג ידני אל {name} {version}.</b>\n\nלעוד מידע אודות גרסה חדשה זו, לך אל {details_url}\n\nזה בלתי אפשרי לשדרג באופן אוטומטי את ההתקן שלך אל גרסה חדשה זו: {explanation}.\n\nכדי ללמוד כיצד לעשות בעצמך שדרוג ידני, לך אל https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1152,7 +1152,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "שגיאה"
@@ -1574,6 +1574,7 @@ msgid ""
msgstr "זיוף MAC נכשל עבור כרטיס הרשת ${nic_name} (${nic}). השבת השגיאה נכשלה אף היא כך שכל הרישות מושבת.\nאולי תעדיף להפעיל מחדש את Tails ולהשבית זיוף MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1583,10 +1584,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>אין מספיק זיכרון זמין כדי לבדוק אחר שדרוגים.</b>\n\nוודא שמערכת זו עומדת בדרישות להרצת Tails.\nראה file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nנסה להפעיל מחדש את Tails כדי לבדוק שוב אחר שדרוגים.\n\nאו עשה שדרוג ידני.\nראה https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "שגיאה:"
@@ -2308,10 +2309,6 @@ msgstr "התקן מחדש (מחק כל הנתונים)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "זכויות יוצרים © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/hi.po b/hi.po
index e62ef9906b..714bd2658f 100644
--- a/hi.po
+++ b/hi.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 10:53+0000\n"
-"Last-Translator: Karan S\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/hr.po b/hr.po
index 9494f0c1af..4f0a14565c 100644
--- a/hr.po
+++ b/hr.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Croatian (http://www.transifex.com/otf/torproject/language/hr/)\n"
"MIME-Version: 1.0\n"
@@ -226,8 +226,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Treba ručno nadograditi na {name} {version}.</b>\n\nZa daljnje informacije o ovoj novoj verziji, idi na {details_url}\n\nNije moguće automatski nadograditi uređaj na ovu novu verziju: {explanation}.\n\nSaznaj kako ručno nadograditi na https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1145,7 +1145,7 @@ msgstr "Postavi Tails trajni pogon"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Greška"
@@ -1565,6 +1565,7 @@ msgid ""
msgstr "MAC oponašanje nije uspjelo za mrežnu karticu ${nic_name} (${nic}). Oporavljanje od greške također nije uspjelo tako da je sav mrežni rad deaktiviran.\nPokušaj ponovno pokrenuti Tails i deaktivirati MAC oponašanje."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1574,10 +1575,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Nema dovoljno memorije za provjeru nadogradnji.</b>\n\nProvjeri, zadovoljava li ovaj sustav zahtjeve za pokretanje Tailsa.\nPogledaj file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nPokušaj ponovo pokrenuti Tails za ponovnu provjeru nadogradnji.\n\nIli nadogradi ručno.\nPogledaj https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "greška:"
@@ -2299,10 +2300,6 @@ msgstr "Instaliraj ponovo (obriši sve podatke)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Copyright © 2009. – 2018. tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/hu.po b/hu.po
index 7066daa1b9..650209de72 100644
--- a/hu.po
+++ b/hu.po
@@ -16,8 +16,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Hungarian (http://www.transifex.com/otf/torproject/language/hu/)\n"
"MIME-Version: 1.0\n"
@@ -232,7 +232,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1151,7 +1151,7 @@ msgstr "Tails tartós kötet telepítése"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Hiba"
@@ -1569,6 +1569,7 @@ msgid ""
msgstr "A MAC cím váltás a következő hálózati kártyán sikertelen volt: ${nic_name} (${nic}). A hibaelhárítás is sikertelen volt, úgyhogy a hálózati kártya le lett tiltva.\nÚjraindíthatja a Tails-t és letilthatja a MAC cím cserét."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1578,10 +1579,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "hiba:"
@@ -2303,10 +2304,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/hy.po b/hy.po
index 6de53468e3..0059ff4b68 100644
--- a/hy.po
+++ b/hy.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Armenian (http://www.transifex.com/otf/torproject/language/hy/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ia.po b/ia.po
index f12e45642c..ceb27f0528 100644
--- a/ia.po
+++ b/ia.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Interlingua (http://www.transifex.com/otf/torproject/language/ia/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/id.po b/id.po
index 6ea116497c..dd1ab174b9 100644
--- a/id.po
+++ b/id.po
@@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Indonesian (http://www.transifex.com/otf/torproject/language/id/)\n"
"MIME-Version: 1.0\n"
@@ -238,7 +238,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1157,7 +1157,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1573,6 +1573,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1582,10 +1583,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2307,10 +2308,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/is.po b/is.po
index 2ce06d1d8e..47e3fcd0f2 100644
--- a/is.po
+++ b/is.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Icelandic (http://www.transifex.com/otf/torproject/language/is/)\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/it.po b/it.po
index e78fb76587..2d65e4b526 100644
--- a/it.po
+++ b/it.po
@@ -34,7 +34,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-05 14:07+0000\n"
"Last-Translator: Random_R\n"
"Language-Team: Italian (http://www.transifex.com/otf/torproject/language/it/)\n"
@@ -250,7 +250,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1169,7 +1169,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Errore"
@@ -1587,6 +1587,7 @@ msgid ""
msgstr "L'oscuramento dell'indirizzo MAC è fallito per la scheda di rete ${nic_name} (${nic}). Anche il ripristino dell'errore è fallito, pertanto la rete è disabilitata.\nSi potrebbe voler riavviare Tails e disabilitare l'oscuramento dell'indirizzo MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1596,10 +1597,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "errore:"
@@ -2321,10 +2322,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ja.po b/ja.po
index 9cb0b04ab3..4de47b21d7 100644
--- a/ja.po
+++ b/ja.po
@@ -33,7 +33,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-09 15:54+0000\n"
"Last-Translator: Kaede\n"
"Language-Team: Japanese (http://www.transifex.com/otf/torproject/language/ja/)\n"
@@ -249,7 +249,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1168,7 +1168,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1584,6 +1584,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1593,10 +1594,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2318,10 +2319,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ka.po b/ka.po
index bfbf4eaa1c..19922f819e 100644
--- a/ka.po
+++ b/ka.po
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Georgian (http://www.transifex.com/otf/torproject/language/ka/)\n"
"MIME-Version: 1.0\n"
@@ -226,7 +226,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1145,7 +1145,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1563,6 +1563,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1572,10 +1573,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2297,10 +2298,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/kab.po b/kab.po
index 192d2aef68..394665f8f5 100644
--- a/kab.po
+++ b/kab.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Kabyle (http://www.transifex.com/otf/torproject/language/kab/)\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/km.po b/km.po
index 104fcabcbb..e0eccee8ee 100644
--- a/km.po
+++ b/km.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Khmer (http://www.transifex.com/otf/torproject/language/km/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "កំហុស"
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "កំហុស៖"
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/kn.po b/kn.po
index f1d9fe71b9..f4efc7e327 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 11:43+0000\n"
-"Last-Translator: Yogesh K S <yogesh(a)karnatakaeducation.org.in>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ko.po b/ko.po
index ca5ea26f9f..ba423154e1 100644
--- a/ko.po
+++ b/ko.po
@@ -17,8 +17,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Korean (http://www.transifex.com/otf/torproject/language/ko/)\n"
"MIME-Version: 1.0\n"
@@ -233,7 +233,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1152,7 +1152,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1568,6 +1568,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1577,10 +1578,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2302,10 +2303,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/lt.po b/lt.po
index 0e8eec7f81..3e8f224d96 100644
--- a/lt.po
+++ b/lt.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Lithuanian (http://www.transifex.com/otf/torproject/language/lt/)\n"
@@ -227,7 +227,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1146,7 +1146,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Klaida"
@@ -1568,6 +1568,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1577,10 +1578,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "klaida:"
@@ -2302,10 +2303,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/lv.po b/lv.po
index 7204b7d232..0ef1a0a9a6 100644
--- a/lv.po
+++ b/lv.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Latvian (http://www.transifex.com/otf/torproject/language/lv/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1564,6 +1564,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2298,10 +2299,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/mk.po b/mk.po
index 7a3a95a029..6583289f53 100644
--- a/mk.po
+++ b/mk.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Macedonian (http://www.transifex.com/otf/torproject/language/mk/)\n"
@@ -228,8 +228,8 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
-msgstr "<b>Треба да направите рачна надградба во {name} {version}. </b>\n\nЗа повеќе информации за новата верзија, одете во {details_url}\n\nНе е можно автоматско надградување на вашиот уред во оваа нова верзија: {explanation}.\n\nЗа да научите како да направите рачна надградба, одете на https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
+msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
msgid "New version available"
@@ -1147,7 +1147,7 @@ msgstr "Поставување на постојан простор на Tails"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Грешка"
@@ -1565,6 +1565,7 @@ msgid ""
msgstr "MAC спуфингот не успеа за мрежната картичка ${nic_name} (${nic}). Враќањето на грешката исто така не успеа па целото мрежно поврзување беше оневозможено.\nМожеби повеќе ќе сакате повторно да го стартувате Tails и да го оневозможите MAC спуфингот. "
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1574,10 +1575,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
-msgstr "<b>Нема доволно достапна меморија за проверка за надградби.</b>\n\nБидете сигурни дека овој систем ги задоволува барањата за работење на Tails.\nВидете file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nОбидете се повторно да го стартувате Tails за повторно да проверите за надградби.\n\nИли направете рачна надградба.\nВидете https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
+msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "грешка:"
@@ -2299,10 +2300,6 @@ msgstr "Преинсталирај (избриши ги сите податоц
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "Авторски права © 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ml.po b/ml.po
index c2885e0d82..7bb69e2142 100644
--- a/ml.po
+++ b/ml.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Malayalam (http://www.transifex.com/otf/torproject/language/ml/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/mr.po b/mr.po
index d0af8c3e81..c9eef115aa 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: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 08:49+0000\n"
-"Last-Translator: Prachi Joshi <josprachi(a)yahoo.com>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ms_MY.po b/ms_MY.po
index 612f63915f..e3caf37c2a 100644
--- a/ms_MY.po
+++ b/ms_MY.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/otf/torproject/language/ms_MY/)\n"
@@ -227,7 +227,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1146,7 +1146,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/my.po b/my.po
index 2db04a8623..425e8aad41 100644
--- a/my.po
+++ b/my.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Burmese (http://www.transifex.com/otf/torproject/language/my/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1558,6 +1558,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1567,10 +1568,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2292,10 +2293,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/nb.po b/nb.po
index de72e8d9c2..9110f5bb1d 100644
--- a/nb.po
+++ b/nb.po
@@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/otf/torproject/language/nb/)\n"
"MIME-Version: 1.0\n"
@@ -238,7 +238,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1157,7 +1157,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1575,6 +1575,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1584,10 +1585,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2309,10 +2310,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ne.po b/ne.po
index 01108c2c15..1e0a673fb0 100644
--- a/ne.po
+++ b/ne.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Nepali (http://www.transifex.com/otf/torproject/language/ne/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/nl.po b/nl.po
index bbf6f6f048..5c111969c0 100644
--- a/nl.po
+++ b/nl.po
@@ -37,8 +37,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Dutch (http://www.transifex.com/otf/torproject/language/nl/)\n"
"MIME-Version: 1.0\n"
@@ -253,7 +253,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1172,7 +1172,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1590,6 +1590,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1599,10 +1600,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2324,10 +2325,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/nl_BE.po b/nl_BE.po
index 8b47b22700..08218fb528 100644
--- a/nl_BE.po
+++ b/nl_BE.po
@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Dutch (Belgium) (http://www.transifex.com/otf/torproject/language/nl_BE/)\n"
"MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1144,7 +1144,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1562,6 +1562,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1571,10 +1572,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2296,10 +2297,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/nn.po b/nn.po
index 4a4f356392..7a6899d75a 100644
--- a/nn.po
+++ b/nn.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/otf/torproject/language/nn/)\n"
@@ -226,7 +226,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1145,7 +1145,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1563,6 +1563,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1572,10 +1573,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2297,10 +2298,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/oc.po b/oc.po
index c91b4d916d..6c9b5604a2 100644
--- a/oc.po
+++ b/oc.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/otf/torproject/language/oc/)\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/or.po b/or.po
index 635d289809..f1d8a4ad3d 100644
--- a/or.po
+++ b/or.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Oriya (http://www.transifex.com/otf/torproject/language/or/)\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/pa.po b/pa.po
index 827bb57379..3636891509 100644
--- a/pa.po
+++ b/pa.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/otf/torproject/language/pa/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/pt_BR.po b/pt_BR.po
index d612de89d6..771fa9d0cd 100644
--- a/pt_BR.po
+++ b/pt_BR.po
@@ -35,9 +35,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-06 17:40+0000\n"
-"Last-Translator: Igor Bk 13\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -251,7 +251,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1170,7 +1170,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Erro"
@@ -1588,6 +1588,7 @@ msgid ""
msgstr "A máscara de identidade MAC falhou para a placa de rede ${nic_name} (${nic}). A recuperação do erro também falhou, portanto, toda a navegação está desabilitada.\nTalvez seja melhor reiniciar o Tails e desabilitar a máscara de identidade MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1597,10 +1598,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "erro:"
@@ -2322,10 +2323,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/pt_PT.po b/pt_PT.po
index d95bec37f5..3e8095de89 100644
--- a/pt_PT.po
+++ b/pt_PT.po
@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/otf/torproject/language/pt_PT/)\n"
"MIME-Version: 1.0\n"
@@ -229,7 +229,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1148,7 +1148,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Erro"
@@ -1566,6 +1566,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1575,10 +1576,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "erro:"
@@ -2300,10 +2301,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ro.po b/ro.po
index 3015e980d5..70cd83e698 100644
--- a/ro.po
+++ b/ro.po
@@ -26,7 +26,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Romanian (http://www.transifex.com/otf/torproject/language/ro/)\n"
@@ -242,7 +242,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1161,7 +1161,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Eroare"
@@ -1581,6 +1581,7 @@ msgid ""
msgstr "Falsificarea adresei MAC a eșuat pentru placa de rețea ${nic_name} (${nic}). Și recuperarea erorii a eșuat de asemenea astfel încât toate rețelele sunt dezactivate.\n\nAți putea alege să restartați Tails și să dezactivați falsificarea adresei MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1590,10 +1591,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "eroare:"
@@ -2315,10 +2316,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/si.po b/si.po
index 72c2179691..6e4c49e076 100644
--- a/si.po
+++ b/si.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Sinhala (http://www.transifex.com/otf/torproject/language/si/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/si_LK.po b/si_LK.po
index 139a84d6fd..e4a2b49041 100644
--- a/si_LK.po
+++ b/si_LK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/otf/torproject/language/si_LK/)\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/sk.po b/sk.po
index 2891d08435..29ea1cc028 100644
--- a/sk.po
+++ b/sk.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Slovak (http://www.transifex.com/otf/torproject/language/sk/)\n"
@@ -232,7 +232,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1151,7 +1151,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1573,6 +1573,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1582,10 +1583,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2307,10 +2308,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/sl.po b/sl.po
index d93d427227..06be528f23 100644
--- a/sl.po
+++ b/sl.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Slovenian (http://www.transifex.com/otf/torproject/language/sl/)\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1565,6 +1565,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1574,10 +1575,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2299,10 +2300,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/son.po b/son.po
index 70c8eddbfb..391f4d8064 100644
--- a/son.po
+++ b/son.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Songhay (http://www.transifex.com/otf/torproject/language/son/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1558,6 +1558,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1567,10 +1568,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2292,10 +2293,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/sq.po b/sq.po
index b896b04e65..25daf70ef1 100644
--- a/sq.po
+++ b/sq.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-05 09:32+0000\n"
-"Last-Translator: Besnik Bleta <besnik(a)programeshqip.org>\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
+"Last-Translator: Transifex Bot <>\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"
@@ -227,7 +227,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1146,7 +1146,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1564,6 +1564,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1573,10 +1574,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2298,10 +2299,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/sv.po b/sv.po
index 478ee8c94c..0e357fd834 100644
--- a/sv.po
+++ b/sv.po
@@ -24,7 +24,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-08 21:41+0000\n"
"Last-Translator: Jonatan Nyberg <jonatan.nyberg.karl(a)gmail.com>\n"
"Language-Team: Swedish (http://www.transifex.com/otf/torproject/language/sv/)\n"
@@ -240,7 +240,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1159,7 +1159,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "Fel"
@@ -1577,6 +1577,7 @@ msgid ""
msgstr "Det gick inte att fejka MAC för nätverkskort ${nic_name} (${nic}). Dessutom misslyckades felåterhämtningen, så alla nätverk har inaktiverats.\nDu vill nog starta om Tails och inaktivera fejkning av MAC."
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1586,10 +1587,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "fel:"
@@ -2311,10 +2312,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/te.po b/te.po
index e58449c50f..610d43fed7 100644
--- a/te.po
+++ b/te.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Telugu (http://www.transifex.com/otf/torproject/language/te/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1560,6 +1560,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1569,10 +1570,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2294,10 +2295,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/uk.po b/uk.po
index 4f97f21203..3683879d1a 100644
--- a/uk.po
+++ b/uk.po
@@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Ukrainian (http://www.transifex.com/otf/torproject/language/uk/)\n"
@@ -234,7 +234,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1153,7 +1153,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1575,6 +1575,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1584,10 +1585,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2309,10 +2310,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/ur.po b/ur.po
index 2b1d677d1d..c5db42f1e6 100644
--- a/ur.po
+++ b/ur.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Urdu (http://www.transifex.com/otf/torproject/language/ur/)\n"
"MIME-Version: 1.0\n"
@@ -224,7 +224,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1143,7 +1143,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1561,6 +1561,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1570,10 +1571,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2295,10 +2296,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/uz.po b/uz.po
index 4a8718a126..69dd449059 100644
--- a/uz.po
+++ b/uz.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
-"PO-Revision-Date: 2020-12-04 18:13+0000\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
+"PO-Revision-Date: 2020-12-11 09:16+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Uzbek (http://www.transifex.com/otf/torproject/language/uz/)\n"
"MIME-Version: 1.0\n"
@@ -223,7 +223,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1142,7 +1142,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1558,6 +1558,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1567,10 +1568,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2292,10 +2293,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/zh_CN.po b/zh_CN.po
index d0eca9630e..4d1d66b347 100644
--- a/zh_CN.po
+++ b/zh_CN.po
@@ -38,7 +38,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-07 08:43+0000\n"
"Last-Translator: Scott Rhodes <starring169(a)gmail.com>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/otf/torproject/language/zh_CN/)\n"
@@ -254,7 +254,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1173,7 +1173,7 @@ msgstr "设置 Tails 永久卷"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr "错误"
@@ -1589,6 +1589,7 @@ msgid ""
msgstr "MAC 伪装对 ${nic_name} (${nic}) 失败。错误恢复也一同失败,所以所有网络已被禁用。\n您可能会选择重启 Tails 并禁用 MAC 伪装。"
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1598,10 +1599,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr "错误:"
@@ -2323,10 +2324,6 @@ msgstr "重新安装(删除所有数据)"
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr "© 2009-2018 tails(a)boum.org"
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr "https://tails.boum.org/"
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
diff --git a/zh_TW.po b/zh_TW.po
index f322a9562b..8f49fee5cf 100644
--- a/zh_TW.po
+++ b/zh_TW.po
@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-12-02 12:10+0100\n"
+"POT-Creation-Date: 2020-12-04 11:24+0100\n"
"PO-Revision-Date: 2020-12-04 18:13+0000\n"
"Last-Translator: Transifex Bot <>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/otf/torproject/language/zh_TW/)\n"
@@ -238,7 +238,7 @@ msgid ""
"\n"
"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
"\n"
-"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+"To learn how to do a manual upgrade, go to {manual_upgrade_url}"
msgstr ""
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
@@ -1157,7 +1157,7 @@ msgstr ""
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:364
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:491
#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:77
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
msgstr ""
@@ -1573,6 +1573,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+#, python-brace-format
msgid ""
"<b>Not enough memory available to check for upgrades.</b>\n"
"\n"
@@ -1582,10 +1583,10 @@ msgid ""
"Try to restart Tails to check for upgrades again.\n"
"\n"
"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/upgrade#manual"
+"See {manual_upgrade_url}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:76
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
msgstr ""
@@ -2307,10 +2308,6 @@ msgstr ""
msgid "Copyright © 2009-2018 tails(a)boum.org"
msgstr ""
-#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
-msgid "https://tails.boum.org/"
-msgstr ""
-
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
"WhisperBack - Send feedback in an encrypted mail\n"
1
0

[translation/support-portal_completed] https://gitweb.torproject.org/translation.git/commit/?h=support-portal_completed
by translation@torproject.org 11 Dec '20
by translation@torproject.org 11 Dec '20
11 Dec '20
commit d2778730c4788f0a516d680496c94336f9a60509
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Dec 11 04:48:06 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=support-portal_comp…
---
contents+es-AR.po | 145 +++++++++++++++++++++++++++++++++++++++++++++++++++---
1 file changed, 138 insertions(+), 7 deletions(-)
diff --git a/contents+es-AR.po b/contents+es-AR.po
index 7b5bf917eb..58b8b7c3b2 100644
--- a/contents+es-AR.po
+++ b/contents+es-AR.po
@@ -5302,6 +5302,10 @@ msgid ""
"choose between different search providers, it fell back to delivering Bing "
"search results, which were basically unacceptable quality-wise."
msgstr ""
+"Ya que Disconnect es más bien un meta motor de búsqueda, que permite a los "
+"usuarios elegir entre diferentes proveedores de búsqueda, por defecto estaba"
+" entregando resultados de búsqueda de Bing, los cuales eran básicamente "
+"inaceptables desde el punto de vista de la calidad."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.title)
@@ -5316,6 +5320,9 @@ msgid ""
"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
+"El Navegador Tor se compila usando [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), por lo que pueden ocurrir errores concernientes "
+"a Firefox."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -5336,11 +5343,16 @@ msgid ""
"Browser](https://support.torproject.org/#tbb-10), it is common for anti-"
"virus / anti-malware software to cause this type of issue."
msgstr ""
+"Si estás corriendo un antivirus, por favor mirá [Mi protección contra virus "
+"y programas maliciosos está bloqueándome de acceder al Navegador "
+"Tor](https://support.torproject.org/#tbb-10), es común que programas "
+"antivirus/protectores contra programas maliciosos causen este tipo de "
+"dificultad."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.title)
msgid "Why does Google show up in foreign languages?"
-msgstr ""
+msgstr "¿Por qué Google aparece en lenguajes extranjeros?"
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.description)
@@ -5350,6 +5362,10 @@ msgid ""
"thinks you prefer, and it also includes giving you different results on your"
" queries."
msgstr ""
+"Google usa \"geoubicación\" para determinar dónde estás en el mundo, para "
+"que pueda darte una experiencia personalizada. Esto incluye usar el lenguaje"
+" que piensa que vos preferís, y también dar diferentes resultados a tus "
+"búsquedas."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.description)
@@ -5359,6 +5375,10 @@ msgid ""
"Internet is not flat, and it in fact does look different depending on where "
"you are. This feature reminds people of this fact."
msgstr ""
+"Si realmente querés ver Google en inglés, podés cliquear el vínculo que "
+"provee eso. Pero consideramos esto una característica con Tor, no un error "
+"--- Internet no es plana, y de hecho, sí luce diferente dependiendo de dónde"
+" estés. Esta característica le recuerda a la gente de este hecho."
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.description)
@@ -5368,6 +5388,11 @@ msgid ""
"search results in English regardless of what Google server you have been "
"sent to. On a query this looks like:"
msgstr ""
+"Tené en cuenta que los URLs de búsqueda de Google toman pares nombre/valor "
+"como argumentos, y uno de esos nombres es \"hl\". Si a \"hl\" le asignás "
+"\"en\", Google retornará resultados de búsqueda en inglés, "
+"independientemente de a qué servidor Google hayas sido enviado. En una "
+"consulta, esto se parece a:"
#: https//support.torproject.org/tbb/tbb-43/
#: (content/tbb/tbb-43/contents+en.lrquestion.description)
@@ -5380,11 +5405,14 @@ msgid ""
"Another method is to simply use your country code for accessing Google. This"
" can be google.be, google.de, google.us and so on."
msgstr ""
+"Otro método es usar simplemente tu código de país para acceder a Google. "
+"Este puede ser google.be, google.de, google.us y así sucesivamente."
#: https//support.torproject.org/tbb/tbb-44/
#: (content/tbb/tbb-44/contents+en.lrquestion.title)
msgid "Google makes me solve a CAPTCHA or tells me I have spyware installed"
msgstr ""
+"Google me hace resolver un CAPTCHA o me dice que tengo spyware instalado"
#: https//support.torproject.org/tbb/tbb-44/
#: (content/tbb/tbb-44/contents+en.lrquestion.description)
@@ -5392,6 +5420,8 @@ msgid ""
"This is a known and intermittent problem; it does not mean that Google "
"considers Tor to be spyware."
msgstr ""
+"Este es un problema conocido e intermitente; no significa que Google "
+"considere que Tor sea spyware."
#: https//support.torproject.org/tbb/tbb-44/
#: (content/tbb/tbb-44/contents+en.lrquestion.description)
@@ -5403,6 +5433,13 @@ msgid ""
"relay you happened to pick) as somebody trying to \"crawl\" their website, "
"so it slows down traffic from that IP address for a short time."
msgstr ""
+"Cuando usás Tor, estás enviando consultas a través de repetidores de salida "
+"que también son compartidos por miles de otros usuarios. Los usuarios de Tor"
+" típicamente ven este mensaje cuando muchos de ellos están consultando a "
+"Google en un periodo de tiempo corto. Google interpreta el alto volumen de "
+"tráfico desde una dirección IP única (el repetidor de salida que justo "
+"elegiste) como alguien que está intentando \"gatear\" en su sitio web, por "
+"lo que desacelera el tráfico desde esa dirección IP por un corto tiempo."
#: https//support.torproject.org/tbb/tbb-44/
#: (content/tbb/tbb-44/contents+en.lrquestion.description)
@@ -5410,6 +5447,8 @@ msgid ""
"You can try 'change the circuit for this site' to access the website from a "
"different IP address."
msgstr ""
+"Podés intentar 'cambiar el circuito para este sitio' para acceder al sitio "
+"web desde una dirección IP diferente."
#: https//support.torproject.org/tbb/tbb-44/
#: (content/tbb/tbb-44/contents+en.lrquestion.description)
@@ -5420,6 +5459,12 @@ msgid ""
"they are Tor exit relays), and tries to warn any connections coming from "
"those IP addresses that recent queries indicate an infection."
msgstr ""
+"Una explicación alternativa es que Google intenta detectar ciertas clases de"
+" spyware o virus que envían consultas distintivas hacia Google Search. Nota "
+"las direcciones IP desde las cuales esas consultas son recibidas (no dándose"
+" cuenta que son repetidores de salida Tor), e intenta advertir a cualquier "
+"conexión proveniente de ellas que hay consultas recientes que indican una "
+"infección."
#: https//support.torproject.org/tbb/tbb-44/
#: (content/tbb/tbb-44/contents+en.lrquestion.description)
@@ -5428,11 +5473,15 @@ msgid ""
" deter or block Tor use. The error message about an infected machine should "
"clear up again after a short time."
msgstr ""
+"En la medida de nuestro conocimiento, Google no está haciendo nada "
+"intentionalmente para disuadir o bloquear el uso de Tor específicalmente. "
+"El mensaje de error acerca de una máquina infectada debiera limpiarse de "
+"nuevo después de un corto tiempo."
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.title)
msgid "Gmail warns me that my account may have been compromised"
-msgstr ""
+msgstr "Gmail me advierte que mi cuenta podría haber sido comprometida"
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
@@ -5440,6 +5489,8 @@ msgid ""
"Sometimes, after you've used Gmail over Tor, Google presents a pop-up "
"notification that your account may have been compromised."
msgstr ""
+"A veces, después de que hayas usado Gmail sobre Tor, Google presenta una "
+"notificación emergente que tu cuenta podría haber sido comprometida."
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
@@ -5447,6 +5498,8 @@ msgid ""
"The notification window lists a series of IP addresses and locations "
"throughout the world recently used to access your account."
msgstr ""
+"La ventana de notificación lista una serie de direcciones IP y ubicaciones a"
+" través del mundo recientemente usadas para acceder a tu cuenta."
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
@@ -5456,6 +5509,10 @@ msgid ""
" was a good idea to confirm the account was being accessed by its rightful "
"owner."
msgstr ""
+"En general, esto es una falsa alarma: Google vió una pila de inicios de "
+"sesión desde diferentes lugares, como resultado de acceder al servicio vía "
+"Tor, y decidió que era una buena idea confirmar que la cuenta estaba siendo "
+"accedida por su propietario legítimo."
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
@@ -5463,6 +5520,8 @@ msgid ""
"Even though this may be a byproduct of using the service via Tor, that "
"doesn't mean you can entirely ignore the warning."
msgstr ""
+"Aunque esto podría ser un subproducto de usar el servicio vía Tor, eso no "
+"significa que puedas ignorar por completo la advertencia."
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
@@ -5470,6 +5529,8 @@ msgid ""
"It is probably a false positive, but it might not be since it is possible "
"for someone to hijack your Google cookie."
msgstr ""
+"Probably es un falso positivo, pero podría no serlo, ya que es posible que "
+"alguien secuestre tu cookie de Google."
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
@@ -5477,6 +5538,8 @@ msgid ""
"Cookie hijacking is possible by either physical access to your computer or "
"by watching your network traffic."
msgstr ""
+"El secuestro de cookies es posible ya sea por acceso físico a tu "
+"computadora, o por observación de tu tráfico de red."
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
@@ -5484,6 +5547,9 @@ msgid ""
"In theory, only physical access should compromise your system because Gmail "
"and similar services should only send the cookie over an SSL link."
msgstr ""
+"En teoría, solamente el acceso físico comprometería a tu sistema, porque "
+"Gmail y servicios similares solamente enviarían la cookie sobre un vínculo "
+"SSL."
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
@@ -5491,6 +5557,8 @@ msgid ""
"In practice, alas, it's [way more complex than that](https://fscked.org/blog"
"/fully-automated-active-https-cookie-hijacking)."
msgstr ""
+"En la práctica, ¡ay!, es [recontra más complicado que "
+"eso](https://fscked.org/blog/fully-automated-active-https-cookie-hijacking)."
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
@@ -5503,6 +5571,13 @@ msgid ""
"account, or looking at the timestamps for recent logins and wondering if you"
" actually logged in at those times."
msgstr ""
+"Y si alguien robó tu cookie de Google, podría terminar iniciando sesión "
+"desde lugares inusuales (aunque, por supuesto, también puede que no). Por lo"
+" que el resumen es que, ya que estás usando al Navegador Tor, esta medida de"
+" seguridad que usa Google no es tan útil para vos, porque está llena de "
+"falsos positivos. Vas a tener que usar otros abordajes, como mirar si algo "
+"aparece raro en la cuenta, o mirar las fechas y horas para inicios de sesión"
+" recientes y preguntarte si realmente lo hiciste en esas oportunidades."
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
@@ -5511,11 +5586,14 @@ msgid ""
"Verification](https://support.google.com/accounts/answer/185839) on their "
"accounts to add an extra layer of security."
msgstr ""
+"Más recientemente, los usuarios de Gmail pueden activar [Verificación de 2 "
+"Pasos](https://support.google.com/accounts/answer/185839) en sus cuentas, "
+"para añadir una capa extra de seguridad."
#: https//support.torproject.org/tbb/tbb-46/
#: (content/tbb/tbb-46/contents+en.lrquestion.title)
msgid "How do I install Tor Browser?"
-msgstr ""
+msgstr "¿Cómo instalo el Navegador Tor?"
#: https//support.torproject.org/tbb/tbb-46/
#: (content/tbb/tbb-46/contents+en.lrquestion.description)
@@ -5529,7 +5607,7 @@ msgstr ""
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.title)
msgid "My internet connection requires an HTTP or SOCKS Proxy"
-msgstr ""
+msgstr "Mi conexión de Internet requiere un proxy HTTP o SOCKS"
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
@@ -5563,6 +5641,11 @@ msgid ""
"but if you need NTLM authentication, you may find [this post in the "
"archives](https://archives.seul.org/or/talk/Jun-2005/msg00223.html) useful."
msgstr ""
+"También, leé sobre las opciones HTTPProxyAuthenticator y "
+"HTTPSProxyAuthenticator si tu proxy requiere autenticación. Solamente "
+"soportamos autenticación básica por el momento, pero si necesitás "
+"autenticación NTLM, podrías encontrar útil [este posteo en los "
+"archivos](https://archives.seul.org/or/talk/Jun-2005/msg00223.html)."
#: https//support.torproject.org/tbb/tbb-47/
#: (content/tbb/tbb-47/contents+en.lrquestion.description)
@@ -5572,6 +5655,10 @@ msgid ""
"[Firewalled](https://2019.www.torproject.org/docs/faq.html.en#FirewallPorts)"
" clients for how to restrict what ports your Tor will try to access."
msgstr ""
+"Si tus proxies solamente te permiten conectarte a ciertos puertos, mirá la "
+"entrada sobre clientes [tras "
+"cortafuegos](https://2019.www.torproject.org/docs/faq.html.en#FirewallPorts)"
+" para ver cómo restringir a qué puertos intentará acceder tu Tor."
#: https//support.torproject.org/tbb/tbb-5/
#: (content/tbb/tbb-5/contents+en.lrquestion.title)
@@ -5639,6 +5726,8 @@ msgid ""
"What is the difference between using Tor Browser and 'Incognito mode' or "
"private tabs?"
msgstr ""
+"¿Cuál es la diferencia entre usar el Navegador Tor y el 'modo Incógnito' o "
+"las pestañas privadas?"
#: https//support.torproject.org/tbb/tbb-and-incognito-mode/
#: (content/tbb/tbb-and-incognito-mode/contents+en.lrquestion.description)
@@ -5646,6 +5735,8 @@ msgid ""
"While the names may imply otherwise, 'Incognito mode' and 'private tabs' do "
"not make you anonymous on the Internet."
msgstr ""
+"Mientras que los nombres podrían implicar otra cosa, el 'modo Incógnito' y "
+"las 'pestañas privadas' no te hacen anónimo en Internet."
#: https//support.torproject.org/tbb/tbb-and-incognito-mode/
#: (content/tbb/tbb-and-incognito-mode/contents+en.lrquestion.description)
@@ -5654,6 +5745,9 @@ msgid ""
"session after they are closed, but have no measures in place to hide your "
"activity or digital fingerprint online."
msgstr ""
+"Borran toda la información en tu máquina relativa a la sesión de navegación "
+"después de que son cerradas, pero no tienen medidas emplazadas para ocultar "
+"tu actividad o huella digital en línea."
#: https//support.torproject.org/tbb/tbb-and-incognito-mode/
#: (content/tbb/tbb-and-incognito-mode/contents+en.lrquestion.description)
@@ -5661,6 +5755,8 @@ msgid ""
"This means that an observer can collect your traffic just as easily as any "
"regular browser."
msgstr ""
+"Esto significa que un observador puede recolectar tu tráfico tan fácilmente "
+"como con cualquier navegador regular."
#: https//support.torproject.org/tbb/tbb-and-incognito-mode/
#: (content/tbb/tbb-and-incognito-mode/contents+en.lrquestion.description)
@@ -5670,6 +5766,12 @@ msgid ""
" used to fingerprint activity across the web, allowing for a truly private "
"browsing session that's fully obfuscated from end-to-end."
msgstr ""
+"El Navegador Tor ofrece todas las características amnésicas de las pestañas "
+"privadas, mientras que también oculta el IP originario, los hábitos de "
+"navegación y los detalles acerca del dispositivo, que pueden ser usados para"
+" determinar la huella digital de la actividad a lo largo de la web, "
+"permitiendo una sesión de navegación verdaderamente privada que está "
+"completamente ofuscada de extremo a extremo."
#: https//support.torproject.org/tbb/tbb-and-incognito-mode/
#: (content/tbb/tbb-and-incognito-mode/contents+en.lrquestion.description)
@@ -5679,17 +5781,23 @@ msgid ""
"Browsing](https://support.mozilla.org/en-US/kb/common-myths-about-private-"
"browsing)."
msgstr ""
+"Por más información relativa a las limitaciones del modo Incógnito y las "
+"pestañas privadas, mirá el artículo de Mozilla sobre [Mitos Comunes acerca "
+"de la Navegación Privada](https://support.mozilla.org/en-US/kb/common-myths-"
+"about-private-browsing)."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.title)
msgid "I'm supposed to \"edit my torrc\". What does that mean?"
-msgstr ""
+msgstr "Supuestamente tengo que \"editar mi torrc\". ¿Qué significa eso?"
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
msgid ""
"WARNING: Do NOT follow random advice instructing you to edit your `torrc`!"
msgstr ""
+"ADVERTENCIA: ¡NO sigás consejos al azar instruyéndote para editar tu "
+"`torrc`!"
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
@@ -5697,6 +5805,8 @@ msgid ""
"Doing so can allow an attacker to compromise your security and anonymity "
"through malicious configuration of your `torrc`."
msgstr ""
+"Hacer eso puede permitirle a un atacante comprometer tu seguridad y "
+"anonimato a través de configuraciones maliciosas de tu `torrc`."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
@@ -5704,6 +5814,8 @@ msgid ""
"Tor uses a text file called `torrc` that contains configuration instructions"
" for how Tor should behave."
msgstr ""
+"Tor usa un archivo de texto llamado `torrc` que contiene instrucciones "
+"acerca de cómo debiera comportarse."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
@@ -5711,6 +5823,8 @@ msgid ""
"The default configuration should work fine for most Tor users (hence the "
"warning above.)"
msgstr ""
+"La configuración por defecto debería funcionar bien para la mayoría de los "
+"usuarios de Tor (de ahí la advertencia de arriba)."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
@@ -5718,11 +5832,13 @@ msgid ""
"To find your Tor Browser `torrc`, follow the instructions for your operating"
" system below."
msgstr ""
+"Para encontrar el `torrc` de tu Navegador Tor, seguí las instrucciones de "
+"abajo para tu sistema operativo."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
msgid "On Windows or Linux:"
-msgstr ""
+msgstr "En Windows o Linux:"
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
@@ -5730,11 +5846,13 @@ msgid ""
"* The `torrc` is in the Tor Browser Data directory at "
"`Browser/TorBrowser/Data/Tor` inside your Tor Browser directory."
msgstr ""
+"* El `torrc` está en el directorio de Datos del Navegador Tor, en "
+"`Browser/TorBrowser/Data/Tor`, dentro de tu directorio del Navegador Tor."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
msgid "On macOS:"
-msgstr ""
+msgstr "En macOS:"
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
@@ -5742,6 +5860,8 @@ msgid ""
"* The `torrc` is in the Tor Browser Data directory at `~/Library/Application"
" Support/TorBrowser-Data/Tor`."
msgstr ""
+"* El `torrc` está en el directorio de Datos del Navegador Tor, en "
+"`~/Library/Application Support/TorBrowser-Data/Tor`."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
@@ -5749,11 +5869,15 @@ msgid ""
"* Note the Library folder is hidden on newer versions of macOS. To navigate "
"to this folder in Finder, select \"Go to Folder...\" in the \"Go\" menu."
msgstr ""
+"* Tené en cuenta que la carpeta Biblioteca está oculta en las nuevas "
+"versiones de macOS. Para navegar hasta esta carpeta en el Buscador, "
+"seleccioná \"Ir hasta Carpeta...\" en el menú \"Ir\"."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
msgid "* Then type \"~/Library/Application Support/\" in the window and click Go."
msgstr ""
+"* Luego tipeá \"~/Library/Application Support/\" en la ventana y cliqueá Ir."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
@@ -5761,6 +5885,8 @@ msgid ""
"Close Tor Browser before you edit your `torrc`, otherwise Tor Browser may "
"erase your modifications."
msgstr ""
+"Cerrá al Navegador Tor antes de editar tu `torrc`, ya que de otra manera "
+"podría borrar tus modificaciones."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
@@ -5768,6 +5894,8 @@ msgid ""
"Some options will have no effect as Tor Browser overrides them with command "
"line options when it starts Tor."
msgstr ""
+"Algunas opciones no tendrán efecto, ya que el Navegador Tor las pasa por "
+"alto con opciones de línea de comando cuando se inicia Tor."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
@@ -5776,6 +5904,9 @@ msgid ""
"`torrc`](https://gitweb.torproject.org/tor.git/tree/src/config/torrc.sample.in)"
" file for hints on common configurations."
msgstr ""
+"Dale una mirada al archivo [`torrc` de "
+"muestra](https://gitweb.torproject.org/tor.git/tree/src/config/torrc.sample…"
+" por pistas sobre configuraciones comunes."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
#: (content/tbb/tbb-editing-torrc/contents+en.lrquestion.description)
1
0

[translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal
by translation@torproject.org 11 Dec '20
by translation@torproject.org 11 Dec '20
11 Dec '20
commit 2eaea8ebebb6a6055731d5f7d122496ca1d7c7ab
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Dec 11 04:48:00 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=support-portal
---
contents+es-AR.po | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
diff --git a/contents+es-AR.po b/contents+es-AR.po
index 02416214a6..fd54742b2f 100644
--- a/contents+es-AR.po
+++ b/contents+es-AR.po
@@ -5302,10 +5302,10 @@ msgid ""
"choose between different search providers, it fell back to delivering Bing "
"search results, which were basically unacceptable quality-wise."
msgstr ""
-"Desde que Disconnect es más bien un meta motor de búsqueda que permite a los"
-" usuarios escoger entre diferentes proveedores de búsqueda, por defecto "
-"estaba entregando resultados de búsqueda de Bing, los cuales eran "
-"básicamente inaceptables desde el punto de vista de la calidad."
+"Ya que Disconnect es más bien un meta motor de búsqueda, que permite a los "
+"usuarios elegir entre diferentes proveedores de búsqueda, por defecto estaba"
+" entregando resultados de búsqueda de Bing, los cuales eran básicamente "
+"inaceptables desde el punto de vista de la calidad."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.title)
@@ -5320,9 +5320,9 @@ msgid ""
"Tor Browser is built using [Firefox ESR](https://www.mozilla.org/en-"
"US/firefox/organizations/), so errors regarding Firefox may occur."
msgstr ""
-"El Navegador Tor se construye usando [Firefox ESR](https://www.mozilla.org"
-"/en-US/firefox/organizations/), por lo que pueden ocurrir errores "
-"concernientes a Firefox."
+"El Navegador Tor se compila usando [Firefox ESR](https://www.mozilla.org/en-"
+"US/firefox/organizations/), por lo que pueden ocurrir errores concernientes "
+"a Firefox."
#: https//support.torproject.org/tbb/tbb-42/
#: (content/tbb/tbb-42/contents+en.lrquestion.description)
@@ -5346,7 +5346,7 @@ msgstr ""
"Si estás corriendo un antivirus, por favor mirá [Mi protección contra virus "
"y programas maliciosos está bloqueándome de acceder al Navegador "
"Tor](https://support.torproject.org/#tbb-10), es común que programas "
-"antivirus/protectores contra programas maliciosos causen éste tipo de "
+"antivirus/protectores contra programas maliciosos causen este tipo de "
"dificultad."
#: https//support.torproject.org/tbb/tbb-43/
@@ -5364,7 +5364,7 @@ msgid ""
msgstr ""
"Google usa \"geoubicación\" para determinar dónde estás en el mundo, para "
"que pueda darte una experiencia personalizada. Esto incluye usar el lenguaje"
-" que piensa que vos preferís, y también darte diferentes resultados a tus "
+" que piensa que vos preferís, y también dar diferentes resultados a tus "
"búsquedas."
#: https//support.torproject.org/tbb/tbb-43/
@@ -5489,7 +5489,7 @@ msgid ""
"Sometimes, after you've used Gmail over Tor, Google presents a pop-up "
"notification that your account may have been compromised."
msgstr ""
-"A veces, después de que has usado Gmail sobre Tor, Google presenta una "
+"A veces, después de que hayas usado Gmail sobre Tor, Google presenta una "
"notificación emergente que tu cuenta podría haber sido comprometida."
#: https//support.torproject.org/tbb/tbb-45/
@@ -5530,7 +5530,7 @@ msgid ""
"for someone to hijack your Google cookie."
msgstr ""
"Probably es un falso positivo, pero podría no serlo, ya que es posible que "
-"alguien sevuestre tu cookie de Google."
+"alguien secuestre tu cookie de Google."
#: https//support.torproject.org/tbb/tbb-45/
#: (content/tbb/tbb-45/contents+en.lrquestion.description)
@@ -5575,7 +5575,7 @@ msgstr ""
"desde lugares inusuales (aunque, por supuesto, también puede que no). Por lo"
" que el resumen es que, ya que estás usando al Navegador Tor, esta medida de"
" seguridad que usa Google no es tan útil para vos, porque está llena de "
-"falsos positivos. Tendrás que usar otros abordajes, como mirar si algo "
+"falsos positivos. Vas a tener que usar otros abordajes, como mirar si algo "
"aparece raro en la cuenta, o mirar las fechas y horas para inicios de sesión"
" recientes y preguntarte si realmente lo hiciste en esas oportunidades."
@@ -5658,7 +5658,7 @@ msgstr ""
"Si tus proxies solamente te permiten conectarte a ciertos puertos, mirá la "
"entrada sobre clientes [tras "
"cortafuegos](https://2019.www.torproject.org/docs/faq.html.en#FirewallPorts)"
-" para ver cómo restringir qué puertos intentará acceder tu Tor."
+" para ver cómo restringir a qué puertos intentará acceder tu Tor."
#: https//support.torproject.org/tbb/tbb-5/
#: (content/tbb/tbb-5/contents+en.lrquestion.title)
@@ -5768,8 +5768,8 @@ msgid ""
msgstr ""
"El Navegador Tor ofrece todas las características amnésicas de las pestañas "
"privadas, mientras que también oculta el IP originario, los hábitos de "
-"navegación y los detalles acerca del dispositivo (que pueden ser usados para"
-" determinar la huella digital de la actividad a lo largo de la web), "
+"navegación y los detalles acerca del dispositivo, que pueden ser usados para"
+" determinar la huella digital de la actividad a lo largo de la web, "
"permitiendo una sesión de navegación verdaderamente privada que está "
"completamente ofuscada de extremo a extremo."
@@ -5805,7 +5805,7 @@ msgid ""
"Doing so can allow an attacker to compromise your security and anonymity "
"through malicious configuration of your `torrc`."
msgstr ""
-"Hacer eso puede permitirle a un atacante comprometer tu securidad y "
+"Hacer eso puede permitirle a un atacante comprometer tu seguridad y "
"anonimato a través de configuraciones maliciosas de tu `torrc`."
#: https//support.torproject.org/tbb/tbb-editing-torrc/
1
0