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

[tor/release-0.3.4] Merge branch 'maint-0.3.4' into release-0.3.4
by nickm@torproject.org 15 Oct '18
by nickm@torproject.org 15 Oct '18
15 Oct '18
commit 294f5bb7e4ee8d07c1848196917e536c2432822f
Merge: 092190476 fd528a088
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Mon Oct 15 10:37:52 2018 -0400
Merge branch 'maint-0.3.4' into release-0.3.4
changes/bug27709 | 4 ++++
src/common/util_bug.h | 57 +++++++++++++++++++++++++++++++++++++++------------
2 files changed, 48 insertions(+), 13 deletions(-)
1
0

[tor/release-0.3.4] Revise our assertion and bug macros to work with -Wparentheses
by nickm@torproject.org 15 Oct '18
by nickm@torproject.org 15 Oct '18
15 Oct '18
commit bb465be085ff8d1640f1d1c0bbb65605d85b5528
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Fri Sep 14 11:39:37 2018 -0400
Revise our assertion and bug macros to work with -Wparentheses
On GCC and Clang, there's a feature to warn you about bad
conditionals like "if (a = b)", which should be "if (a == b)".
However, they don't warn you if there are extra parentheses around
"a = b".
Unfortunately, the tor_assert() macro and all of its kin have been
passing their inputs through stuff like PREDICT_UNLIKELY(expr) or
PREDICT_UNLIKELY(!(expr)), both of which expand to stuff with more
parentheses around "expr", thus suppressing these warnings.
To fix this, this patch introduces new macros that do not wrap
expr. They're only used when GCC or Clang is enabled (both define
__GNUC__), since they require GCC's "({statement expression})"
syntax extension. They're only used when we're building the
unit-test variant of the object files, since they suppress the
branch-prediction hints.
I've confirmed that tor_assert(), tor_assert_nonfatal(),
tor_assert_nonfatal_once(), BUG(), and IF_BUG_ONCE() all now give
compiler warnings when their argument is an assignment expression.
Fixes bug 27709.
Bugfix on 0.0.6, where we first introduced the "tor_assert()" macro.
---
changes/bug27709 | 4 ++++
src/common/util_bug.h | 53 ++++++++++++++++++++++++++++++++++++++-------------
2 files changed, 44 insertions(+), 13 deletions(-)
diff --git a/changes/bug27709 b/changes/bug27709
new file mode 100644
index 000000000..49e87cbb0
--- /dev/null
+++ b/changes/bug27709
@@ -0,0 +1,4 @@
+ o Minor bugfixes (code safety):
+ - Rewrite our assertion macros so that they no longer suppress
+ the compiler's -Wparentheses warnings on their inputs. Fixes bug 27709;
+ bugfix on 0.0.6.
diff --git a/src/common/util_bug.h b/src/common/util_bug.h
index 069580691..22ec37d38 100644
--- a/src/common/util_bug.h
+++ b/src/common/util_bug.h
@@ -29,6 +29,31 @@
#error "Sorry; we don't support building with NDEBUG."
#endif
+#if defined(TOR_UNIT_TESTS) && defined(__GNUC__)
+/* We define this GCC macro as a replacement for PREDICT_UNLIKELY() in this
+ * header, so that in our unit test builds, we'll get compiler warnings about
+ * stuff like tor_assert(n = 5).
+ *
+ * The key here is that (e) is wrapped in exactly one layer of parentheses,
+ * and then passed right to a conditional. If you do anything else to the
+ * expression here, or introduce any more parentheses, the compiler won't
+ * help you.
+ */
+#define ASSERT_PREDICT_UNLIKELY_(e) \
+ ({ \
+ int tor__assert_tmp_value__; \
+ if (e) \
+ tor__assert_tmp_value__ = 1; \
+ else \
+ tor__assert_tmp_value__ = 0; \
+ tor__assert_tmp_value__; \
+ })
+#define ASSERT_PREDICT_LIKELY_(e) ASSERT_PREDICT_UNLIKELY_(e)
+#else
+#define ASSERT_PREDICT_UNLIKELY_(e) PREDICT_UNLIKELY(e)
+#define ASSERT_PREDICT_LIKELY_(e) PREDICT_LIKELY(e)
+#endif
+
/* Sometimes we don't want to use assertions during branch coverage tests; it
* leads to tons of unreached branches which in reality are only assertions we
* didn't hit. */
@@ -40,7 +65,8 @@
/** Like assert(3), but send assertion failures to the log as well as to
* stderr. */
#define tor_assert(expr) STMT_BEGIN \
- if (PREDICT_UNLIKELY(!(expr))) { \
+ if (ASSERT_PREDICT_LIKELY_(expr)) { \
+ } else { \
tor_assertion_failed_(SHORT_FILE__, __LINE__, __func__, #expr); \
abort(); \
} STMT_END
@@ -77,7 +103,7 @@
#define tor_assert_nonfatal_unreached_once() tor_assert(0)
#define tor_assert_nonfatal_once(cond) tor_assert((cond))
#define BUG(cond) \
- (PREDICT_UNLIKELY(cond) ? \
+ (ASSERT_PREDICT_UNLIKELY_(cond) ? \
(tor_assertion_failed_(SHORT_FILE__,__LINE__,__func__,"!("#cond")"), \
abort(), 1) \
: 0)
@@ -86,14 +112,15 @@
#define tor_assert_nonfatal(cond) ((void)(cond))
#define tor_assert_nonfatal_unreached_once() STMT_NIL
#define tor_assert_nonfatal_once(cond) ((void)(cond))
-#define BUG(cond) (PREDICT_UNLIKELY(cond) ? 1 : 0)
+#define BUG(cond) (ASSERT_PREDICT_UNLIKELY_(cond) ? 1 : 0)
#else /* Normal case, !ALL_BUGS_ARE_FATAL, !DISABLE_ASSERTS_IN_UNIT_TESTS */
#define tor_assert_nonfatal_unreached() STMT_BEGIN \
tor_bug_occurred_(SHORT_FILE__, __LINE__, __func__, NULL, 0); \
STMT_END
#define tor_assert_nonfatal(cond) STMT_BEGIN \
- if (PREDICT_UNLIKELY(!(cond))) { \
- tor_bug_occurred_(SHORT_FILE__, __LINE__, __func__, #cond, 0); \
+ if (ASSERT_PREDICT_LIKELY_(cond)) { \
+ } else { \
+ tor_bug_occurred_(SHORT_FILE__, __LINE__, __func__, #cond, 0); \
} \
STMT_END
#define tor_assert_nonfatal_unreached_once() STMT_BEGIN \
@@ -105,13 +132,14 @@
STMT_END
#define tor_assert_nonfatal_once(cond) STMT_BEGIN \
static int warning_logged__ = 0; \
- if (!warning_logged__ && PREDICT_UNLIKELY(!(cond))) { \
+ if (ASSERT_PREDICT_LIKELY_(cond)) { \
+ } else if (!warning_logged__) { \
warning_logged__ = 1; \
tor_bug_occurred_(SHORT_FILE__, __LINE__, __func__, #cond, 1); \
} \
STMT_END
#define BUG(cond) \
- (PREDICT_UNLIKELY(cond) ? \
+ (ASSERT_PREDICT_UNLIKELY_(cond) ? \
(tor_bug_occurred_(SHORT_FILE__,__LINE__,__func__,"!("#cond")",0), 1) \
: 0)
#endif
@@ -120,17 +148,17 @@
#define IF_BUG_ONCE__(cond,var) \
if (( { \
static int var = 0; \
- int bool_result = (cond); \
- if (PREDICT_UNLIKELY(bool_result) && !var) { \
+ int bool_result = !!(cond); \
+ if (bool_result && !var) { \
var = 1; \
tor_bug_occurred_(SHORT_FILE__, __LINE__, __func__, \
"!("#cond")", 1); \
} \
- PREDICT_UNLIKELY(bool_result); } ))
+ bool_result; } ))
#else
#define IF_BUG_ONCE__(cond,var) \
static int var = 0; \
- if (PREDICT_UNLIKELY(cond) ? \
+ if ((cond) ? \
(var ? 1 : \
(var=1, \
tor_bug_occurred_(SHORT_FILE__, __LINE__, __func__, \
@@ -148,7 +176,7 @@
*/
#define IF_BUG_ONCE(cond) \
- IF_BUG_ONCE__((cond), \
+ IF_BUG_ONCE__(ASSERT_PREDICT_UNLIKELY_(cond), \
IF_BUG_ONCE_VARNAME__(__LINE__))
/** Define this if you want Tor to crash when any problem comes up,
@@ -170,4 +198,3 @@ void tor_set_failed_assertion_callback(void (*fn)(void));
#endif
#endif
-
1
0
commit 796e36e535d1713fd1168772669199ea9189ba61
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Mon Oct 15 10:46:24 2018 -0400
Adjust tor_assert_unreached()
This version of the macro makes it obvious to the compiler that
"tor_assert_unreached()" will always abort().
---
src/common/util_bug.h | 7 ++++++-
src/or/hs_common.c | 7 +++----
2 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/src/common/util_bug.h b/src/common/util_bug.h
index c274355f3..be0001e84 100644
--- a/src/common/util_bug.h
+++ b/src/common/util_bug.h
@@ -102,7 +102,12 @@
} STMT_END
#endif /* defined(TOR_UNIT_TESTS) && defined(DISABLE_ASSERTS_IN_UNIT_TESTS) */
-#define tor_assert_unreached() tor_assert(0)
+#define tor_assert_unreached() \
+ STMT_BEGIN { \
+ tor_assertion_failed_(SHORT_FILE__, __LINE__, __func__, \
+ "line should be unreached"); \
+ abort(); \
+ } STMT_END
/* Non-fatal bug assertions. The "unreached" variants mean "this line should
* never be reached." The "once" variants mean "Don't log a warning more than
diff --git a/src/or/hs_common.c b/src/or/hs_common.c
index 10b56c0ba..e586516c8 100644
--- a/src/or/hs_common.c
+++ b/src/or/hs_common.c
@@ -523,7 +523,7 @@ rend_data_get_address(const rend_data_t *rend_data)
return TO_REND_DATA_V2(rend_data)->onion_address;
default:
/* We should always have a supported version. */
- tor_assert(0);
+ tor_assert_unreached();
}
}
@@ -546,7 +546,7 @@ rend_data_get_desc_id(const rend_data_t *rend_data, uint8_t replica,
return TO_REND_DATA_V2(rend_data)->descriptor_id[replica];
default:
/* We should always have a supported version. */
- tor_assert(0);
+ tor_assert_unreached();
}
}
@@ -569,7 +569,7 @@ rend_data_get_pk_digest(const rend_data_t *rend_data, size_t *len_out)
}
default:
/* We should always have a supported version. */
- tor_assert(0);
+ tor_assert_unreached();
}
}
@@ -1814,4 +1814,3 @@ hs_inc_rdv_stream_counter(origin_circuit_t *circ)
tor_assert_nonfatal_unreached();
}
}
-
1
0

15 Oct '18
commit dff7d3d00ad5e3f9e59cd4b11f302601790d1061
Merge: f7e93cf2e b11339965
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Mon Oct 15 10:37:49 2018 -0400
Merge branch 'maint-0.2.9' into maint-0.3.3
changes/bug27709 | 4 ++++
src/common/util_bug.h | 57 +++++++++++++++++++++++++++++++++++++++------------
2 files changed, 48 insertions(+), 13 deletions(-)
diff --cc src/common/util_bug.h
index be549fde0,f3e5b7c96..c274355f3
--- a/src/common/util_bug.h
+++ b/src/common/util_bug.h
@@@ -53,8 -27,37 +53,37 @@@
* security-critical properties.
*/
#error "Sorry; we don't support building with NDEBUG."
-#endif
+#endif /* defined(NDEBUG) */
+ #if defined(TOR_UNIT_TESTS) && defined(__GNUC__)
+ /* We define this GCC macro as a replacement for PREDICT_UNLIKELY() in this
+ * header, so that in our unit test builds, we'll get compiler warnings about
+ * stuff like tor_assert(n = 5).
+ *
+ * The key here is that (e) is wrapped in exactly one layer of parentheses,
+ * and then passed right to a conditional. If you do anything else to the
+ * expression here, or introduce any more parentheses, the compiler won't
+ * help you.
+ *
+ * We only do this for the unit-test build case because it interferes with
+ * the likely-branch labeling. Note below that in the other case, we define
+ * these macros to just be synonyms for PREDICT_(UN)LIKELY.
+ */
+ #define ASSERT_PREDICT_UNLIKELY_(e) \
+ ({ \
+ int tor__assert_tmp_value__; \
+ if (e) \
+ tor__assert_tmp_value__ = 1; \
+ else \
+ tor__assert_tmp_value__ = 0; \
+ tor__assert_tmp_value__; \
+ })
+ #define ASSERT_PREDICT_LIKELY_(e) ASSERT_PREDICT_UNLIKELY_(e)
+ #else
+ #define ASSERT_PREDICT_UNLIKELY_(e) PREDICT_UNLIKELY(e)
+ #define ASSERT_PREDICT_LIKELY_(e) PREDICT_LIKELY(e)
+ #endif
+
/* Sometimes we don't want to use assertions during branch coverage tests; it
* leads to tons of unreached branches which in reality are only assertions we
* didn't hit. */
@@@ -140,10 -143,10 +172,10 @@@ extern int bug_macro_deadcode_dummy__
} \
STMT_END
#define BUG(cond) \
- (PREDICT_UNLIKELY(cond) ? \
+ (ASSERT_PREDICT_UNLIKELY_(cond) ? \
(tor_bug_occurred_(SHORT_FILE__,__LINE__,__func__,"!("#cond")",0), 1) \
: 0)
-#endif
+#endif /* defined(ALL_BUGS_ARE_FATAL) || ... */
#ifdef __GNUC__
#define IF_BUG_ONCE__(cond,var) \
@@@ -155,11 -158,11 +187,11 @@@
tor_bug_occurred_(SHORT_FILE__, __LINE__, __func__, \
"!("#cond")", 1); \
} \
- PREDICT_UNLIKELY(bool_result); } ))
+ bool_result; } ))
-#else
+#else /* !(defined(__GNUC__)) */
#define IF_BUG_ONCE__(cond,var) \
static int var = 0; \
- if (PREDICT_UNLIKELY(cond) ? \
+ if ((cond) ? \
(var ? 1 : \
(var=1, \
tor_bug_occurred_(SHORT_FILE__, __LINE__, __func__, \
@@@ -196,7 -199,6 +228,6 @@@ void tor_capture_bugs_(int n)
void tor_end_capture_bugs_(void);
const struct smartlist_t *tor_get_captured_bug_log_(void);
void tor_set_failed_assertion_callback(void (*fn)(void));
-#endif
+#endif /* defined(TOR_UNIT_TESTS) */
-#endif
+#endif /* !defined(TOR_UTIL_BUG_H) */
-
1
0

15 Oct '18
commit 3462f8ed6430bdb1528a7b63aaf2281489eb04d1
Merge: fd528a088 796e36e53
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Mon Oct 15 10:48:35 2018 -0400
Merge branch 'maint-0.3.3' into maint-0.3.4
src/common/util_bug.h | 7 ++++++-
src/or/hs_common.c | 7 +++----
2 files changed, 9 insertions(+), 5 deletions(-)
1
0

[tor/release-0.3.4] Explain a bit more about branch prediction in the unit-test case
by nickm@torproject.org 15 Oct '18
by nickm@torproject.org 15 Oct '18
15 Oct '18
commit 5e582c7ffafd9075373131e5e55b69507f54206e
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Mon Oct 15 10:16:34 2018 -0400
Explain a bit more about branch prediction in the unit-test case
---
src/common/util_bug.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/common/util_bug.h b/src/common/util_bug.h
index 22ec37d38..f3e5b7c96 100644
--- a/src/common/util_bug.h
+++ b/src/common/util_bug.h
@@ -38,6 +38,10 @@
* and then passed right to a conditional. If you do anything else to the
* expression here, or introduce any more parentheses, the compiler won't
* help you.
+ *
+ * We only do this for the unit-test build case because it interferes with
+ * the likely-branch labeling. Note below that in the other case, we define
+ * these macros to just be synonyms for PREDICT_(UN)LIKELY.
*/
#define ASSERT_PREDICT_UNLIKELY_(e) \
({ \
1
0

15 Oct '18
commit fd528a0884e706f5ad10422d0c4501ce35254530
Merge: ffaf180b7 dff7d3d00
Author: Nick Mathewson <nickm(a)torproject.org>
Date: Mon Oct 15 10:37:52 2018 -0400
Merge branch 'maint-0.3.3' into maint-0.3.4
changes/bug27709 | 4 ++++
src/common/util_bug.h | 57 +++++++++++++++++++++++++++++++++++++++------------
2 files changed, 48 insertions(+), 13 deletions(-)
1
0

[translation/tails-misc_completed] Update translations for tails-misc_completed
by translation@torproject.org 15 Oct '18
by translation@torproject.org 15 Oct '18
15 Oct '18
commit 9d0870fca7aa99439fd8d64aa10e0aafbffb8a9e
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Oct 15 14:47:18 2018 +0000
Update translations for tails-misc_completed
---
tails.pot | 163 +++++++++++++++++++++++++++++++++++++++-----------------------
1 file changed, 103 insertions(+), 60 deletions(-)
diff --git a/tails.pot b/tails.pot
index 486e18ff5..7f29bfa6e 100644
--- a/tails.pot
+++ b/tails.pot
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: English (http://www.transifex.com/otf/torproject/language/en/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr "The following software is installed automatically from your persistent storage when starting Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr "Build information:\n%s"
msgid "not available"
msgstr "not available"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Please check your list of additional software or read the system log to understand the problem."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Please check your list of additional software or read the system log to understand the problem."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Show Log"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configure"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} and {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Add {packages} to your additional software?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "To install it automatically from your persistent storage when starting Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Install Every Time"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Install Only Once"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "The configuration of your additional software failed."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "To install it automatically when starting Tails, you can create a persistent storage and activate the <b>Additional Software</b> feature."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Create Persistent Storage"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Creating your persistent storage failed."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "You could install {packages} automatically when starting Tails"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "To do so, you need to run Tails from a USB stick installed using <i>Tails Installer</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "Remove {packages} from your additional software?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "This will stop installing {packages} automatically."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Remove"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Installing your additional software from persistent storage..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "This can take several minutes."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "The installation of your additional software failed"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Additional software installed successfully"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "The check for upgrades of your additional software failed"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Please check your network connection, restart Tails, or read the system log to understand the problem."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "The upgrade of your additional software failed"
@@ -281,35 +293,41 @@ msgstr "The upgrade of your additional software failed"
msgid "Documentation"
msgstr "Documentation"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Remove {package} from your additional software? This will stop installing the package automatically."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Failed to remove {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Failed to read additional software configuration"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Stop installing {package} automatically"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
msgid ""
"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
"command line</a>."
msgstr "To do so, install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr "To do so, unlock your persistent storage when starting Tails and install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
msgid ""
"To do so, create a persistent storage and install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
msgstr "To do so, create a persistent storage and install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "To do so, install Tails on a USB stick using <a href=\"tails-installer.desktop\">Tails Installer</a> and create a persistent storage."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[package not available]"
@@ -530,31 +548,37 @@ msgstr "No DNS server was obtained through DHCP or manually configured in Networ
msgid "Failed to run browser."
msgstr "Failed to run browser."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Volume"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Read-Only)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} in {container_path}"
@@ -563,14 +587,14 @@ msgstr "{partition_name} in {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} on {drive_name}"
@@ -579,11 +603,28 @@ msgstr "{partition_name} on {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr "Wrong passphrase or parameters"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr "Error unlocking volume"
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr "Couldn't unlock volume {volume_name}:\n{error_message}"
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "No file containers added"
@@ -605,38 +646,40 @@ msgstr "The file container %s should already be listed."
msgid "Container opened read-only"
msgstr "Container opened read-only"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "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}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Error opening file"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "Not a VeraCrypt container"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "The file %s does not seem to be a VeraCrypt container."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Failed to add container"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "Could not add file container %s: Timeout while waiting for loop setup.Please try using the <i>Disks</i> application instead."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Choose File Container"
1
0

[translation/tails-misc] Update translations for tails-misc
by translation@torproject.org 15 Oct '18
by translation@torproject.org 15 Oct '18
15 Oct '18
commit 86abdfa088f2a8014fae279c43829add5845cbba
Author: Translation commit bot <translation(a)torproject.org>
Date: Mon Oct 15 14:47:12 2018 +0000
Update translations for tails-misc
---
ach.po | 163 +++++++++++++++++++++++++++++++++++---------------------
af.po | 163 +++++++++++++++++++++++++++++++++++---------------------
am.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ar.po | 163 +++++++++++++++++++++++++++++++++++---------------------
arn.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ast.po | 163 +++++++++++++++++++++++++++++++++++---------------------
az.po | 163 +++++++++++++++++++++++++++++++++++---------------------
be.po | 163 +++++++++++++++++++++++++++++++++++---------------------
bg.po | 163 +++++++++++++++++++++++++++++++++++---------------------
bn.po | 163 +++++++++++++++++++++++++++++++++++---------------------
bn_BD.po | 163 +++++++++++++++++++++++++++++++++++---------------------
bo.po | 163 +++++++++++++++++++++++++++++++++++---------------------
br.po | 163 +++++++++++++++++++++++++++++++++++---------------------
bs.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ca.po | 163 +++++++++++++++++++++++++++++++++++---------------------
cs.po | 163 +++++++++++++++++++++++++++++++++++---------------------
cy.po | 163 +++++++++++++++++++++++++++++++++++---------------------
da.po | 165 ++++++++++++++++++++++++++++++++++++---------------------
de.po | 163 +++++++++++++++++++++++++++++++++++---------------------
dz.po | 163 +++++++++++++++++++++++++++++++++++---------------------
el.po | 163 +++++++++++++++++++++++++++++++++++---------------------
en_GB.po | 163 +++++++++++++++++++++++++++++++++++---------------------
eo.po | 163 +++++++++++++++++++++++++++++++++++---------------------
es.po | 163 +++++++++++++++++++++++++++++++++++---------------------
es_AR.po | 163 +++++++++++++++++++++++++++++++++++---------------------
es_CL.po | 163 +++++++++++++++++++++++++++++++++++---------------------
es_CO.po | 163 +++++++++++++++++++++++++++++++++++---------------------
es_MX.po | 163 +++++++++++++++++++++++++++++++++++---------------------
et.po | 163 +++++++++++++++++++++++++++++++++++---------------------
eu.po | 163 +++++++++++++++++++++++++++++++++++---------------------
fa.po | 163 +++++++++++++++++++++++++++++++++++---------------------
fi.po | 163 +++++++++++++++++++++++++++++++++++---------------------
fil.po | 163 +++++++++++++++++++++++++++++++++++---------------------
fo.po | 163 +++++++++++++++++++++++++++++++++++---------------------
fr.po | 165 ++++++++++++++++++++++++++++++++++++---------------------
fur.po | 163 +++++++++++++++++++++++++++++++++++---------------------
fy.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ga.po | 163 +++++++++++++++++++++++++++++++++++---------------------
gd.po | 163 +++++++++++++++++++++++++++++++++++---------------------
gl.po | 165 ++++++++++++++++++++++++++++++++++++---------------------
gu.po | 163 +++++++++++++++++++++++++++++++++++---------------------
gu_IN.po | 163 +++++++++++++++++++++++++++++++++++---------------------
he.po | 163 +++++++++++++++++++++++++++++++++++---------------------
hi.po | 163 +++++++++++++++++++++++++++++++++++---------------------
hr.po | 163 +++++++++++++++++++++++++++++++++++---------------------
hr_HR.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ht.po | 163 +++++++++++++++++++++++++++++++++++---------------------
hu.po | 163 +++++++++++++++++++++++++++++++++++---------------------
hy.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ia.po | 163 +++++++++++++++++++++++++++++++++++---------------------
id.po | 163 +++++++++++++++++++++++++++++++++++---------------------
is.po | 163 +++++++++++++++++++++++++++++++++++---------------------
it.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ja.po | 163 +++++++++++++++++++++++++++++++++++---------------------
jv.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ka.po | 163 +++++++++++++++++++++++++++++++++++---------------------
kk.po | 163 +++++++++++++++++++++++++++++++++++---------------------
km.po | 163 +++++++++++++++++++++++++++++++++++---------------------
kn.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ko.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ko_KR.po | 165 ++++++++++++++++++++++++++++++++++++---------------------
ku.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ku_IQ.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ky.po | 163 +++++++++++++++++++++++++++++++++++---------------------
la.po | 163 +++++++++++++++++++++++++++++++++++---------------------
lb.po | 163 +++++++++++++++++++++++++++++++++++---------------------
lg.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ln.po | 163 +++++++++++++++++++++++++++++++++++---------------------
lo.po | 163 +++++++++++++++++++++++++++++++++++---------------------
lt.po | 163 +++++++++++++++++++++++++++++++++++---------------------
lv.po | 163 +++++++++++++++++++++++++++++++++++---------------------
mg.po | 163 +++++++++++++++++++++++++++++++++++---------------------
mi.po | 163 +++++++++++++++++++++++++++++++++++---------------------
mk.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ml.po | 163 +++++++++++++++++++++++++++++++++++---------------------
mn.po | 163 +++++++++++++++++++++++++++++++++++---------------------
mr.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ms_MY.po | 163 +++++++++++++++++++++++++++++++++++---------------------
mt.po | 163 +++++++++++++++++++++++++++++++++++---------------------
my.po | 163 +++++++++++++++++++++++++++++++++++---------------------
nah.po | 163 +++++++++++++++++++++++++++++++++++---------------------
nap.po | 163 +++++++++++++++++++++++++++++++++++---------------------
nb.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ne.po | 163 +++++++++++++++++++++++++++++++++++---------------------
nl.po | 163 +++++++++++++++++++++++++++++++++++---------------------
nl_BE.po | 163 +++++++++++++++++++++++++++++++++++---------------------
nn.po | 163 +++++++++++++++++++++++++++++++++++---------------------
nso.po | 163 +++++++++++++++++++++++++++++++++++---------------------
oc.po | 163 +++++++++++++++++++++++++++++++++++---------------------
om.po | 163 +++++++++++++++++++++++++++++++++++---------------------
or.po | 163 +++++++++++++++++++++++++++++++++++---------------------
pa.po | 163 +++++++++++++++++++++++++++++++++++---------------------
pap.po | 163 +++++++++++++++++++++++++++++++++++---------------------
pl.po | 163 +++++++++++++++++++++++++++++++++++---------------------
pms.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ps.po | 163 +++++++++++++++++++++++++++++++++++---------------------
pt.po | 163 +++++++++++++++++++++++++++++++++++---------------------
pt_BR.po | 163 +++++++++++++++++++++++++++++++++++---------------------
pt_PT.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ro.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ru.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ru(a)petr1708.po | 163 +++++++++++++++++++++++++++++++++++---------------------
sco.po | 163 +++++++++++++++++++++++++++++++++++---------------------
si_LK.po | 163 +++++++++++++++++++++++++++++++++++---------------------
sk.po | 163 +++++++++++++++++++++++++++++++++++---------------------
sk_SK.po | 165 ++++++++++++++++++++++++++++++++++++---------------------
sl.po | 163 +++++++++++++++++++++++++++++++++++---------------------
sl_SI.po | 163 +++++++++++++++++++++++++++++++++++---------------------
sn.po | 163 +++++++++++++++++++++++++++++++++++---------------------
so.po | 163 +++++++++++++++++++++++++++++++++++---------------------
son.po | 163 +++++++++++++++++++++++++++++++++++---------------------
sq.po | 163 +++++++++++++++++++++++++++++++++++---------------------
sr.po | 163 +++++++++++++++++++++++++++++++++++---------------------
sr(a)latin.po | 163 +++++++++++++++++++++++++++++++++++---------------------
st.po | 163 +++++++++++++++++++++++++++++++++++---------------------
sv.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ta.po | 163 +++++++++++++++++++++++++++++++++++---------------------
tails.pot | 163 +++++++++++++++++++++++++++++++++++---------------------
te.po | 163 +++++++++++++++++++++++++++++++++++---------------------
tg.po | 163 +++++++++++++++++++++++++++++++++++---------------------
th.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ti.po | 163 +++++++++++++++++++++++++++++++++++---------------------
tk.po | 163 +++++++++++++++++++++++++++++++++++---------------------
tr.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ug(a)Arab.po | 163 +++++++++++++++++++++++++++++++++++---------------------
uk.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ur.po | 163 +++++++++++++++++++++++++++++++++++---------------------
ur_PK.po | 163 +++++++++++++++++++++++++++++++++++---------------------
uz.po | 163 +++++++++++++++++++++++++++++++++++---------------------
vi.po | 163 +++++++++++++++++++++++++++++++++++---------------------
zh_CN.po | 163 +++++++++++++++++++++++++++++++++++---------------------
zh_HK.po | 163 +++++++++++++++++++++++++++++++++++---------------------
zh_TW.po | 163 +++++++++++++++++++++++++++++++++++---------------------
133 files changed, 13704 insertions(+), 7985 deletions(-)
diff --git a/ach.po b/ach.po
index 6bbfb1fbf..b9642091f 100644
--- a/ach.po
+++ b/ach.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Acoli (http://www.transifex.com/otf/torproject/language/ach/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/af.po b/af.po
index f7f7bd657..3e9fa46f1 100644
--- a/af.po
+++ b/af.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Afrikaans (http://www.transifex.com/otf/torproject/language/af/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Kanselleer"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/am.po b/am.po
index 3665fc01e..ae952dbf6 100644
--- a/am.po
+++ b/am.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:14+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Amharic (http://www.transifex.com/otf/torproject/language/am/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "ሰርዝ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ar.po b/ar.po
index e24bcbc1a..61ec1c98b 100644
--- a/ar.po
+++ b/ar.po
@@ -29,9 +29,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-14 11:13+0000\n"
-"Last-Translator: Khaled Hosny\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Arabic (http://www.transifex.com/otf/torproject/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -77,7 +77,7 @@ msgid ""
msgstr "نصبت البرمجيات التالية تلقائيا من مساحة التخزين الدائم عند بدأ تشغيل تيلز."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -166,136 +166,148 @@ msgstr "معلومات النسخة:\n%s"
msgid "not available"
msgstr "غير متاح"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "فشل التنصيب. رجاء راجع ضبط البرمجيات الإضافية، أو طالع سجل النظام لمعرفة المشكلة أفضل."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "استعرض السِّجِل"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "اضبط"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "أزِل"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "إلغاء"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "يمكن أن يستغرق هذا بعض الوقت..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -303,35 +315,41 @@ msgstr ""
msgid "Documentation"
msgstr "التوثيق"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -339,20 +357,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -552,31 +570,37 @@ msgstr "لم يتم الحصول على سيرفر DNS من خلال بروتو
msgid "Failed to run browser."
msgstr "خلل في تشغيل المتصفح."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -585,14 +609,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -601,11 +625,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -627,38 +668,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/arn.po b/arn.po
index 1366b23e6..81acbfd79 100644
--- a/arn.po
+++ b/arn.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Mapudungun (http://www.transifex.com/otf/torproject/language/arn/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ast.po b/ast.po
index 9a1b23c31..9bb933b70 100644
--- a/ast.po
+++ b/ast.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Asturian (http://www.transifex.com/otf/torproject/language/ast/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Desaniciar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/az.po b/az.po
index 1530601a0..68abbe07a 100644
--- a/az.po
+++ b/az.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Azerbaijani (http://www.transifex.com/otf/torproject/language/az/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr "Quruluş məlumatı:\n%s"
msgid "not available"
msgstr "qeyri mümkün"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Quraşdır"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Sil"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Ləğv et"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr "Sənədlər"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr "Nə DHCP vasitəsilə heç bir DNS əldə edilmədi, nə də ŞəbəkəM
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/be.po b/be.po
index ff8f04d2e..19000e2d9 100644
--- a/be.po
+++ b/be.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Belarusian (http://www.transifex.com/otf/torproject/language/be/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Наладзіць"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Прыбраць"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/bg.po b/bg.po
index e49be8f5c..95f731074 100644
--- a/bg.po
+++ b/bg.po
@@ -19,9 +19,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:37+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Bulgarian (http://www.transifex.com/otf/torproject/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -67,7 +67,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -156,136 +156,148 @@ msgstr "Билд на информация:\n%s"
msgid "not available"
msgstr "не е в наличност"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Покажи Лог"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Конфигурирай"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Премахване"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Отказ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -293,35 +305,41 @@ msgstr ""
msgid "Documentation"
msgstr "Документация"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -329,20 +347,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -542,31 +560,37 @@ msgstr "DNS сървър не беше получен чрез DHCP или ръ
msgid "Failed to run browser."
msgstr "Неуспех при пускането на браузъра."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -575,14 +599,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -591,11 +615,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -617,38 +658,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/bn.po b/bn.po
index 3b26d56bf..93dab1b33 100644
--- a/bn.po
+++ b/bn.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-07 00:42+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Bengali (http://www.transifex.com/otf/torproject/language/bn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr "Tails শুরু করার সময় নিম্নোক্ত সফটওয়্যারটি আপনার একরোখা ভাণ্ডার থেকে স্বয়ংক্রিয়ভাবে সংস্থাপিত হয় ।"
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr "তথ্য তৈরি করুন::\n%s"
msgid "not available"
msgstr "পাওয়া যায় না"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} অনুগ্রহ করে আপনার অতিরিক্ত সফটওয়্যারের তালিকা পরীক্ষা করুন অথবা সমস্যা বুঝে সিস্টেম কার্যবিবরণী পড়ুন ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "অনুগ্রহ করে আপনার অতিরিক্ত সফটওয়্যারের তালিকা পরীক্ষা করুন অথবা সমস্যা বুঝে সিস্টেম কার্যবিবরণী পড়ুন ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "লগ প্রদর্শন করুন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "কনফিগার করুন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} এবং {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "আপনার অতিরিক্ত সফটওয়্যারের জন্য {packages} যোগ করুন?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Tails শুরু করার সময় আপনার অবিরাম সঞ্চয় থেকে স্বয়ংক্রিয়ভাবে এটি ইনস্টল করতে হবে ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "প্রতিবার ইনস্টল করুন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "শুধুমাত্র একবার সংস্থাপন করুন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "আপনার অতিরিক্ত সফটওয়্যারের কনফিগারেশন ব্যর্থ হয়েছে ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Tails শুরু করার সময় স্বয়ংক্রিয়ভাবে এটি সংস্থাপন করতে, আপনি একটি একরোখা স্টোরেজ তৈরি করতে পারেন এবং <b>অতিরিক্ত সফটওয়্যার</b> বৈশিষ্ট্য সক্রিয় করতে পারবেন ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "অবিরাম স্টোরেজ তৈরি করুন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "আপনার একরোখা ভাণ্ডার তৈরি করা ব্যর্থ হয়েছে ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Tails শুরু করার সময় আপনি {packages}-এ ইনস্টল করতে পারেন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "এটা করতে, Tails ইনস্টলার ব্যবহার করে ইনস্টল করা একটি USB স্টিক থেকে Tails চালানো প্রয়োজন."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "আপনার অতিরিক্ত সফ্টওয়্যার থেকে {packages} অপসারণ করুন?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "এটি স্বয়ংক্রিয়ভাবে {packages} ইনস্টল করা বন্ধ করবে ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "অপসারণ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "বাতিল"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "আপনার অতিরিক্ত সফটওয়্যারকে একরোখা স্টোরেজ থেকে সংস্থাপন করা হচ্ছে..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "এটি কয়েক মিনিট সময় নিতে পারে ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "আপনার অতিরিক্ত সফটওয়্যারের ইনস্টলেশন ব্যর্থ হয়েছে"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "অতিরিক্ত সফ্টওয়্যার সফলভাবে সংস্থাপিত হয়েছে"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "আপনার অতিরিক্ত সফটওয়্যারের আপগ্রেড করার জন্য পরীক্ষণ ব্যর্থ হয়েছে"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "অনুগ্রহ করে আপনার নেটওয়ার্ক কানেকশান চেক করুন, Tails পুনর্সূচনা করুন বা সিস্টেম লগ-ইন সমস্যা বোঝার জন্য পড়ুন."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "আপনার অতিরিক্ত সফটওয়্যারের উচ্চায়ন ব্যর্থ হয়েছে"
@@ -283,35 +295,41 @@ msgstr "আপনার অতিরিক্ত সফটওয়্যার
msgid "Documentation"
msgstr "ডকুমেন্টেশন"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "আপনার অতিরিক্ত সফ্টওয়্যার থেকে {package} অপসারণ করুন? এটি স্বয়ংক্রিয়ভাবে প্যাকেজ ইনস্টল করা বন্ধ করবে ।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "{pkg} অপসারণ করতে ব্যর্থ হয়েছে।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "অতিরিক্ত সফটওয়্যার কনফিগারেশন পড়তে ব্যর্থ"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "{package} স্বয়ংক্রিয়ভাবে ইনস্টল করা থামান"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "তা করতে, <a href=\"synaptic.desktop\">Synaptic প্যাকেজ ম্যানেজার</a> বা <a href=\"org.gnome.Terminal.desktop\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু সফটওয়্যার ইন্সটল করুন ।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr "তা করতে, Tails শুরু করার সময় আপনার একরোখা স্টোরেজ আনলক করুন এবং <a href=\"synaptic.desktop\">Synaptic প্যাকেজ ম্যানেজার</a> বা <a href=\"org.gnome.Terminal.desktop\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু সফটওয়্যার ইনস্টল করে নিন ।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "তাই করতে, একটি একরোখা স্টোরেজ তৈরি করুন এবং <a href=\"synaptic.desktop\">Synaptic প্যাকেজ ম্যানেজার</a> বা <a href=\"org.gnome.Terminal.desktop\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু সফটওয়্যার ইন্সটল করতে হবে ।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "তা করতে, <a href=\"tails-installer.desktop\">Tails ইনস্টলার</a> ব্যবহার করে একটি USB স্টিক থেকে Tails ইনস্টল করুন এবং একটি অবিরাম স্টোরেজ তৈরি করুন ।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[প্যাকেজ সুপ্রাপ্য নয়]"
@@ -532,31 +550,37 @@ msgstr "কোনও DNS সার্ভার DHCP এর মাধ্যমে
msgid "Failed to run browser."
msgstr "ব্রাউজার চালাতে ব্যর্থ হয়েছে"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} ভলিউম"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Read-Only)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} হয় {container_path}"
@@ -565,14 +589,14 @@ msgstr "{partition_name} হয় {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} on {drive_name}"
@@ -581,11 +605,28 @@ msgstr "{partition_name} on {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "কোনো ফাইল ধারক যোগ হয়নি।"
@@ -607,38 +648,40 @@ msgstr "ফাইল ধারক %s ইতোমধ্যে তালিকা
msgid "Container opened read-only"
msgstr "ধারক খোলা রিড-ওনলি"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "ফাইল ধারক {path} লিখন এক্সেস সহ খোলা যায়নি. এটি খোলা হয়েছে শুধুমাত্র তার বদলে । আপনি কন্টেইনার সামগ্রীর বিষয়বস্তু সংশোধন করতে পারবেন না ।\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "ফাইল খুলতে ত্রুটি`"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "VeraCrypt ধারক নয়"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "%s ফাইলটি একটি VeraCrypt ধারক বলে মনে হয় না ।"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "ধারক যোগ করতে ব্যর্থ হয়েছে"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "ফাইল ধারক %s যোগ করা যায়নি: লুপ বিন্যাস করার জন্য অপেক্ষা করার সময় অতিক্রান্ত হয়েছে । অনুগ্রহ করে <i>ডিস্ক</i> প্রয়োগণ পরিবর্তে ব্যবহার করার চেষ্টা করুন ।"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "ফাইল ধারক চয়ন করুন"
diff --git a/bn_BD.po b/bn_BD.po
index 88980ac5c..6df33b6f4 100644
--- a/bn_BD.po
+++ b/bn_BD.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-06 22:54+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Bengali (Bangladesh) (http://www.transifex.com/otf/torproject/language/bn_BD/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -58,7 +58,7 @@ msgid ""
msgstr "Tails শুরু করার সময় নিম্নোক্ত সফটওয়্যারটি আপনার একরোখা ভাণ্ডার থেকে স্বয়ংক্রিয়ভাবে সংস্থাপিত হয় ।"
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -147,136 +147,148 @@ msgstr "তথ্য তৈরি করুন::\n%s"
msgid "not available"
msgstr "পাওয়া যায় না"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} অনুগ্রহ করে আপনার অতিরিক্ত সফটওয়্যারের তালিকা পরীক্ষা করুন অথবা সমস্যা বুঝে সিস্টেম কার্যবিবরণী পড়ুন ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "অনুগ্রহ করে আপনার অতিরিক্ত সফটওয়্যারের তালিকা পরীক্ষা করুন অথবা সমস্যা বুঝে সিস্টেম কার্যবিবরণী পড়ুন ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "লগ প্রদর্শন করুন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "কনফিগার করুন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} এবং {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "আপনার অতিরিক্ত সফটওয়্যারের জন্য {packages} যোগ করুন?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Tails শুরু করার সময় আপনার অবিরাম সঞ্চয় থেকে স্বয়ংক্রিয়ভাবে এটি ইনস্টল করতে হবে ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "প্রতিবার ইনস্টল করুন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "শুধুমাত্র একবার সংস্থাপন করুন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "আপনার অতিরিক্ত সফটওয়্যারের কনফিগারেশন ব্যর্থ হয়েছে ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Tails শুরু করার সময় স্বয়ংক্রিয়ভাবে এটি সংস্থাপন করতে, আপনি একটি একরোখা স্টোরেজ তৈরি করতে পারেন এবং <b>অতিরিক্ত সফটওয়্যার</b> বৈশিষ্ট্য সক্রিয় করতে পারবেন ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "অবিরাম স্টোরেজ তৈরি করুন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "আপনার একরোখা ভাণ্ডার তৈরি করা ব্যর্থ হয়েছে ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Tails শুরু করার সময় আপনি {packages}-এ ইনস্টল করতে পারেন"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "এটা করতে, Tails ইনস্টলার ব্যবহার করে ইনস্টল করা একটি USB স্টিক থেকে Tails চালানো প্রয়োজন."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "আপনার অতিরিক্ত সফ্টওয়্যার থেকে {packages} অপসারণ করুন?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "এটি স্বয়ংক্রিয়ভাবে {packages} ইনস্টল করা বন্ধ করবে ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "অপসারণ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "বাতিল"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "আপনার অতিরিক্ত সফটওয়্যারকে একরোখা স্টোরেজ থেকে সংস্থাপন করা হচ্ছে..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "এটি কয়েক মিনিট সময় নিতে পারে ।"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "আপনার অতিরিক্ত সফটওয়্যারের ইনস্টলেশন ব্যর্থ হয়েছে"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "অতিরিক্ত সফ্টওয়্যার সফলভাবে সংস্থাপিত হয়েছে"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "আপনার অতিরিক্ত সফটওয়্যারের আপগ্রেড করার জন্য পরীক্ষণ ব্যর্থ হয়েছে"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "অনুগ্রহ করে আপনার নেটওয়ার্ক কানেকশান চেক করুন, Tails পুনর্সূচনা করুন বা সিস্টেম লগ-ইন সমস্যা বোঝার জন্য পড়ুন."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "আপনার অতিরিক্ত সফটওয়্যারের উচ্চায়ন ব্যর্থ হয়েছে"
@@ -284,35 +296,41 @@ msgstr "আপনার অতিরিক্ত সফটওয়্যার
msgid "Documentation"
msgstr "ডকুমেন্টেশন"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "আপনার অতিরিক্ত সফ্টওয়্যার থেকে {package} অপসারণ করুন? এটি স্বয়ংক্রিয়ভাবে প্যাকেজ ইনস্টল করা বন্ধ করবে ।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "{pkg} অপসারণ করতে ব্যর্থ হয়েছে।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "অতিরিক্ত সফটওয়্যার কনফিগারেশন পড়তে ব্যর্থ"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "{package} স্বয়ংক্রিয়ভাবে ইনস্টল করা থামান"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "তা করতে, <a href=\"synaptic.desktop\">Synaptic প্যাকেজ ম্যানেজার</a> বা <a href=\"org.gnome.Terminal.desktop\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু সফটওয়্যার ইন্সটল করুন ।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -320,20 +338,20 @@ msgid ""
"line</a>."
msgstr "তা করতে, Tails শুরু করার সময় আপনার একরোখা স্টোরেজ আনলক করুন এবং <a href=\"synaptic.desktop\">Synaptic প্যাকেজ ম্যানেজার</a> বা <a href=\"org.gnome.Terminal.desktop\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু সফটওয়্যার ইনস্টল করে নিন ।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "তাই করতে, একটি একরোখা স্টোরেজ তৈরি করুন এবং <a href=\"synaptic.desktop\">Synaptic প্যাকেজ ম্যানেজার</a> বা <a href=\"org.gnome.Terminal.desktop\">APT কমান্ড লাইন</a> ব্যবহার করে কিছু সফটওয়্যার ইন্সটল করতে হবে ।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "তা করতে, <a href=\"tails-installer.desktop\">Tails ইনস্টলার</a> ব্যবহার করে একটি USB স্টিক থেকে Tails ইনস্টল করুন এবং একটি অবিরাম স্টোরেজ তৈরি করুন ।"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[প্যাকেজ সুপ্রাপ্য নয়]"
@@ -533,31 +551,37 @@ msgstr "কোনও DNS সার্ভার DHCP এর মাধ্যমে
msgid "Failed to run browser."
msgstr "ব্রাউজার চালাতে ব্যর্থ হয়েছে"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} ভলিউম"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Read-Only)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} হয় {container_path}"
@@ -566,14 +590,14 @@ msgstr "{partition_name} হয় {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} on {drive_name}"
@@ -582,11 +606,28 @@ msgstr "{partition_name} on {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "কোনো ফাইল ধারক যোগ হয়নি।"
@@ -608,38 +649,40 @@ msgstr "ফাইল ধারক %s ইতোমধ্যে তালিকা
msgid "Container opened read-only"
msgstr "ধারক খোলা রিড-ওনলি"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "ফাইল ধারক {path} লিখন এক্সেস সহ খোলা যায়নি. এটি খোলা হয়েছে শুধুমাত্র তার বদলে । আপনি কন্টেইনার সামগ্রীর বিষয়বস্তু সংশোধন করতে পারবেন না ।\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "ফাইল খুলতে ত্রুটি`"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "VeraCrypt ধারক নয়"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "%s ফাইলটি একটি VeraCrypt ধারক বলে মনে হয় না ।"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "ধারক যোগ করতে ব্যর্থ হয়েছে"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "ফাইল ধারক %s যোগ করা যায়নি: লুপ বিন্যাস করার জন্য অপেক্ষা করার সময় অতিক্রান্ত হয়েছে । অনুগ্রহ করে <i>ডিস্ক</i> প্রয়োগণ পরিবর্তে ব্যবহার করার চেষ্টা করুন ।"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "ফাইল ধারক চয়ন করুন"
diff --git a/bo.po b/bo.po
index 9f5f0ac31..76befe007 100644
--- a/bo.po
+++ b/bo.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Tibetan (http://www.transifex.com/otf/torproject/language/bo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Remove"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/br.po b/br.po
index 204b0bbd3..4cea780c3 100644
--- a/br.po
+++ b/br.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Breton (http://www.transifex.com/otf/torproject/language/br/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Kefluniañ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Dilemel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/bs.po b/bs.po
index 9f33ff512..07ffe7afe 100644
--- a/bs.po
+++ b/bs.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Bosnian (http://www.transifex.com/otf/torproject/language/bs/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Ukloni"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Otkaži"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ca.po b/ca.po
index edc5a421f..bca34365d 100644
--- a/ca.po
+++ b/ca.po
@@ -19,9 +19,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-06 22:32+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Catalan (http://www.transifex.com/otf/torproject/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -67,7 +67,7 @@ msgid ""
msgstr "El programari següent s'instal·la automàticament des del teu emmagatzematge persistent quan s'inicia Tails"
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -156,136 +156,148 @@ msgstr "Construeix informació:\n%s"
msgid "not available"
msgstr "no disponible"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Comprova la teva llista de programari addicional o llegeix el registre del sistema per entendre el problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Comproveu la vostra llista de programari addicional o llegiu el registre del sistema per entendre el problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Mostra el registre"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configura"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} i {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Afegiu {packages} al vostre programari addicional?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Per instal·lar-lo automàticament des del vostre emmagatzematge persistent en iniciar Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Instal·leu cada vegada"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Instal·la només una vegada"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "Ha fallat la configuració del programari addicional."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Per instal·lar-lo automàticament en iniciar Tails, podeu crear un emmagatzematge persistent i activar la funció de <b>programari addicional</b>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Crea un emmagatzematge persistent"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "S'ha produït un error creant l'emmagatzematge persistent."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Podeu instal·lar {packages} automàticament en iniciar Tails"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Per fer-ho, heu d'executar Tails des d'un dispositiu USB instal·lat amb <i>Tails Installer</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "Elimineu {packages} del programari addicional?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Això evitarà la instal·lació de {packages} automàticament."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Suprimeix la subscripció"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel·la"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Instal·lant el programari addicional des d'un emmagatzematge persistent ..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Això pot trigar uns quants minuts."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "Ha fallat la instal·lació del programari addicional"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "S'ha instal·lat un programari addicional amb èxit"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "S'ha produït un error en la comprovació d'actualitzacions del programari addicional"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Comproveu la vostra connexió de xarxa, reinicieu Tails o llegiu el registre del sistema per entendre el problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "S'ha produït un error en l'actualització del programari addicional"
@@ -293,35 +305,41 @@ msgstr "S'ha produït un error en l'actualització del programari addicional"
msgid "Documentation"
msgstr "Documentació"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Elimina {package} del programari addicional? Això deixarà d'instal·lar el paquet automàticament."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "No s'ha pogut eliminar {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "No s'ha pogut llegir la configuració addicional del programari"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "No instal·leu {package} automàticament"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "Per fer-ho, instal·leu algun programari utilitzant <a href=\"synaptic.desktop\">Synaptic Package Manager</a> o <a href=\"org.gnome.Terminal.desktop\">APT a la línia d'ordres</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -329,20 +347,20 @@ msgid ""
"line</a>."
msgstr "Per fer-ho, desbloqueja el vostre emmagatzematge persistent en iniciar Tails i instal·leu algun programari utilitzant <a href=\"synaptic.desktop\">Synaptic Package Manager</a> o <a href=\"org.gnome.Terminal.desktop\">APT a la línia d'ordres</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "Per fer-ho, creeu un emmagatzematge persistent i instal·leu algun programari utilitzant <a href=\"synaptic.desktop\">Synaptic Package Manager</a> o <a href=\"org.gnome.Terminal.desktop\">APT a la línia d'ordres</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Per fer-ho, instal·leu Tails en un llapis USB usant <a href=\"tails-installer.desktop\">Tails Installer</a> i creeu un emmagatzematge persistent."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[paquet no disponible] "
@@ -542,31 +560,37 @@ msgstr "No s'ha obtingut cap servidor DNS a través del DHCP o configurat manual
msgid "Failed to run browser."
msgstr "S'ha fallat en executar el navegador."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Volum"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Lectura només)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} al {container_path}"
@@ -575,14 +599,14 @@ msgstr "{partition_name} al {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} al {drive_name}"
@@ -591,11 +615,28 @@ msgstr "{partition_name} al {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "No s'ha afegit cap contenidor de fitxers"
@@ -617,38 +658,40 @@ msgstr "El contenidor de fitxers %s ja hauria d'estar inclós."
msgid "Container opened read-only"
msgstr "Contenidor obert només ab accés de lectura"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "El contenidor de fitxer {path} no s'ha pogut obrir amb accés d'escriptura. S'ha obert només de lectura. No podreu modificar el contingut del contenidor.\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Error obrint fitxer"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "No es un contenidor VeraCrypt"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "El fitxer %s no sembla ser un contenidor de VeraCrypt."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "No s'ha pogut afegir el contenidor"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "No s'ha pogut afegir el contenidor del fitxer%s: El temps d'espera s'ha esgotat mentre s'espera la configuració del bucle. Siusplau intenteu utilitzar l'aplicació <i>Disks</i> al seu lloc."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Trieu Contenidor d'arxius"
diff --git a/cs.po b/cs.po
index 376919bf3..189847efa 100644
--- a/cs.po
+++ b/cs.po
@@ -17,9 +17,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-12 05:49+0000\n"
-"Last-Translator: Michal Stanke <mstanke(a)mozilla.cz>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -65,7 +65,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -154,136 +154,148 @@ msgstr "Buildovací informace:\n%s"
msgid "not available"
msgstr "nedostupné"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Ukaz zaznam"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfigurovat"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Odstranit"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Zrušit"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -291,35 +303,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentace"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -327,20 +345,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -540,31 +558,37 @@ msgstr "Nebyl získán prostřednictvím DHCP nebo ručně nastaven v Síťovém
msgid "Failed to run browser."
msgstr "Nepodařilo se spustit prohlížeč."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -573,14 +597,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -589,11 +613,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -615,38 +656,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/cy.po b/cy.po
index 0117ee3c7..31ebae033 100644
--- a/cy.po
+++ b/cy.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -58,7 +58,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -147,136 +147,148 @@ msgstr "Gwybodaeth adeilad:\n%s"
msgid "not available"
msgstr "ddim ar gael"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Ffurfweddu"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Canslo"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -284,35 +296,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -320,20 +338,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -533,31 +551,37 @@ msgstr "Doedd ddim gwasanaethwr DNS wedi'i sicrhau trwy DHCP, na trwy ffyrffwedd
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -566,14 +590,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -582,11 +606,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -608,38 +649,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/da.po b/da.po
index 5e11946e8..ea6e5fb7c 100644
--- a/da.po
+++ b/da.po
@@ -14,15 +14,15 @@
# Aesthese, 2013
# Aesthese, 2016
# scootergrisen, 2017-2018
-# Tommy Gade, 2015
+# 7110bbed2db4fadc642a4cd0e91bb1b9, 2015
# Whiz Zurrd <Whizzurrd(a)hmamail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:47+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Danish (http://www.transifex.com/otf/torproject/language/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -68,7 +68,7 @@ msgid ""
msgstr "Følgende software installeres automatisk fra dit vedvarende lager når Tails startes."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -157,136 +157,148 @@ msgstr "Byggeinformation:\n%s"
msgid "not available"
msgstr "ikke tilgængelig"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Tjek venligst din liste over yderligere software eller læs systemloggen for at forstå problemet."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Tjek venligst din liste over yderligere software eller læs systemloggen for at forstå problemet"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Vis Log"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfigurer"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} og {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Tilføj {packages} til dine yderligere software?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "For automatisk at installere software fra dit vedvarende lager når Tails startes."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Installer hver gang"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Installer kun én gang"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "Konfigurationen af dine yderligere software mislykkedes."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Det installeres automatisk når Tails startes. Du kan oprette et vedvarende lager og aktivere <b>Yderligere software</b>-funktionen."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Opret vedvarende lager"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Oprettelse af dit vedvarende lager mislykkedes."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Du kan automatisk installere {packages} når Tails startes"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "For at gøre det skal du køre Tails, fra en USB-pen, som er installeret med <i>Tails-installationsprogram</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "Fjern {packages} fra dine yderligere software?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Det vil stoppe automatisk installation af {packages}."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Fjern"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Annuller"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Installerer dine yderligere software from vedvarende lager..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Det kan tage flere minutter."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "Installationen af dine yderligere software mislykkedes."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Yderligere software blev installeret."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "Søgningen efter opgraderinger af dine yderligere software mislykkedes"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Tjek venligst din internetforbindelse, genstart Tails eller læs systemloggen for at forstå problemet"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "Opgraderingeren af dine yderligere software mislykkedes"
@@ -294,35 +306,41 @@ msgstr "Opgraderingeren af dine yderligere software mislykkedes"
msgid "Documentation"
msgstr "Dokumentation"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Fjern {package} fra dine yderligere software? Det stopper automatisk installationen af pakken."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Kunne ikke fjerne {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Kunne ikke læse konfiguration af yderligere software"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Stop automatisk installation af {package}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "Gør det, ved at installere software med <a href=\"synaptic.desktop\">Synaptic-pakkehåndtering</a> eller <a href=\"org.gnome.Terminal.desktop\">APT i kommandolinjen</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -330,20 +348,20 @@ msgid ""
"line</a>."
msgstr "Gør det, ved at låse op for dit vedvarende lager når Tails startes og installer noget software med <a href=\"synaptic.desktop\">Synaptic-pakkehåndtering</a> eller <a href=\"org.gnome.Terminal.desktop\">APT i kommandolinjen</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "Gør det, ved at oprette et vedvarende lager og installer software med <a href=\"synaptic.desktop\">Synaptic-pakkehåndtering</a> eller <a href=\"org.gnome.Terminal.desktop\">APT i kommandolinjen</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "For at gøre det skal du installere Tails på en USB-pen med <a href=\"tails-installer.desktop\">Tails-installationsprogram</a> og oprette et vedvarende lager."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[pakken er ikke tilgængelig]"
@@ -543,31 +561,37 @@ msgstr "Ingen DNS-server blev fundet gennem DHCP eller den manuelle konfiguratio
msgid "Failed to run browser."
msgstr "Kørslen af browseren fejlede."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} diskområde"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (skrivebeskyttet)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} i {container_path}"
@@ -576,14 +600,14 @@ msgstr "{partition_name} i {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} på {drive_name}"
@@ -592,11 +616,28 @@ msgstr "{partition_name} på {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "Ingen filbeholdere blev tilføjet"
@@ -618,38 +659,40 @@ msgstr "Filbeholderen %s skulle allerede være oplistet."
msgid "Container opened read-only"
msgstr "Beholderen blev åbnet skrivebeskyttet"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "Filbeholderen {path} kunne ikke åbnes med skriveadgang. Den blev i stedet åbnet skrivebeskyttet. Du vil ikke være i stand til at ændre indholdet af beholderen.\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Fejl ved åbning af fil"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "Ikke en VeraCrypt-beholder"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "Filen %s ser ikke ud til at være en VeraCrypt-beholder."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Kunne ikke tilføje beholder"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "Kunne ikke tilføje filbeholderen %s: Fik timeout da der blev ventet på opsætning af løkke. Brug venligst <i>Diske</i>-programmet i stedet."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Vælg filbeholder"
diff --git a/de.po b/de.po
index ddc8956ce..1dfa0451b 100644
--- a/de.po
+++ b/de.po
@@ -34,9 +34,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-07 15:32+0000\n"
-"Last-Translator: Curtis Baltimore <curtisbaltimore(a)protonmail.com>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -82,7 +82,7 @@ msgid ""
msgstr "Die folgende Software wird beim Start von Tails automatisch von deiner beständigen Datenpartition installiert."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -171,136 +171,148 @@ msgstr "Versionsinformation:\n%s"
msgid "not available"
msgstr "nicht verfügbar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Bitte überprüfen Sie die Liste von zusätzlicher Software, oder lesen Sie das Systemprotokoll, um das Problem zu verstehen."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Bitte überprüfen Sie die Liste zusätzlicher Software, oder schauen Sie in die System-Logdatei /var/log/syslog, um das Problem zu verstehen."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Zeige Logdatei"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfigurieren"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} und {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Füge {packages} zusätzlicher Software hinzu?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Um es beim Starten automatisch von der beständigen Datenpartition zu installieren."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Jedes Mal installieren"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Nur ein Mal installieren"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "Die Konfiguration zusätzlicher Software schlug fehl."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Um es automatisch beim Start von Tails zu installieren, können Sie eine beständige Datenpartition erstellen und unter <b>Zusätzliche Software</b> aktivieren."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Beständige Datenpartition erzeugen"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Die Erzeugung der beständigen Datenpartition schlug fehl."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Sie können {packages} automatisch beim Start von Tail installieren."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Dazu müssen Sie Tails von einem USB-Stick starten, der mit dem <i>Tails Installer</i> erzeugt wurde."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "{packages} entfernen von Ihrer zusätzlichen Software?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Dies stoppt das automatische Installieren von {packages}."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Aufheben"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Abbrechen"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Installieren Sie Ihre zusätzliche Software von der beständigen Datenpartition..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Dies kann einige Minuten dauern."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "Die Installation Ihrer zusätzlichen Software schlug fehl."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Ihre zusätzliche Software wurde erfolgreich installiert."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "Die Überprüfung auf Aktualisierungen für Ihre zusätzliche Software schlug fehl."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Bitte überprüfen Sie ihre Netzwerkverbindung, starten Sie Tails neu, oder lesen Sie die System-Logdatei /var/log/syslog, um das Problem zu verstehen."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "Die Aktualisierung Ihrer zusätzlichen Software schlug fehl"
@@ -308,35 +320,41 @@ msgstr "Die Aktualisierung Ihrer zusätzlichen Software schlug fehl"
msgid "Documentation"
msgstr "Dokumentation"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Entfernen Sie {package} von Ihrer zusätzlichen Software? Dadurch werden diese nicht mehr automatisch installiert."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Fehler beim Entfernen von {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Fehler beim Lesen der Konfiguration für zusätzliche Software"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Stoppen Sie die automatische Installation von {package}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "Installieren Sie dazu Software mit der <a href=\"synaptic.desktop\">Synaptic-Paketverwaltung</a> oder <a href=\"org.gnome.Terminal.desktop\">APT auf der Kommandozeile</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -344,20 +362,20 @@ msgid ""
"line</a>."
msgstr "Entsperren Sie dazu Ihren beständige Datenpartition beim Start von Tails, und installieren Sie dazu Software mit der <a href=\"synaptic.desktop\">Synaptic-Paketverwaltung</a> oder <a href=\"org.gnome.Terminal.desktop\">APT auf der Kommandozeile</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "Erstellen Sie dazu eine beständige Datenpartition und installieren Sie gewünschte Software mit der <a href=\"synaptic.desktop\">Synaptic-Paketverwaltung</a> oder <a href=\"org.gnome.Terminal.desktop\">APT auf der Kommandozeile</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Installieren Sie dazu Tails von einem USB-Stick mit dem <a href=\"tails-installer.desktop\">Tails-Installer</a>, und erstellen Sie eine beständige Datenpartition."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[Paket nicht verfügbar]"
@@ -557,31 +575,37 @@ msgstr "Konnte keinen DNS-Server über DHCP oder aus den manuellen Einstellungen
msgid "Failed to run browser."
msgstr "Starten des Browsers fehlgeschlagen."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Volume"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Read-Only)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} in {container_path}"
@@ -590,14 +614,14 @@ msgstr "{partition_name} in {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} auf {drive_name}"
@@ -606,11 +630,28 @@ msgstr "{partition_name} auf {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "Keine Datei-Container hinzugefügt"
@@ -632,38 +673,40 @@ msgstr "Der Container %s sollte bereits aufgelistet sein."
msgid "Container opened read-only"
msgstr "Container schreibgeschützt geöffnet"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "Der Container in {path} konnte nicht mit Schreibzugriff geöffnet werden. Er wurde stattdessen schreibgeschützt geöffnet. Sie können dadurch keine Änderungen am seinem Inhalt vornehmen.\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Fehler beim Öffnen der Datei"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "Kein VeraCrypt-Container"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "Die Datei %s scheint kein VeraCrypt-Container zu sein"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Fehler beim Hinzufügen des Containers"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "Konnte Container %s nicht hinzufügen: Timeout beim Warten auf das Gerät. Bitte versuchen Sie es mit der <i>Disks</i>Anwendung."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Container auswählen"
diff --git a/dz.po b/dz.po
index b6c56154e..22e143f26 100644
--- a/dz.po
+++ b/dz.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Dzongkha (http://www.transifex.com/otf/torproject/language/dz/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/el.po b/el.po
index 36921a592..cb154beea 100644
--- a/el.po
+++ b/el.po
@@ -28,9 +28,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-07 00:45+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -76,7 +76,7 @@ msgid ""
msgstr "Το ακόλουθο λογισμικό εγκαθίσταται αυτόματα από το μόνιμο αποθηκευτικό σας χώρο ξεκινώντας τα Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -165,136 +165,148 @@ msgstr "Πληροφορίες Κατασκεύης:\n%s"
msgid "not available"
msgstr "μη διαθέσιμο"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Παρακαλώ, ελέγξτε τη λίστα σας με τα επιπρόσθετα λογισμικά ή διαβάστε το αρχείο συστήματος για να κατανοήσετε το πρόβλημα."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "[λεπτομέρειες] Παρακαλώ, ελέγξτε τη λίστα σας με τα επιπρόσθετα λογισμικά ή διαβάστε το αρχείο συστήματος για να κατανοήσετε το πρόβλημα."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Εμφάνιση αρχείου καταγραφής"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Διαμόρφωση "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} και {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Να προστεθούν τα {packages} στο επιπρόθετο λογισμικό σας;"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Μπορείτε να εγκαταστήσετε επιπλέον λογισμικό αυτόματα από το μόνιμο αποθηκευτικό σας χώρο ξεκινώντας τα Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Εγκατάσταση κάθε φορά"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Εγκατάσταση μόνο μία φορά"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "Η διαμόρφωση για το επιπρόσθετο λογισμικό απέτυχε."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Για να το εγκαταστήσετε αυτόματα κατά την εκκίνηση των Tails, μπορείτε να δημιουργήσετε ένα μόνιμο αποθηκευτικό χώρο και να ενεργοποιήσετε τη λειτουργία <b>Πρόσθετο λογισμικό</b>. "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Δημιουργία Μόνιμου Αποθηκευτικού Χώρου"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Η δημιουργία μόνιμου αποθηκευτικού χώρου απέτυχε."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Θα μπορούσατε να εγκαταστήσετε {packages} αυτόματα ξεκινώντας τα Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Για να το κάνετε, χρειάζεται να τρέξετε τα Tails από USB στικ εγκατεστημένα, χρησιμοποιώντας τον <i> Εγκαταστάτη Tails </i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "Να αφαιρεθούν τα {packages} από το επιπρόθετο λογισμικό σας;"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Αυτό θα σταματήσει την εγκατάσταση των {packages} αυτόματα."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Απομάκρυνση"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Άκυρο"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Εγκαθιστάται το πρόσθετό σας λογισμικό από το μόνιμο αποθηκευτικό χώρο..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Αυτό μπορεί να πάρει μερικά λεπτά."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "Η εγκατάσταση του πρόσθετου λογισμικού απέτυχε."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Το πρόσθετο λογισμικό εγκαταστάθηκε επιτυχώς."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "Ο έλεγχος για αναβαθμίσεις για τα πρόσθετα λογισμικά σας απέτυχε."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Ελέγξτε την σύνδεσή σας στο διαδίκτυο, επανεκκινήστε τα Tails ή διαβάστε το ιστορικό συστήματος για να κατανοήσετε το πρόβλημα."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "Η αναβάθμιση του πρόσθετού σας λογισμικού απέτυχε."
@@ -302,35 +314,41 @@ msgstr "Η αναβάθμιση του πρόσθετού σας λογισμι
msgid "Documentation"
msgstr "Τεκμηρίωση"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Να αφαιρεθούν τα {package} από το πρόσθετο λογισμικό σας; Αυτό θα σταματήσει την εγκατάσταση των πακέτων αυτόματα."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Απέτυχε η αφαίρεση {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Απέτυχε η ανάγνωση διαμόρφωσης του πρόσθετου λογισμικού"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Σταμάτησε την εγκατάσταση των {package} αυτόματα"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "Για να το κάνετε αυτό, εγκαταστήστε λογισμικό χρησιμοποιώντας το <a href=\"synaptic.desktop\">Synaptic Package Manager</a>ή το <a href=\"org.gnome.Terminal.desktop\">ΑΡΤ στην γραμμή εντολών</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -338,20 +356,20 @@ msgid ""
"line</a>."
msgstr "Για να το κάνετε αυτό, ξεκλειδώστε το μόνιμο αποθηκευτικό σας χώρο κατά την εκκίνηση των Tails και εγκαταστήστε λογισμικό χρησιμοποιώντας το <a href=\"synaptic.desktop\">Synaptic Package Manager</a>ή το <a href=\"org.gnome.Terminal.desktop\">ΑΡΤ στην γραμμή εντολών</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "Για να το κάνετε αυτό, δημιουργήστε μόνιμο αποθηκευτικό χώρο και εγκαταστήστε λογισμικό χρησιμοποιώντας το <a href=\"synaptic.desktop\">Synaptic Package Manager</a>ή το <a href=\"org.gnome.Terminal.desktop\">ΑΡΤ στην γραμμή εντολών</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Για να το κάνετε αυτό, εγκαταστήστε τα Tails σε ένα USB στικ χρησιμοποιώντας τον <a href=\"tails-installer.desktop\">Εγκαταστάτη Tails</a> και δημιουργήστε ένα μόνιμο αποθηκευτικό χώρο."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[πακέτο μη διαθέσιμο]"
@@ -551,31 +569,37 @@ msgstr "Δεν αποκτήθηκε DNS server μέσω DHCP ή μέσω χει
msgid "Failed to run browser."
msgstr "Αποτυχία εκτέλεησης του browser."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Όγκος"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Μόνο-για-ανάγνωση)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} στο {container_path}"
@@ -584,14 +608,14 @@ msgstr "{partition_name} στο {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} - {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} στον {drive_name}"
@@ -600,11 +624,28 @@ msgstr "{partition_name} στον {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} - {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "Δεν προστέθηκαν χώροι για αρχεία."
@@ -626,38 +667,40 @@ msgstr "Ο χώρος των αρχείων %s θα πρέπει να είναι
msgid "Container opened read-only"
msgstr "Ο χώρος άνοιξε μόνο για ανάγνωση."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "Ο χώρος {path} των αρχείων δεν μπορούσε να ανοιχτεί με δυνατότητα συγγραφής. Ήταν μόνο για ανάγνωση. Δεν θα μπορέσετε να τροποποιήσετε το περιεχόμενο του χώρου.\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Λάθος ανοίγματος αρχείου"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "Δεν πρόκειται για φορέα VeraCrypt"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "Το αρχείο %s δεν μοιάζει να έχει φορέα VeraCrypt."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Απέτυχε η πρόσθεση φορέα"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "Δεν μπόρεσε να προστεθεί ο φορέας αρχείου %s: Διάλλειμμα κατά την αναμονή ανοίγματος εγκατάστασης. Παρακαλώ προσπαθήστε να χρησιμοποιήσετε την εφαρμογή <i>δίσκων</i>αντ' αυτού."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Επιλέξτε φορέα αρχείων"
diff --git a/en_GB.po b/en_GB.po
index b25baf3e7..2223efaa6 100644
--- a/en_GB.po
+++ b/en_GB.po
@@ -9,10 +9,10 @@
# Richard Shaylor <rshaylor(a)me.com>, 2014
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/otf/torproject/language/en_GB/)\n"
"MIME-Version: 1.0\n"
@@ -59,7 +59,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -148,136 +148,148 @@ msgstr "Build information:\n%s"
msgid "not available"
msgstr "not available"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configure"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Remove"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -285,35 +297,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -321,20 +339,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -534,31 +552,37 @@ msgstr "No DNS server was obtained through DHCP or manually configured in Networ
msgid "Failed to run browser."
msgstr "Failed to run browser."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -567,14 +591,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -583,11 +607,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -609,38 +650,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/eo.po b/eo.po
index 4b6bb3c66..cd3713f8e 100644
--- a/eo.po
+++ b/eo.po
@@ -6,10 +6,10 @@
# Leopoldo Sabbatini <leosabbat(a)hmamail.com>, 2014
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Esperanto (http://www.transifex.com/otf/torproject/language/eo/)\n"
"MIME-Version: 1.0\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr "Informoj de muntado:\n%s"
msgid "not available"
msgstr "neatingebla"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Forigi"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Rezigni"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr "Neniu DNS-servilo estis ricevita per DHCP aŭ permane agordita en Retago
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/es.po b/es.po
index f0d41337b..ce737784f 100644
--- a/es.po
+++ b/es.po
@@ -17,9 +17,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-07 20:58+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -65,7 +65,7 @@ msgid ""
msgstr "El siguientes software se instala automáticamente de tu almacenamiento persistente cuando arrancas Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -154,136 +154,148 @@ msgstr "Información de versión del paquete (build):\n%s"
msgid "not available"
msgstr "no disponible"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Comprueba la lista de tu software adicional o lee el registro del sistema para entender el problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr " Comprueba tu lista de software adicional o lee el log del sistema para entender el problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Mostrar registro ('log')"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configurar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} y {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "¿Añadir {packages} a tu software adicional?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Para instalarlo automáticamente desde tu almacenamiento permanente cuando inicies Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Instalarlo cada vez"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Instalarlo sólo una vez"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "La configuración de tu software adicional ha fallado."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Para instalarlo automáticamente cuando inicies Tails, has de crear un almacenamiento permanente y activar la función <b>Software Adicional</b>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Crear Almacenamiento Persistente"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "La creación de tu almacenamiento persistente ha fallado."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Podrías instalar {packages} automáticamente al iniciar Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Para hacer eso, necesitas ejecutar Tails desde una memoria USB instalada con <i>Tails Installer</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "¿Quitar {packages} de tu software adicional?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Esto parará la instalación de {packages} de forma automática."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Eliminar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancelar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Instalando tu software adicional desde el almacenamiento persistente..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Esto puede tardar un poco..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "Ha fallado la instalación de software adicional"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Se ha instalado tu software adicional"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "No he podido comprobar si tu software adicional necesita actualizarse."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Por favor, revisa tu conexión de red, reinicia Tails, o lee el registro del sistema para comprender el problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "La actualización de tu software adicional ha fallado. "
@@ -291,35 +303,41 @@ msgstr "La actualización de tu software adicional ha fallado. "
msgid "Documentation"
msgstr "Documentación"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "¿Quitar {package} de tu software adicional? Esto anulará la instalación automática del paquete."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "No se pudo eliminar {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Ha fallado la lectura de la configuración de software adicional "
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Detener la instalación automática de {package}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
msgid ""
"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
"command line</a>."
msgstr "Para hacerlo, instala software usando <a href=\"synaptic.desktop\">el Gestor de Paquetes Synaptic</a> o <a href=\"org.gnome.Terminal.desktop\">con APT en la línea de comandos</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -327,20 +345,20 @@ msgid ""
"line</a>."
msgstr "Para hacerlo, desbloquea tu almacenamiento persistente cuando inicies Tails, e instala software usando <a href=\"synaptic.desktop\">el Gestor de Paquetes Synaptic</a> o <a href=\"org.gnome.Terminal.desktop\">con APT en la línea de comandos</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
msgid ""
"To do so, create a persistent storage and install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
msgstr "Para hacerlo, crea un almacenamiento persistente e instala software usando <a href=\"synaptic.desktop\">el Gestor de Paquetes Synaptic</a> o <a href=\"org.gnome.Terminal.desktop\">con APT en la línea de comandos</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Para hacerlo, instala Tails en una memoria USB utilizando el <a href=\"tails-installer.desktop\">Tails Installer</a> y crea un almacenamiento persistente."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[paquete no disponible]"
@@ -540,31 +558,37 @@ msgstr "No se obtuvo ningún servidor DNS a través de DHCP o configurado manual
msgid "Failed to run browser."
msgstr "Falló al iniciar el navegador."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Volumen"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Sólo lectura)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} en {container_path}"
@@ -573,14 +597,14 @@ msgstr "{partition_name} en {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} en {drive_name}"
@@ -589,11 +613,28 @@ msgstr "{partition_name} en {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "No se añadieron contenedores de archivos"
@@ -615,38 +656,40 @@ msgstr "El contenedor de archivo %s ya debería estar en la lista."
msgid "Container opened read-only"
msgstr "Abierto contenedor de sólo lectura"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "El contenedor de archivo {path} no se debería abrir con permiso de escritura. Ha sido abierto para solo-lectura. No deberías poder modificar el contenido del contenedor. {error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Error al abrir fichero"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "No es un contenedor VeraCrypt"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "El archivo %s no parece ser un contenedor VeraCrypt."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Error al agregar contenedor"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "Imposible añadir contenedor de archivo %s: Tiempo de espera agotado mientras esperaba la configuración del bucle. Prueba a usar la aplicación <i>Disks</i>."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Selecciona contenedor de archivo"
diff --git a/es_AR.po b/es_AR.po
index 47e687cbb..38af3a11a 100644
--- a/es_AR.po
+++ b/es_AR.po
@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-07 00:40+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -61,7 +61,7 @@ msgid ""
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:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -150,136 +150,148 @@ msgstr "Información de esta compilación:\n%s"
msgid "not available"
msgstr "no disponible"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, 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:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
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:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Mostrar bitácora"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configurar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} y {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ","
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, 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:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
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:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Instalar todas las veces"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Instalar sólo una vez"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
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:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
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:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Crear almacenamiento persistente"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Falló creación de tu almacenamiento persistente."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, 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:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Para hacerlo, necesitás correr Tails desde un pendrive instalado usando el <i>Instalador Tails</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "¿Remover {packages} de tus programas adicionales?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, 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:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Remover"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancelar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
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:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Esto puede llevar varios minutos."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
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:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Programas adicionales instalados exitosamente"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
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:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
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:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "La instalación de nuevas versiones de tus programas adicionales falló."
@@ -287,35 +299,41 @@ msgstr "La instalación de nuevas versiones de tus programas adicionales falló.
msgid "Documentation"
msgstr "Documentación"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, 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."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Falló remover {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "La configuración de tu programa adicional falló al ser leída."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, 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:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -323,20 +341,20 @@ msgid ""
"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:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Para hacerlo, instalá Tails en un pendrive usando el <a href=\"tails-installer.desktop\">Instalador Tails</a> y creá un almacenamiento persistente."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[paquete no disponible]"
@@ -536,31 +554,37 @@ msgstr "No hemos obtenido un servidor DNS por medio de DHCP o configurado manual
msgid "Failed to run browser."
msgstr "Falla al ejecutar el Navegador."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Volumen"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Sólo-Lectura)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} en {container_path}"
@@ -569,14 +593,14 @@ msgstr "{partition_name} en {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} en {drive_name}"
@@ -585,11 +609,28 @@ msgstr "{partition_name} en {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "No se añadieron contenedores de archivo"
@@ -611,38 +652,40 @@ msgstr "El contenedor de archivo %s ya debiera estar listado."
msgid "Container opened read-only"
msgstr "Contenedor abierto sólo-lectura"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "El contenedor de archivo {path} no 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/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Error abriendo archivo"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "No es un contenedor VeraCrypt"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "El archivo %s no parece ser un contenedor VeraCrypt"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/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/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "No se pudo añadir contenedor de archivo %s: Tiempo límite alcanzado mientras se estaba esperando por establecimiento del dispositivo loop. Por favor intentar usar la aplicación <i>Disks</i> en su lugar."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Elegir contenedor de archivo"
diff --git a/es_CL.po b/es_CL.po
index 96d24e5e8..93408a30e 100644
--- a/es_CL.po
+++ b/es_CL.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Spanish (Chile) (http://www.transifex.com/otf/torproject/language/es_CL/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancelar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/es_CO.po b/es_CO.po
index 7fc9924b7..76e83a860 100644
--- a/es_CO.po
+++ b/es_CO.po
@@ -6,10 +6,10 @@
# William Beltrán <wbeltranc(a)gmail.com>, 2015
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Spanish (Colombia) (http://www.transifex.com/otf/torproject/language/es_CO/)\n"
"MIME-Version: 1.0\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancelar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/es_MX.po b/es_MX.po
index 62cf41ecf..cfbb2ce94 100644
--- a/es_MX.po
+++ b/es_MX.po
@@ -7,10 +7,10 @@
# Sanxcher Motala <motala.sanxcher(a)yandex.com>, 2017
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/otf/torproject/language/es_MX/)\n"
"MIME-Version: 1.0\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr "Construir información:\n%s"
msgid "not available"
msgstr "No esta disponible"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configurar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Remover"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancelar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/et.po b/et.po
index beae04230..d6c353fe0 100644
--- a/et.po
+++ b/et.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Estonian (http://www.transifex.com/otf/torproject/language/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr "pole saadaval"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Seadista"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Eemalda"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Katkesta"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentatsioon"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/eu.po b/eu.po
index 541a545f8..992e99836 100644
--- a/eu.po
+++ b/eu.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:31+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Basque (http://www.transifex.com/otf/torproject/language/eu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -60,7 +60,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -149,136 +149,148 @@ msgstr "Konpilazioari buruzko informazioa:\n%s"
msgid "not available"
msgstr "ez dago eskuragarri"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Erakutsi erregistroa"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfiguratu"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Kendu"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Utzi"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -286,35 +298,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentazioa"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -322,20 +340,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -535,31 +553,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -568,14 +592,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -584,11 +608,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -610,38 +651,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Akatsa agiria irekitzerakoan"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/fa.po b/fa.po
index 0376c225e..c0fba48e2 100644
--- a/fa.po
+++ b/fa.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-09 15:15+0000\n"
-"Last-Translator: Sim <s.kargar(a)psiphon.ca>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Persian (http://www.transifex.com/otf/torproject/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -72,7 +72,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -161,136 +161,148 @@ msgstr "اطلاعات ساخت:\n %s"
msgid "not available"
msgstr "امکانپذیر نیست"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "نمایش گزارش"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "پیکربندی"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "حذف"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "لغو"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -298,35 +310,41 @@ msgstr ""
msgid "Documentation"
msgstr "مستندات"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -334,20 +352,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -547,31 +565,37 @@ msgstr "هیچ سرور DNS از طریق DHCP یا تنظیم دستی در Net
msgid "Failed to run browser."
msgstr "اجرای مرورگر ناموفق بود."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -580,14 +604,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -596,11 +620,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -622,38 +663,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/fi.po b/fi.po
index 927be02a1..e090d74eb 100644
--- a/fi.po
+++ b/fi.po
@@ -16,9 +16,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:32+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Finnish (http://www.transifex.com/otf/torproject/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -64,7 +64,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -153,136 +153,148 @@ msgstr "Rakentamistiedot:\n%s"
msgid "not available"
msgstr "ei saatavilla"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Näytä loki"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Aseta"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Poista"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Peruuta"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -290,35 +302,41 @@ msgstr ""
msgid "Documentation"
msgstr "Ohjeet"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -326,20 +344,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -539,31 +557,37 @@ msgstr "DHCP:stä tai manuaalisesti asetetusta Verkkohallinnasta ei saatu DNS-pa
msgid "Failed to run browser."
msgstr "Selaimen suorittaminen epäonnistui."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -572,14 +596,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -588,11 +612,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -614,38 +655,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/fil.po b/fil.po
index 6869e0141..04fe0b49c 100644
--- a/fil.po
+++ b/fil.po
@@ -6,10 +6,10 @@
# Kay P., 2014-2015
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Filipino (http://www.transifex.com/otf/torproject/language/fil/)\n"
"MIME-Version: 1.0\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr "hindi pwedeng magamit"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "I-kansela"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/fo.po b/fo.po
index 92605b725..db1ee7650 100644
--- a/fo.po
+++ b/fo.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Faroese (http://www.transifex.com/otf/torproject/language/fo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/fr.po b/fr.po
index d16593225..5bf66d3f6 100644
--- a/fr.po
+++ b/fr.po
@@ -4,7 +4,7 @@
#
# Translators:
# bassmax, 2014-2015
-# Alex <chioubaca(a)gmail.com>, 2014
+# Alex <z-transifex(a)demollien.net>, 2014
# tneskovic <antoine_ecuador(a)yahoo.fr>, 2014
# AO <ao(a)localizationlab.org>, 2018
# apaddlingduck, 2014
@@ -27,9 +27,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-09 15:06+0000\n"
-"Last-Translator: Domiho Zannou <zannou.gery(a)gmail.com>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: French (http://www.transifex.com/otf/torproject/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -75,7 +75,7 @@ msgid ""
msgstr "Les logiciels suivants sont installés automatiquement à partir de votre espace de stockage persistant lors du démarrage de Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -164,136 +164,148 @@ msgstr "Informations de version :\n%s"
msgid "not available"
msgstr "non disponible"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Veuillez consulter votre liste de logiciels supplémentaires ou lire le journal système pour comprendre le problème."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Veuillez consulter votre liste de logiciels additionnels ou lire le journal système pour comprendre le problème."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Afficher le journal"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configurer"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} et {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Ajouter {packages} a votre logiciel supplémentaire?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Pour installer automatiquement de votre stockage persistant quand débute Tails. "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Installer Chaque Fois. "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Installer une seul fois. "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "La configuration de votre logiciel additionnel a échoué."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Pour installer automatiquement quand Tails débutes, vous pouvez créer un stockage persistant and désactiver la fonction <b> du logiciel supplémentaire."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Créer un stockage persistant"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "La creation de votre stockage persistant a échouée. "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Vous pouvez installer {packages} automatiquement quand Tails débute."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Pour le faire, you avez besoin d'opérer Tails depuis une clé USB installée avec <i>L'installeur Tails</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "Retirer {packages} de votre logiciel supplémentaire ? "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Ceci arrêtera l'installation automatique de {packages}."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Supprimer"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Annuler"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Installe votre logiciel supplémentaire depuis stockage persistant..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Cela peut prendre plusieurs minutes."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -301,35 +313,41 @@ msgstr ""
msgid "Documentation"
msgstr "Documentation"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -337,20 +355,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -550,31 +568,37 @@ msgstr "Aucun serveur DNS n’a été obtenu par le DHCP ou n’est configuré m
msgid "Failed to run browser."
msgstr "Échec de démarrage du navigateur."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -583,14 +607,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -599,11 +623,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -625,38 +666,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Erreur d’ouverture du fichier"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/fur.po b/fur.po
index 59d6f7212..7c7415b72 100644
--- a/fur.po
+++ b/fur.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Friulian (http://www.transifex.com/otf/torproject/language/fur/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/fy.po b/fy.po
index 94bf2bdbf..4273d2dcf 100644
--- a/fy.po
+++ b/fy.po
@@ -6,10 +6,10 @@
# Robin van der Vliet <info(a)robinvandervliet.nl>, 2014
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Western Frisian (http://www.transifex.com/otf/torproject/language/fy/)\n"
"MIME-Version: 1.0\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Annulearje"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ga.po b/ga.po
index 1ce6dd460..c73dc3a84 100644
--- a/ga.po
+++ b/ga.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-06 23:42+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Irish (http://www.transifex.com/otf/torproject/language/ga/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr "Suiteálfar na bogearraí seo a leanas go huathoibríoch ó do stóras seasmhach nuair a thosóidh tú Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr "Eolas faoin leagan:\n%s"
msgid "not available"
msgstr "níl ar fáil"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Féach ar liosta na mbogearraí breise nó caith súil ar loganna an chóras chun tuiscint níos fearr a fháil ar an bhfadhb."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Féach ar liosta na mbogearraí breise nó caith súil ar loganna an chóras chun tuiscint níos fearr a fháil ar an bhfadhb."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Taispeáin an Logchomhad"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Cumraigh"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} agus {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "An bhfuil fonn ort {packages} a chur le do chuid bogearraí breise?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Suiteáil uathoibríoch ó do stóras seasmhach nuair a thosaíonn tú Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Suiteáil Gach Uair"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Suiteáil Uair Amháin"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "Theip ar chumraíocht na mbogearraí breise."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Chun é a shuiteáil go huathoibríoch nuair a thosaíonn tú Tails, is féidir leat stóras seasmhach a chruthú agus an ghné <b>Bogearraí Breise</b> a úsáid."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Cruthaigh Stóras Seasmhach"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Níorbh fhéidir an stóras seasmhach a chruthú."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Is féidir leat {packages} a shuiteáil go huathoibríoch nuair a thosaíonn Tails"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Chun é seo a dhéanamh, caithfidh tú Tails a rith ó mhéaróg USB a suiteáladh le <i>Suiteálaí Tails</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "An bhfuil fonn ort {packages} a bhaint de na bogearraí breise?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Ní shuiteálfar {packages} go huathoibríoch a thuilleadh."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Bain"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cealaigh"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Bogearraí breise á suiteáil ón stóras seasmhach..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Seans go dtógfaidh seo cúpla nóiméad."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "Theip ar shuiteáil na mbogearraí breise"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "D'éirigh le suiteáil na mbogearraí breise"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "Earráid agus nuashonruithe ar bhogearraí breise á lorg"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Deimhnigh go bhfuil tú ceangailte leis an Idirlíon, atosaigh Tails, nó caith súil ar loganna an chórais chun tuiscint níos fearr a fháil ar an bhfadhb."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "Theip ar nuashonrú na mbogearraí breise"
@@ -283,35 +295,41 @@ msgstr "Theip ar nuashonrú na mbogearraí breise"
msgid "Documentation"
msgstr "Doiciméadú"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "An bhfuil fonn ort {package} a bhaint de na bogearraí breise? Ní shuiteálfar an pacáiste go huathoibríoch a thuilleadh."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Níorbh fhéidir {pkg} a bhaint"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Níorbh fhéidir cumraíocht na mbogearraí breise a léamh"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Ná suiteáil {package} go huathoibríoch a thuilleadh"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "Len é seo a dhéanamh, suiteáil bogearraí trí <a href=\"synaptic.desktop\">Bhainisteoir Pacáistí Synaptic</a> nó le <a href=\"org.gnome.Terminal.desktop\">APT ar líne na n-orduithe</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr "Len é seo a dhéanamh, díghlasáil an stóras seasmhach nuair a thosaíonn Tails agus suiteáil bogearraí trí <a href=\"synaptic.desktop\">Bhainisteoir Pacáistí Synaptic</a> nó le <a href=\"org.gnome.Terminal.desktop\">APT ar líne na n-orduithe</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "Len é seo a dhéanamh, cruthaigh stóras seasmhach agus suiteáil bogearraí trí <a href=\"synaptic.desktop\">Bhainisteoir Pacáistí Synaptic</a> nó le <a href=\"org.gnome.Terminal.desktop\">APT ar líne na n-orduithe</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Len é seo a dhéanamh, suiteáil Tails ar mhéaróg USB le <a href=\"tails-installer.desktop\">Suiteálaí Tails</a> agus cruthaigh stóras seasmhach."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[níl an pacáiste ar fáil]"
@@ -532,31 +550,37 @@ msgstr "Ní bhfuarthas freastalaí DNS trí DHCP agus ní raibh sé cumraithe de
msgid "Failed to run browser."
msgstr "Níorbh fhéidir an brabhsálaí a thosú."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "Imleabhar {volume_size}"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Inléite Amháin)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} in {container_path}"
@@ -565,14 +589,14 @@ msgstr "{partition_name} in {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} ar {drive_name}"
@@ -581,11 +605,28 @@ msgstr "{partition_name} ar {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "Níor cuireadh aon choimeádán leis"
@@ -607,38 +648,40 @@ msgstr "Ba chóir do choimeádán %s a bheith ar an liosta cheana."
msgid "Container opened read-only"
msgstr "Osclaíodh an coimeádán sa mód inléite amháin"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "Níorbh fhéidir an coimeádán {path} a oscailt sa mód inscríofa. Osclaíodh sa mód inléite amháin é. Ní bheidh tú in ann an t-ábhar sa gcoimeádán a athrú.\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Earráid agus an comhad á oscailt"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "Ní coimeádán VeraCrypt é seo"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "Ní coimeádán VeraCrypt é an comhad %s, de réir cosúlachta."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Níorbh fhéidir an coimeádán a chur leis"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "Níorbh fhéidir coimeádán %s a chur leis: Thar am agus ag fanacht le socrú na lúibe. Bain triail as an bhfeidhmchlár <i>Dioscaí</i> ina áit sin."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Roghnaigh Coimeádán"
diff --git a/gd.po b/gd.po
index f992abf8a..aa2f3d2c9 100644
--- a/gd.po
+++ b/gd.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Gaelic, Scottish (http://www.transifex.com/otf/torproject/language/gd/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/gl.po b/gl.po
index 19f768a42..f4d7d6bbf 100644
--- a/gl.po
+++ b/gl.po
@@ -8,11 +8,11 @@
# Xnake, 2016
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 22:06+0000\n"
-"Last-Translator: Heitor <heitor.real(a)gmail.com>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Galician (http://www.transifex.com/otf/torproject/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -58,7 +58,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -147,136 +147,148 @@ msgstr "Información da Compilación:\n%s"
msgid "not available"
msgstr "non dispoñíbel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Amosar rexistro"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configurar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Eliminar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancelar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -284,35 +296,41 @@ msgstr ""
msgid "Documentation"
msgstr "Documentación"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -320,20 +338,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -533,31 +551,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -566,14 +590,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -582,11 +606,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -608,38 +649,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/gu.po b/gu.po
index c165e0d08..fe41cade9 100644
--- a/gu.po
+++ b/gu.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-06 10:47+0000\n"
-"Last-Translator: Michael Hathi <numerativetech(a)gmail.com>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Gujarati (http://www.transifex.com/otf/torproject/language/gu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "દૂર કરો"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "રદ્ કરો"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/gu_IN.po b/gu_IN.po
index 992fbfb76..1bb8bd240 100644
--- a/gu_IN.po
+++ b/gu_IN.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Gujarati (India) (http://www.transifex.com/otf/torproject/language/gu_IN/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "રદ કરો"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/he.po b/he.po
index d1e37b2a9..045bfb5a0 100644
--- a/he.po
+++ b/he.po
@@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-06 23:41+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -62,7 +62,7 @@ msgid ""
msgstr "התוכנה הבאה מותקנת באופן אוטומטי מהאחסון המתמיד שלך בעת התחלת Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -151,136 +151,148 @@ msgstr "מידע בניה:\n%s"
msgid "not available"
msgstr "בלתי זמין"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} אנא בדוק את הרשימה של התוכנה הנוספת שלך או קרא את יומן האירועים של המערכת כדי להבין את הבעיה."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "אנא בדוק את הרשימה של תוכנה נוספת שלך או קרא את יומן האירועים של המערכת כדי להבין את הבעיה."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "הצג יומן"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "הגדר"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} ו {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "להוסיף את {packages} לתוכנה הנוספת שלך?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "כדי להתקין זאת באופן אוטומטי מהאחסון המתמיד שלך בעת התחלת Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "התקן בכל פעם"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "התקן פעם אחת בלבד"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "התצורה של התוכנה הנוספת שלך נכשלה."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "כדי להתקין זאת באופן אוטומטי בעת התחלת Tails, אתה יכול ליצור אחסון מתמיד ולשפעל את המאפיין <b>תוכנה נוספת</b>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "צור אחסון מתמיד"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "יצירת האחסון המתמיד שלך נכשלה."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "אתה יכול להתקין {packages} באופן אוטומטי בעת התחלת Tails"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "כדי לעשות זאת, אתה צריך להריץ את Tails מתוך החסן USB ע\"י שימוש ב<i>מתקין Tails</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "האם להסיר את {packages} מהתוכנה הנוספת שלך?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "זה יפסיק להתקין את {packages} באופן אוטומטי."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "הסר"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "ביטול"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "מתקין את התוכנה הנוספת שלך מאחסון מתמיד..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "זה עשוי לקחת מספר דקות."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "ההתקנה של התוכנה הנוספת שלך נכשלה"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "תוכנה נוספת הותקנה בהצלחה"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "הבדיקה אחר שדרוגים של התוכנה הנוספת שלך נכשלה"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "אנא בדוק את חיבור הרשת שלך, הפעל מחדש את Tails או קרא את יומן האירועים של המערכת כדי להבין את הבעיה."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "השדרוג של התוכנה הנוספת שלך נכשל"
@@ -288,35 +300,41 @@ msgstr "השדרוג של התוכנה הנוספת שלך נכשל"
msgid "Documentation"
msgstr "תיעוד"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "האם להסיר את {package} מהתוכנה הנוספת שלך? זה יפסיק להתקין את החבילה באופן אוטומטי."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "נכשל בהסרה {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "נכשל בקריאת תצורה של תוכנה נוספת"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "הפסק להתקין את {package} באופן אוטומטי"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "כדי לעשות זאת, התקן תוכנה כלשהי ע\"י שימוש ב<a href=\"synaptic.desktop\">מנהל חבילות סינפטיות</a> או ב-<a href=\"org.gnome.Terminal.desktop\">APT על שורת הפקודה</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -324,20 +342,20 @@ msgid ""
"line</a>."
msgstr "כדי לעשות זאת, בטל נעילת אחסון מתמיד שלך בעת התחלת Tails והתקן תוכנה כלשהי ע\"י שימוש ב<a href=\"synaptic.desktop\">מנהל חבילות סינפטיות</a> או ב-<a href=\"org.gnome.Terminal.desktop\">APT על שורת הפקודה</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "כדי לעשות זאת, צור אחסון מתמיד והתקן תוכנה כלשהי ע\"י שימוש ב<a href=\"synaptic.desktop\">מנהל חבילות סינפטיות</a> או ב-<a href=\"org.gnome.Terminal.desktop\">APT על שורת הפקודה</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "כדי לעשות זאת, התקן את Tails על החסן USB ע\"י שימוש ב<a href=\"tails-installer.desktop\">מתקין Tails</a> וצור אחסון מתמיד."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[package not available]"
@@ -537,31 +555,37 @@ msgstr "לא הושג שרת DNS דרך DHCP או שהוא לא הוגדר בא
msgid "Failed to run browser."
msgstr "נכשל בהרצת הדפדפן."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} כרך"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (קריאה בלבד)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} ב {container_path}"
@@ -570,14 +594,14 @@ msgstr "{partition_name} ב {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} על {drive_name}"
@@ -586,11 +610,28 @@ msgstr "{partition_name} על {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "לא התווספו מֵכַלי קבצים"
@@ -612,38 +653,40 @@ msgstr "מֵכַל הקבצים %s אמור להיות כבר כתוב ברשי
msgid "Container opened read-only"
msgstr "מֵכַל נפתח עם קריאה בלבד"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "מֵכַל הקבצים {path} לא היה יכול להיפתח עם גישת כתיבה. הוא נפתח עם קריאה־בלבד במקום. לא תוכל לשנות את תוכן המֵכַל.\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "שגיאה בפתיחת קובץ"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "לא מֵכַל VeraCrypt"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "נראה שהקובץ %s אינו מֵכַל VeraCrypt."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "נכשל בהוספת מֵכַל"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "לא היה ניתן להוסיף מכל קבצים %s: פסק זמן בעת המתנה אל הגדרת לולאה. אנא נסה להשתמש ביישום <i>דיסקים</i> במקום."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "בחר מֵכַל קבצים"
diff --git a/hi.po b/hi.po
index 6d434fcfe..f78035e6c 100644
--- a/hi.po
+++ b/hi.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "कॉन्फ़िगर"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "हटाना"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "रद्द करें"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/hr.po b/hr.po
index 9cff798ad..ded8ea588 100644
--- a/hr.po
+++ b/hr.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Croatian (http://www.transifex.com/otf/torproject/language/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfiguriraj"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Ukloni"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentacija"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/hr_HR.po b/hr_HR.po
index 8d9789d28..4d89a13d7 100644
--- a/hr_HR.po
+++ b/hr_HR.po
@@ -10,10 +10,10 @@
# Neven Lovrić <neven(a)lovric.net>, 2014
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Croatian (Croatia) (http://www.transifex.com/otf/torproject/language/hr_HR/)\n"
"MIME-Version: 1.0\n"
@@ -60,7 +60,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -149,136 +149,148 @@ msgstr "Informacije o verziji:\n%s"
msgid "not available"
msgstr "nije dostupno"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Prikaži Dnevnik"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfiguriraj"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Ukloni"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Otkaži"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -286,35 +298,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentacija"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -322,20 +340,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -535,31 +553,37 @@ msgstr "Nijedan DNS server nije dobavljen kroz DHCP ili ručno konfiguriran u mr
msgid "Failed to run browser."
msgstr "Neuspjelo pokretanje preglednika."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -568,14 +592,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -584,11 +608,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -610,38 +651,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ht.po b/ht.po
index a2ecf93d9..98aaec6ff 100644
--- a/ht.po
+++ b/ht.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Haitian (Haitian Creole) (http://www.transifex.com/otf/torproject/language/ht/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/hu.po b/hu.po
index 5cf4ac948..3f61b6c7a 100644
--- a/hu.po
+++ b/hu.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 01:03+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Hungarian (http://www.transifex.com/otf/torproject/language/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -63,7 +63,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -152,136 +152,148 @@ msgstr "Verzió információ:\n%s"
msgid "not available"
msgstr "nem elérhető"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Log megtekintése"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Beállít"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Telepítés mindig"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Telepítés egy alkalommal"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Eltávolít"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Mégse"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -289,35 +301,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentáció"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -325,20 +343,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -538,31 +556,37 @@ msgstr "Nincs elérhető DNS szerver DHCP-n keresztül, vagy manuálisan van be
msgid "Failed to run browser."
msgstr "A böngésző indítása sikertelen."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Volume"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (csak olvasható)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} a {container_path} útvonalon"
@@ -571,14 +595,14 @@ msgstr "{partition_name} a {container_path} útvonalon"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} a {drive_name} drive-on"
@@ -587,11 +611,28 @@ msgstr "{partition_name} a {drive_name} drive-on"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "Nincs fájl konténer hozzáadva"
@@ -613,38 +654,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr "A konténer csak olvasásra nyitott"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Hiba a fájl megnyitásakor"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Sikertelen a konténer hozzáadása"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Válasszon fájl konténert"
diff --git a/hy.po b/hy.po
index 5e5fbc127..bee392e7c 100644
--- a/hy.po
+++ b/hy.po
@@ -6,10 +6,10 @@
# Hrach Mkrtchyan <mhrach87(a)gmail.com>, 2018
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Armenian (http://www.transifex.com/otf/torproject/language/hy/)\n"
"MIME-Version: 1.0\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Հեռացնել"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Չեղարկել"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ia.po b/ia.po
index 0c302e4de..3cda802fc 100644
--- a/ia.po
+++ b/ia.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Interlingua (http://www.transifex.com/otf/torproject/language/ia/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Monstrar registros"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancellar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/id.po b/id.po
index 668813a37..d8034af8e 100644
--- a/id.po
+++ b/id.po
@@ -19,9 +19,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-12 06:14+0000\n"
-"Last-Translator: Muhammad Yusuf <myusuffin(a)gmail.com>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Indonesian (http://www.transifex.com/otf/torproject/language/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -67,7 +67,7 @@ msgid ""
msgstr "Perangkat lunak ini terpasang secara otomatis dari tempat penyimpanan tetap saat memulai Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -156,136 +156,148 @@ msgstr "Build information:\n%s"
msgid "not available"
msgstr "tak tersedia"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{detail} tolong, mohon cek daftar perangkat lunak tambahan anda atau baca catatan sistem untuk memahami masalahnya."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "tolong, mohon cek daftar perangkat lunak tambahan anda atau baca catatan sistem untuk memahami masalahnya."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Tampilkan Log"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfigurasikan"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{awal} dan {akhir}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ","
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "menambah {paket} untuk perangkat lunak tambahanmu"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Untuk memasangnya secara otomatis dari tempat penyimpanan tetap Anda saat memulai Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Memasang Setiap Waktu"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Memasang Hanya Sekali"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "Konfigurasi pada perangkat lunak tambahan Anda gagal."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Untuk memasang secara otomatis saat memulai Tails, Anda dapat membuat tempat penyimpanan tetap dan mengaktifkan fitur <b>Perangkat Lunak Tambahan</b>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Membuat Penyimpanan Persisten"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Gagal membuat penyimpanan persisten Anda."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Hapus"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Batal"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -293,35 +305,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentasi"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -329,20 +347,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -542,31 +560,37 @@ msgstr "Server non-DNS didapati melalui DHCP atau dikonfigurasi manual di Networ
msgid "Failed to run browser."
msgstr "Gagal menjalankan peramban."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -575,14 +599,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -591,11 +615,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -617,38 +658,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "gagal membuka berkas"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/is.po b/is.po
index 6eb1ba455..44ca1c592 100644
--- a/is.po
+++ b/is.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 08:07+0000\n"
-"Last-Translator: Sveinn í Felli <sv1(a)fellsnet.is>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Icelandic (http://www.transifex.com/otf/torproject/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr "Eftirfarandi viðbótarhugbúnaður verður settur upp sjálfvirkt úr varanlegu gagnageymslunni þinni við ræsingu Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr "Byggingarupplýsingar:\n%s"
msgid "not available"
msgstr "ekki tiltækt"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Athugaðu listann yfir viðbótarhugbúnaðinn eða lestu kerfisannálana svo þú getir skilið betur hvað er í gangi."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Athugaðu listann yfir viðbótarhugbúnaðinn eða lestu kerfisannálana svo þú getir skilið betur hvað er í gangi."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Birta atvikaskrá"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Stilla"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} og {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Bæta {packages} í viðbótarhugbúnaðinn þinn?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Til að setja þetta sjálfvirkt upp úr varanlegri gagnageymslu við ræsingu Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Setja upp í hvert skipti"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Setja upp aðeins einu sinni"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "Stillingar á viðbótarhugbúnaðnum þínum mistókst."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Til að setja þetta sjálfvirkt upp við ræsingu Tails, geturðu útbúið úr varanlega gagnageymslu og virkjað eiginleikann <b>Viðbótarhugbúnaður</b>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Útbúa varanlega gagnageymslu"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Mistókst að útbúa varanlega gagnageymslu."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Þú getur sett upp {packages} sjálfvirkt við ræsingu Tails"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Til að gera þetta, þarftu að keyra Tails af USB-minnislykli sem útbúinn hefur verið með <i>Tails-uppsetningarforritinu</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "Fjarlægja {packages} úr viðbótarhugbúnaðnum þínum?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Þetta mun hætta að setja upp {packages} sjálfvirkt."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Fjarlægja"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Hætta við"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Set sjálfvirkt upp viðbótarhugbúnað úr varanlegri gagnageymslu..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Þetta gæti tekið nokkrar mínútur."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "Uppsetning á viðbótarhugbúnaðnum þínum mistókst"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Það tókst að setja upp viðbótarhugbúnað"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "Athugun á uppfærslum á viðbótarhugbúnaðnum þínum mistókst"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Athugaðu nettenginguna þína, endurræstu Tails eða lestu kerfisannálana svo þú getir skilið betur hvað er í gangi."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "Uppfærsla á viðbótarhugbúnaðnum þínum mistókst"
@@ -282,35 +294,41 @@ msgstr "Uppfærsla á viðbótarhugbúnaðnum þínum mistókst"
msgid "Documentation"
msgstr "Hjálparskjöl"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Fjarlægja {package} úr viðbótarhugbúnaðnum þínum? Þá verður hætt setja upp viðbótarhugbúnaðarpakkann sjálfvirkt."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Mistókst að fjarlægja {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Mistókst að lesa uppsetningu viðbótarhugbúnaðar"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Hætta að setja upp {package} sjálfvirkt"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "Til að gera þetta, skaltu setja upp einhvern hugbúnað með <a href=\"synaptic.desktop\">Synaptic pakkastjóranum</a> eða með <a href=\"org.gnome.Terminal.desktop\">APT á skipanalínu</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr "Til að gera þetta, skaltu aflæsa varanlegu gagnageymslunni þinni þegar Tails ræsist og setja síðan upp einhvern hugbúnað með <a href=\"synaptic.desktop\">Synaptic pakkastjóranum</a> eða með <a href=\"org.gnome.Terminal.desktop\">APT á skipanalínu</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "Til að gera þetta, skaltu útbúa varanlega gagnageymslu og setja síðan upp einhvern hugbúnað með <a href=\"synaptic.desktop\">Synaptic pakkastjóranum</a> eða með <a href=\"org.gnome.Terminal.desktop\">APT á skipanalínu</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Til að gera þetta, settu Tails upp á USB-minnislykil með <a href=\"tails-installer.desktop\">Tails-uppsetningarforritinu</a> og útbúðu varanlega gagnageymslu."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[pakki ekki tiltækur]"
@@ -531,31 +549,37 @@ msgstr "Enginn DNS-nafnaþjónn fékkst í gegnum DHCP eða var skilgreindur í
msgid "Failed to run browser."
msgstr "Mistókst að ræsa vafra."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} gagnarými"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (skrifvarið)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} í {container_path}"
@@ -564,14 +588,14 @@ msgstr "{partition_name} í {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} á {drive_name}"
@@ -580,11 +604,28 @@ msgstr "{partition_name} á {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "Engum skráagámum bætt við"
@@ -606,38 +647,40 @@ msgstr "Skráagámurinn %s ætti þegar að vera á listanum."
msgid "Container opened read-only"
msgstr "Skráagámur var opnaður í lesham"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "Ekki var hægt að opna skráagáminn {path} með skrifheimildum. Í staðinn var hann opnaður í lesham. Þú munt ekki geta breytt innihaldi skráagámsins.\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Villa við að opna skrá"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "Er ekki VeraCrypt skráagámur"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "Skráin %s lítur ekki út fyrir að vera VeraCrypt skráagámur."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Tókst ekki að bæta við skráagámi"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "Gat ekki bætt við skráagámnum %s: Rann út á tíma meðan beðið var eftir uppsetningu á hringbeiningu. Notaðu frekar <i>Diskar</i> forritið."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Veldu skráagám"
diff --git a/it.po b/it.po
index ebec472b8..f7730bd23 100644
--- a/it.po
+++ b/it.po
@@ -30,9 +30,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 01:08+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -78,7 +78,7 @@ msgid ""
msgstr "Il seguente software è installato automaticamente dalla tua archiviazione persistente all'avvio di Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -167,136 +167,148 @@ msgstr "Informazioni rilascio:\n%s"
msgid "not available"
msgstr "non disponibile"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Controlla il tuo elenco di software aggiuntivi o leggi il log di sistema per scoprire il problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Controlla il tuo elenco di software aggiuntivi o leggi il log di sistema per scoprire il problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Mostra log"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configura"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} e {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Aggiungere {packages} ai tuoi software aggiuntivi?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Per installarlo automaticamente dalla tua archiviazione persistente all'avvio di Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Installa ogni volta"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Installa solo una volta"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "La configurazione del tuo software aggiuntivo è fallita."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Per installarlo automaticamente all'avvio di Tails, puoi creare un'archiviazione persistente e attivare la funzione <b>Software aggiuntivo</b>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Crea archiviazione persistente"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Creazione dell'archiviazione persistente fallita."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Potresti installare {packages} automaticamente all'avvio di Tails"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Per farlo, devi avviare Tails da una penna USB installato tramite il <i>Tails Installer</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "Rimuovere {packages} dai software aggiuntivi?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Ciò eviterà l'installazione automatica di {packages}."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Rimuovi"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Annulla"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Installazione del software aggiuntivo dall'archivio persistente..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Questa operazione può richiedere diversi minuti."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "L'installazione del software aggiuntivo è fallita"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Software aggiuntivo installato con successo"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "La verifica di aggiornamenti del software aggiuntivo è fallita"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Controlla la tua connessione di rete, riavvia Tails, o leggi il log di sistema per scoprire il problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "L'aggiornamento del software aggiuntivo è fallito"
@@ -304,35 +316,41 @@ msgstr "L'aggiornamento del software aggiuntivo è fallito"
msgid "Documentation"
msgstr "Documentazione"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Rimuovere {package} dai software aggiuntivi? Il software non verrà più installato automaticamente."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Errore nella rimozione di {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Errore nella lettura della configurazione per il software aggiuntivo"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Non installare più {package} automaticamente"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "Per farlo, installa qualche software usando <a href=\"synaptic.desktop\">Synaptic Package Manager</a> o <a href=\"org.gnome.Terminal.desktop\">APT da riga di comando</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -340,20 +358,20 @@ msgid ""
"line</a>."
msgstr "Per farlo, sblocca l'archiviazione persistente all'avvio di Tails e installa qualche software usando <a href=\"synaptic.desktop\">Synaptic Package Manager</a> o <a href=\"org.gnome.Terminal.desktop\">APT da riga di comando</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "Per farlo, crea un'archiviazione persistente e installa qualche software usando <a href=\"synaptic.desktop\">Synaptic Package Manager</a> o <a href=\"org.gnome.Terminal.desktop\">APT da riga di comando</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Per farlo, installa Tails su una penna USB usando <a href=\"tails-installer.desktop\">l'installer di Tails</a> e crea un'archiviazione persistente"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[package not available]"
@@ -553,31 +571,37 @@ msgstr "Nessun server DNS ottenuto attraverso DHCP o configurato manualmente nel
msgid "Failed to run browser."
msgstr "Esecuzione del browser fallita."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Volume"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Sola lettura)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} in {container_path}"
@@ -586,14 +610,14 @@ msgstr "{partition_name} in {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} su {drive_name}"
@@ -602,11 +626,28 @@ msgstr "{partition_name} su {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "Nessun contenitore di file aggiunto"
@@ -628,38 +669,40 @@ msgstr "Il contenitore di file %s dovrebbe già essere elencato."
msgid "Container opened read-only"
msgstr "Contenitore aperto in sola lettura"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "Impossibile aprire Il contenitore di file {path} con accesso in scrittura. È stato invece aperto in sola lettura. Non potrai modificarne il contenuto.\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Errore nell'apertura del file"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "Non un contenitore VeraCrypt"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "Il file %s non sembra essere un container VeraCrypt"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Errore nell'aggiunta del container"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "Impossibile aggiungere il contenitore di file %s: tempo scaduto configurando il loop. Riprova usando l'applicazione <i>Dischi</i>."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Scegli contenitore di file"
diff --git a/ja.po b/ja.po
index 5cdd9ae00..1171b72c1 100644
--- a/ja.po
+++ b/ja.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:58+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -68,7 +68,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -157,136 +157,148 @@ msgstr "ビルド情報:\n%s"
msgid "not available"
msgstr "利用不可"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "ログの表示"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "設定"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "解除"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "キャンセル"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -294,35 +306,41 @@ msgstr ""
msgid "Documentation"
msgstr "文書"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -330,20 +348,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -543,31 +561,37 @@ msgstr "DNSサーバーは、DHCP経由で取得されるか、またはNetworkM
msgid "Failed to run browser."
msgstr "ブラウザーを起動できませんでした。"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -576,14 +600,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -592,11 +616,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -618,38 +659,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "ファイルオープン中のエラー"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/jv.po b/jv.po
index 701c618a7..00ec5ebc9 100644
--- a/jv.po
+++ b/jv.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Javanese (http://www.transifex.com/otf/torproject/language/jv/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ka.po b/ka.po
index def3b2117..c47fa3a4b 100644
--- a/ka.po
+++ b/ka.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-13 01:57+0000\n"
-"Last-Translator: A. C. <georgianization(a)outlook.com>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Georgian (http://www.transifex.com/otf/torproject/language/ka/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr "ანაწყობის მონაცემები:\n%s"
msgid "not available"
msgstr "არაა ხელმისაწვდომი"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "გამართვა"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "წაშლა"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "გაუქმება"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr "ბრაუზერის გაშვება ვერ მოხერხდა."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} – {container_path}"
@@ -565,14 +589,14 @@ msgstr "{partition_name} – {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} – {drive_name}"
@@ -581,11 +605,28 @@ msgstr "{partition_name} – {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "ფაილის სათავსები არ დამატებულა"
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "შეცდომა ფაილის გახსნისას"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/kk.po b/kk.po
index 86ff93886..18fcbda61 100644
--- a/kk.po
+++ b/kk.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Kazakh (http://www.transifex.com/otf/torproject/language/kk/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Болдырмау"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/km.po b/km.po
index c7b2ecbee..bc61e7a07 100644
--- a/km.po
+++ b/km.po
@@ -7,10 +7,10 @@
# Sok Sophea <sksophea(a)gmail.com>, 2014
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Khmer (http://www.transifex.com/otf/torproject/language/km/)\n"
"MIME-Version: 1.0\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr "ព័ត៌មានស្ថាបនា៖\n%s"
msgid "not available"
msgstr "មិនមាន"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "កំណត់រចនាសម្ព័ន្ធ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "ដកចេញ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "បោះបង់"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr "ឯកសារ"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr "មិនបានទទួលម៉ាស៊ីនមេ DN
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/kn.po b/kn.po
index 6073419ff..4481b44cc 100644
--- a/kn.po
+++ b/kn.po
@@ -6,10 +6,10 @@
# samruda <samruda94(a)gmail.com>, 2013
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Kannada (http://www.transifex.com/otf/torproject/language/kn/)\n"
"MIME-Version: 1.0\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ko.po b/ko.po
index 0e0998d9d..672d5cf97 100644
--- a/ko.po
+++ b/ko.po
@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:31+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Korean (http://www.transifex.com/otf/torproject/language/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -61,7 +61,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -150,136 +150,148 @@ msgstr "생성 정보:\n%s"
msgid "not available"
msgstr "불가능"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "로그 보기"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "구성"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "제거"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "취소"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -287,35 +299,41 @@ msgstr ""
msgid "Documentation"
msgstr "문서"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -323,20 +341,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -536,31 +554,37 @@ msgstr "DNS 서버는 DHCP를 통해 검색하거나 NetworkManager에서 수동
msgid "Failed to run browser."
msgstr "브라우저를 실행시키지 못 했습니다."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -569,14 +593,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -585,11 +609,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -611,38 +652,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ko_KR.po b/ko_KR.po
index 0b6443582..3d1d7fcb7 100644
--- a/ko_KR.po
+++ b/ko_KR.po
@@ -4,13 +4,13 @@
#
# Translators:
# 김진서 <7020kjs(a)naver.com>, 2016
-# graphene <imsesaok(a)tuta.io>, 2014
+# Oliver Lee <imsesaok(a)tuta.io>, 2014
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Korean (Korea) (http://www.transifex.com/otf/torproject/language/ko_KR/)\n"
"MIME-Version: 1.0\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "구성"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "제거"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "취소"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ku.po b/ku.po
index c856156f3..9ada29f5e 100644
--- a/ku.po
+++ b/ku.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Kurdish (http://www.transifex.com/otf/torproject/language/ku/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ku_IQ.po b/ku_IQ.po
index 29b90e6b0..4c3b224d1 100644
--- a/ku_IQ.po
+++ b/ku_IQ.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Kurdish (Iraq) (http://www.transifex.com/otf/torproject/language/ku_IQ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr ""
msgid "not available"
msgstr "بەردەست نییە"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "پاشگەزبوونەوە"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ky.po b/ky.po
index 5aa026ce2..78b25a223 100644
--- a/ky.po
+++ b/ky.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Kyrgyz (http://www.transifex.com/otf/torproject/language/ky/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Айнуу"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/la.po b/la.po
index 76c08f138..fd1550db8 100644
--- a/la.po
+++ b/la.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Latin (http://www.transifex.com/otf/torproject/language/la/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configurare"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Claudere"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/lb.po b/lb.po
index 8f515b71c..af4351545 100644
--- a/lb.po
+++ b/lb.po
@@ -6,10 +6,10 @@
# Tyler Durden <virii(a)enn.lu>, 2015-2016
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Luxembourgish (http://www.transifex.com/otf/torproject/language/lb/)\n"
"MIME-Version: 1.0\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr "Net disponibel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Ofbriechen"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/lg.po b/lg.po
index bd8e5ab50..f21a801cf 100644
--- a/lg.po
+++ b/lg.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Ganda (http://www.transifex.com/otf/torproject/language/lg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Jjawo"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ln.po b/ln.po
index 69f1abeae..a2ed2f99a 100644
--- a/ln.po
+++ b/ln.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Lingala (http://www.transifex.com/otf/torproject/language/ln/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/lo.po b/lo.po
index 323627c6d..270e5d437 100644
--- a/lo.po
+++ b/lo.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Lao (http://www.transifex.com/otf/torproject/language/lo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "ກຳນົດຄ່າ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "ເອົາອອກ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/lt.po b/lt.po
index 44804d531..e30d740a4 100644
--- a/lt.po
+++ b/lt.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Lithuanian (http://www.transifex.com/otf/torproject/language/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr "Darinio informacija:\n%s"
msgid "not available"
msgstr "neprieinama"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Rodyti žurnalą"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfigūruoti"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Šalinti"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Atsisakyti"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Tai gali užimti kelias minutes."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentacija"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Nepavyko pašalinti {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr "Nepavyko vykdyti naršyklės."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} tomas"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Tik skaitymui)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Klaida atveriant failą"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/lv.po b/lv.po
index 8d97df313..d208863b3 100644
--- a/lv.po
+++ b/lv.po
@@ -7,10 +7,10 @@
# Ojars Balcers <ojars.balcers(a)gmail.com>, 2013-2015
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Latvian (http://www.transifex.com/otf/torproject/language/lv/)\n"
"MIME-Version: 1.0\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr "Apkopo informāciju:\n%s"
msgid "not available"
msgstr "nav pieejams"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Rādīt žurnālu"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfigurēt"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Noņemt"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Atcelt"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentācija"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr "Izmantojot DHCP netika iegūts neviens DNS serveris; arī NetworkManager
msgid "Failed to run browser."
msgstr "Neizdevās startēt pārlūku."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/mg.po b/mg.po
index 7c0ff6e06..99fa71d10 100644
--- a/mg.po
+++ b/mg.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Malagasy (http://www.transifex.com/otf/torproject/language/mg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr "Kirakira"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/mi.po b/mi.po
index 53e9b47b7..a9a292c15 100644
--- a/mi.po
+++ b/mi.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Maori (http://www.transifex.com/otf/torproject/language/mi/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/mk.po b/mk.po
index 4ef9fcede..3200e368c 100644
--- a/mk.po
+++ b/mk.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Macedonian (http://www.transifex.com/otf/torproject/language/mk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Постави"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Откажи се"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ml.po b/ml.po
index 332665076..137c02a36 100644
--- a/ml.po
+++ b/ml.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Malayalam (http://www.transifex.com/otf/torproject/language/ml/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr "ലഭ്യമല്ല "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "ക്രമപ്പെടുത്തു "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "ഒഴിവാക്കുക"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/mn.po b/mn.po
index 362c89331..2c9d7a0c7 100644
--- a/mn.po
+++ b/mn.po
@@ -6,10 +6,10 @@
# pilotmn <altka2020(a)gmail.com>, 2016
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Mongolian (http://www.transifex.com/otf/torproject/language/mn/)\n"
"MIME-Version: 1.0\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/mr.po b/mr.po
index 61aad123e..18f984769 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: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr ""
msgid "not available"
msgstr "उपलब्ध नाही"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "नोंदी दाखवा"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ms_MY.po b/ms_MY.po
index 38d135c23..97bf937c8 100644
--- a/ms_MY.po
+++ b/ms_MY.po
@@ -9,10 +9,10 @@
# Mohd Shahril Bin Zainol Abidin <mohd_shahril_96(a)yahoo.com>, 2013
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/otf/torproject/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
@@ -59,7 +59,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -148,136 +148,148 @@ msgstr "Maklumat binaan:\n%s"
msgid "not available"
msgstr "tidak tersedia"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfigur"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Buang"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Batal"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -285,35 +297,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -321,20 +339,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -534,31 +552,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -567,14 +591,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -583,11 +607,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -609,38 +650,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/mt.po b/mt.po
index 49d7c5352..33ea5677a 100644
--- a/mt.po
+++ b/mt.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Maltese (http://www.transifex.com/otf/torproject/language/mt/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/my.po b/my.po
index 0e0aff3aa..c4c7c4886 100644
--- a/my.po
+++ b/my.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Burmese (http://www.transifex.com/otf/torproject/language/my/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "မှတ်တမ်း ပြရန်"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "ဖယ်ရှားရန်"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "ဖျက်သိမ်းရန်"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr "အသုံးပြုနည်းလက်စွဲ"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/nah.po b/nah.po
index 9091eda64..a94c44f6e 100644
--- a/nah.po
+++ b/nah.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Nahuatl (http://www.transifex.com/otf/torproject/language/nah/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/nap.po b/nap.po
index 13a8f3605..9af7acbcf 100644
--- a/nap.po
+++ b/nap.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Neapolitan (http://www.transifex.com/otf/torproject/language/nap/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/nb.po b/nb.po
index a119fc7f3..2b573f177 100644
--- a/nb.po
+++ b/nb.po
@@ -18,9 +18,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 01:03+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/otf/torproject/language/nb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -66,7 +66,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -155,136 +155,148 @@ msgstr "Versjon informasjon:\n%s"
msgid "not available"
msgstr "Ikke tilgjengelig"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Vis Logg"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Sett opp"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Fjern"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Avbryt"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -292,35 +304,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentasjon"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -328,20 +346,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -541,31 +559,37 @@ msgstr "Ingen DNS-tjener ble tildelt gjennom DHCP eller manuelt oppsett i Networ
msgid "Failed to run browser."
msgstr "Kunne ikke starte nettleser."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -574,14 +598,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -590,11 +614,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -616,38 +657,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ne.po b/ne.po
index 96fa45a71..d4f2319b5 100644
--- a/ne.po
+++ b/ne.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Nepali (http://www.transifex.com/otf/torproject/language/ne/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/nl.po b/nl.po
index 86e3a078a..dfb3a45c4 100644
--- a/nl.po
+++ b/nl.po
@@ -28,9 +28,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-09 07:51+0000\n"
-"Last-Translator: bacovane <bart-ts(a)tushmail.com>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Dutch (http://www.transifex.com/otf/torproject/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -76,7 +76,7 @@ msgid ""
msgstr "De volgende programmatuur wordt automatisch geïnstalleerd van jouw persistente opslag bij het starten van Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -165,136 +165,148 @@ msgstr "Gedetailleerde informatie over de versie:\n%s"
msgid "not available"
msgstr "niet beschikbaar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} S.v.p. controleer jouw lijst van extra programmatuur of lees het systeem logboek om het probleem te begrijpen."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "S.v.p. controleer jouw lijst van extra programmatuur of lees het systeem logboek om het probleem te begrijpen."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Toon Logboek"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configureer"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} en {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ","
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Voeg {packages} toe aan jouw extra programmatuur?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Om het automatisch van jouw persistente opslag te installeren bij het starten van Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Installeer Elke Keer"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Installeer Eenmalig"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "De configuratie van jouw extra programmatuur ging niet goed."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Om het automatisch te installeren bij het starten van Tails, kun je een persistente opslag creëren en de <b> Aditional Software </b> optie activeren."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Persistente Opslag Creëren"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Het creëren van jouw persistente opslag ging niet goed."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Je zou {packages} automatisch kunnen installeren bij het starten van Tails"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Om dat te doen, moet je Tails starten vanaf een USB schijf die met <i> Tails Instaler </i> geïnstalleerd is."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "{packages} verwijderen van jouw extra programmatuur?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Dit stopt de installatie van {packages} automatisch."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Verwijderen"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Annuleren"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Installeren van jouw extra programmatuur van persistente opslag ..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Dit kan een paar minuten duren."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "De installatie van jouw extra programmatuur ging niet goed."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "De extra programmatuur was met success geïnstalleerd"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "S.v.p. controleer jouw netwerk verbinding, herstart Tails, of lees het systeem logboek om het proleem te begrijpen."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -302,35 +314,41 @@ msgstr ""
msgid "Documentation"
msgstr "Documentatie"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Verwijder {package} van jouw extra programmatuur? Dit beëindigt automatisch de installatie van het pakket."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Het verwijderen van {pkg} mislukte"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Het lezen van extra programmatuur configuratie mislukte"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Stop de installatie van {package} automatisch"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "Om dit te doen, installeer sommige programmatuur met <a href=\"synaptic.desktop\"> Synaptic Package Manager </a> of <a href=\"org.gnome.Terminal.desktop\"> APT op de opdrachtregel </a> ."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -338,20 +356,20 @@ msgid ""
"line</a>."
msgstr "Om dit te doen, ontgrendel jouw persistente opslag bij het starten van Tails en installeer sommige programmatuur met <a href=\"synaptic.desktop\">Synaptic Package Manager</a> of <a href=\"org.gnome.Terminal.desktop\">APT op de opdrachtregel</a> ."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "Om dit te doen, maak een persistente opslag en instaleer sommige programmatuur met <a href=\"synaptic.desktop\">Synaptic Package Manager</a> of <a href=\"org.gnome.Terminal.desktop\">APT via de opdrachtregel</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Om dat te doen, installeer Tails op een USB schijf met <a href=\"tails-installer.desktop\">Tails Installer</a> en maak een persistente opslag."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -551,31 +569,37 @@ msgstr "Er is geen DNS server verkregen via DHCP of manueel ingesteld in Netwerk
msgid "Failed to run browser."
msgstr "Kon de browser niet starten."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -584,14 +608,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -600,11 +624,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -626,38 +667,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Fout bij openen van bestand"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/nl_BE.po b/nl_BE.po
index 3dafdaf9a..38e7bd06d 100644
--- a/nl_BE.po
+++ b/nl_BE.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Dutch (Belgium) (http://www.transifex.com/otf/torproject/language/nl_BE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr ""
msgid "not available"
msgstr "niet beschikbaar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configureer"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Verwijderen"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Annuleer"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/nn.po b/nn.po
index 317a2a719..97024f326 100644
--- a/nn.po
+++ b/nn.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/otf/torproject/language/nn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr "Byggupplysingar:\n%s"
msgid "not available"
msgstr "ikkje tilgjengeleg"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfigurer"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Fjern"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Avbrjot"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr "Ingen DNS-server vart fenge gjennom DHCP eller sett upp for hand i Nettv
msgid "Failed to run browser."
msgstr "Kunde ikkje køyre nettlesaren."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/nso.po b/nso.po
index 0e4d2eb44..fc65d2177 100644
--- a/nso.po
+++ b/nso.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Northern Sotho (http://www.transifex.com/otf/torproject/language/nso/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/oc.po b/oc.po
index c516b7945..41e286d06 100644
--- a/oc.po
+++ b/oc.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/otf/torproject/language/oc/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Suprimir"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/om.po b/om.po
index e309bb305..0be44ce02 100644
--- a/om.po
+++ b/om.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Oromo (http://www.transifex.com/otf/torproject/language/om/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Haqi"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/or.po b/or.po
index dac485d91..fd2f90140 100644
--- a/or.po
+++ b/or.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Oriya (http://www.transifex.com/otf/torproject/language/or/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/pa.po b/pa.po
index 714f7051d..c81b5ec34 100644
--- a/pa.po
+++ b/pa.po
@@ -6,10 +6,10 @@
# A S Alam <alam.yellow(a)gmail.com>, 2014
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/otf/torproject/language/pa/)\n"
"MIME-Version: 1.0\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "ਸੰਰਚਨਾ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "ਰੱਦ ਕਰੋ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/pap.po b/pap.po
index 25af82a8a..a25de1720 100644
--- a/pap.po
+++ b/pap.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Papiamento (http://www.transifex.com/otf/torproject/language/pap/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/pl.po b/pl.po
index 45b43cd25..4d7e9885f 100644
--- a/pl.po
+++ b/pl.po
@@ -16,10 +16,10 @@
# sebx, 2015
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Polish (http://www.transifex.com/otf/torproject/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -66,7 +66,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -155,136 +155,148 @@ msgstr "Informacja o wersji:\n%s"
msgid "not available"
msgstr "niedostępne"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Pokaż log"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfiguruj"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Usuń"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Anuluj"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -292,35 +304,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentacja"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -328,20 +346,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -541,31 +559,37 @@ msgstr "Nie otrzymano żadnego serwera DNS poprzez DHCP ani z ręcznej konfigura
msgid "Failed to run browser."
msgstr "Nie udało uruchomić się przeglądarki."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -574,14 +598,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -590,11 +614,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -616,38 +657,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/pms.po b/pms.po
index 2d94db00a..8eeb37e5d 100644
--- a/pms.po
+++ b/pms.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Piemontese (http://www.transifex.com/otf/torproject/language/pms/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ps.po b/ps.po
index f727181cf..9b7696526 100644
--- a/ps.po
+++ b/ps.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Pushto (http://www.transifex.com/otf/torproject/language/ps/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/pt.po b/pt.po
index 2c2d7a2bf..fcc102010 100644
--- a/pt.po
+++ b/pt.po
@@ -25,9 +25,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-05 21:40+0000\n"
-"Last-Translator: MS\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Portuguese (http://www.transifex.com/otf/torproject/language/pt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -73,7 +73,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -162,136 +162,148 @@ msgstr "Informação da compilação:\n%s"
msgid "not available"
msgstr "não disponível"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Mostrar Registo"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configurar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} e {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Instalar Sempre"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Instalar Uma Vez"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "A configuração do seu software adicional falhou."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Remover"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancelar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Software adicional instalado com sucesso"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -299,35 +311,41 @@ msgstr ""
msgid "Documentation"
msgstr "Documentação"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -335,20 +353,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -548,31 +566,37 @@ msgstr "Não foi obtido nenhum servidor DNS através do DHCP ou configurado manu
msgid "Failed to run browser."
msgstr "Não foi possível executar o navegador."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -581,14 +605,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -597,11 +621,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -623,38 +664,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Erro ao abrir o ficheiro"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/pt_BR.po b/pt_BR.po
index 557cafe10..ec17b941f 100644
--- a/pt_BR.po
+++ b/pt_BR.po
@@ -28,9 +28,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-07 00:50+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -76,7 +76,7 @@ msgid ""
msgstr "O seguinte programa é instalado automaticamente do seu armazenamento permanente quando o Tails está iniciando."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -165,136 +165,148 @@ msgstr "Compilar informação:\n%s"
msgid "not available"
msgstr "não disponível"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, 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 verifique sua lista de programas adicionais ou leia o registro do sistema para entender o problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Por favor verifique sua lista de programas adicionais ou leia o registro do sistema para entender o problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Exibir registro"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configurar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} e {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Adcionar {packages} ao seus softwares adicionais?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Para instalá-lo automaticamente a partir de seu armazenamento persistente ao iniciar o Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Instalar todas as vezes"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Instale Somente Uma Vez"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "A configuração do seu software adicional falhou."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Para instalá-lo automaticamente ao iniciar o Tails, você pode criar um armazenamento persistente e ativar o recurso <b>Software Adicional</b>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Crie armazenamento persistente"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Criando seu armazenamento persistente falhou."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Você pode instalar {packages} automaticamente ao iniciar o Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Para fazê-lo, você precisa executar o Tails a partir de um drive USB instalado com o uso do <i>Instalador do Tails</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "Remover {packages} de seus softwares adicionais?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Isto interromperá a instalação automática de {packages}."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Remover"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancelar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Instalando seu software adicional a partir do armazenamento persistente..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Isto pode levar vários minutos"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "A instalação do seu software adicional falhou"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Software adicional instalado com sucesso"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "A verificação de atualizações do seu software adicional falhou"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Por favor verifique sua conexão de rede, reinicie o Tails ou leia os logs do sistema para entender o problema."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "Falha no upgrade de seu software adicional."
@@ -302,35 +314,41 @@ msgstr "Falha no upgrade de seu software adicional."
msgid "Documentation"
msgstr "Documentação"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Remover {package} de seus softwares adicionais? Isto interromperá automaticamente a instalação do pacote."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Não foi possível remover {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Falha na leitura da configuração do software adicional."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Pare de instalar {package} automaticamente"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 fazê-lo, instale software usando o <a href=\"synaptic.desktop\">Gerenciador de Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal.desktop\">APT na linha de comandos</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -338,20 +356,20 @@ msgid ""
"line</a>."
msgstr "Para fazê-lo, destrave o armazenamento persistente ao iniciar o Tails e instale software usando o <a href=\"synaptic.desktop\">Gerenciador de Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal.desktop\">APT na linha de comandos</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 fazê-lo, crie um armazenamento persistente e instale software usando o <a href=\"synaptic.desktop\">Gerenciador de Pacotes Synaptic</a> ou o <a href=\"org.gnome.Terminal.desktop\">APT na linha de comandos</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Para fazê-lo, instale o Tails em um drive USB usando o <a href=\"tails-installer.desktop\">Instalador do Tails</a> e crie um armazenamento persistente."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[pacote não disponível]"
@@ -551,31 +569,37 @@ msgstr "Nenhum provedor de DNS foi obtido através de DHCP ou configurado manual
msgid "Failed to run browser."
msgstr "Falha ao executar o navegador."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Volume"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Read-Only)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} em {container_path}"
@@ -584,14 +608,14 @@ msgstr "{partition_name} em {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} em {drive_name}"
@@ -600,11 +624,28 @@ msgstr "{partition_name} em {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "Nenhum volume de armazenagem de arquivos detectado."
@@ -626,38 +667,40 @@ msgstr "O volume de armazenagem de arquivos %s já está na lista."
msgid "Container opened read-only"
msgstr "Volume aberto em modo somente leitura."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "Não foi possível abrir o volume de armazenagem de arquivos {path} com permissão de escrita. Em vez disso, foi aberto em modo somente leitura. Você não poderá modificar o conteúdo do volume \n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Error na abertura de arquivo"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "Não é um volume VeraCrypt."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "O arquivo %s não parece ser um volume VeraCrypt."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Falhou ao adcionar container"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "Não foi possível adicionar o volume de armazenagem de arquivos %s: Tempo de espera esgotado ao aguardar o loop de configuração. Por favor, experimente usar, em vez disso, o aplicativo <i>Discos</i>."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Escolha um Volume de Armazenagem de Arquivos"
diff --git a/pt_PT.po b/pt_PT.po
index 79350284c..11e751bf8 100644
--- a/pt_PT.po
+++ b/pt_PT.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: Manuela Silva <inactive+h_manuela_rodsilva(a)transifex.com>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/otf/torproject/language/pt_PT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configurar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Remover"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancelar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr "Documentação"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ro.po b/ro.po
index 3f5110eb9..47370a9f4 100644
--- a/ro.po
+++ b/ro.po
@@ -23,9 +23,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-07 20:18+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Romanian (http://www.transifex.com/otf/torproject/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -71,7 +71,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -160,136 +160,148 @@ msgstr "Adun informatia:\n%s"
msgid "not available"
msgstr "indisponibil"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Arată jurnalul"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configurează"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} și {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Adăugați {packages} la aplicațiile dumneavoastră adiționale?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Instalează de fiecare dată"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Instalează doar o dată"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "Configurarea aplicațiilor dumneavoastră adiționale a eșuat."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Creează stocare persistentă"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Crearea stocării persistente a eșuat."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Puteți instala {packages} automat la pornirea Tails"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "Ștergeți {packages} din aplicațiile dumneavoastră adiționale?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Eliminare"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Anulare"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Se instalează aplicațiile dumneavoastră adiționale din stocarea persistentă..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Acest lucru ar putea dura câteva minute."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "Instalarea aplicațiilor dumneavoastră adiționale a eșuat."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Aplicațiile adiționale au fost instalate cu succes"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "Verificarea pentru actualizări a aplicațiilor dumneavoastră adiționale a eșuat"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "Actualizarea aplicațiilor dumneavoastră adiționale a eșuat"
@@ -297,35 +309,41 @@ msgstr "Actualizarea aplicațiilor dumneavoastră adiționale a eșuat"
msgid "Documentation"
msgstr "Documentație"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Ștergeți {package} din aplicațiile dumneavoastră adiționale? Acest lucru va opri instalarea automată a pachetului."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Nu s-a reușit eliminarea {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Oprește instalarea automată a {package}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "Pentru a face acest lucru, instalează ceva aplicații folosind <a href=\"synaptic.desktop\">Synaptic Package Manager</a> sau <a href=\"org.gnome.Terminal.desktop\">APT în linia de comandă</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -333,20 +351,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -546,31 +564,37 @@ msgstr "Nu a fost obținut nici un server DNS prin DHCP sau configurat manual î
msgid "Failed to run browser."
msgstr "A eșuat rularea navigatorului."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -579,14 +603,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -595,11 +619,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -621,38 +662,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ru.po b/ru.po
index d6968c2fe..a42512128 100644
--- a/ru.po
+++ b/ru.po
@@ -30,9 +30,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 01:08+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Russian (http://www.transifex.com/otf/torproject/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -78,7 +78,7 @@ msgid ""
msgstr "Следующее программное обеспечение автоматически устанавливается из вашего постоянного хранилища при запуске Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -167,136 +167,148 @@ msgstr "Информация о сборке:\n%s"
msgid "not available"
msgstr "не найдено"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Пожалуйста, просмотрите список дополнительных программ или прочитайте системный журнал, чтобы понять проблему."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Пожалуйста, просмотрите список дополнительных программ или прочитайте системный журнал, чтобы понять проблему."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Показать журнал"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Настроить"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} и {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Добавить {packages} в ваше дополнительное программное обеспечение?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Чтобы автоматически установить его из постоянного хранилища при запуске Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "установить Every Time"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "установить Only Once"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "Не удалось выполнить конфигурацию вашего дополнительного программного обеспечения."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Чтобы установить его автоматически при запуске Tails, вы можете создать постоянное хранилище и активировать <b>функцию дополнительного программного обеспечения</b>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Создание постоянного хранилища"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Не удалось создать постоянное хранилище."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "Вы можете установить {packages} автоматически при запуске Tails"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Для этого вам нужно запустить Tails с USB-накопителя, установленного с помощью <i>Tails Installer</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "Удалить {packages} из вашего дополнительного программного обеспечения?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "Это автоматически прекратит установку {packages}."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Убрать"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Отмена"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Установка дополнительного программного обеспечения из постоянного хранилища ..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "Это может занять несколько минут."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "Не удалось установить дополнительное программное обеспечение"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Дополнительное программное обеспечение установлено успешно"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "Ошибка проверки обновлений вашего дополнительного программного обеспечения"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Пожалуйста, проверьте сетевое подключение, перезапустите Tails или прочитайте системный журнал, чтобы понять проблему."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "Не удалось обновить дополнительное программное обеспечение"
@@ -304,35 +316,41 @@ msgstr "Не удалось обновить дополнительное про
msgid "Documentation"
msgstr "Документация"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Удалить {package} из вашего дополнительного программного обеспечения? Это автоматически прекратит установку пакета."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Не удалось удалить {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Не удалось прочитать дополнительную конфигурацию программного обеспечения"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Прекратить установку {packege} автоматически"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 "Для этого, установите программное обеспечение при помощи <a href=\"synaptic.desktop\">Synaptic Package Manager</a> или <a href=\"org.gnome.Terminal.desktop\">APT в командной строке</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -340,20 +358,20 @@ msgid ""
"line</a>."
msgstr "Для этого разблокируйте ваше постоянное хранилище при запуске Tails и установите программное обеспечение при помощи <a href=\"synaptic.desktop\">Synaptic Package Manager</a> или <a href=\"org.gnome.Terminal.desktop\">APT в командной строке</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 "Для этого создайте постоянное хранилище при запуске Tails и установите программное обеспечение при помощи Synaptic Package Manager или APT в командной строке."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Для этого установите Tails на USB-диск при помощи <a href=\"tails-installer.desktop\">Tails Installer</a>и создайте постоянное хранилище."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[package not available]"
@@ -553,31 +571,37 @@ msgstr "DNS сервер либо не был получен через DHCP, л
msgid "Failed to run browser."
msgstr "Не удалось запустить браузер."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Раздел"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -586,14 +610,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -602,11 +626,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "Контейнеры файлов не добавлены"
@@ -628,38 +669,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Ошибка открытия файла"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ru(a)petr1708.po b/ru(a)petr1708.po
index 23feba437..0d5a273c9 100644
--- a/ru(a)petr1708.po
+++ b/ru(a)petr1708.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Russian Petrine orthography (http://www.transifex.com/otf/torproject/language/ru%40petr1708/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/sco.po b/sco.po
index 803952ece..888e715e0 100644
--- a/sco.po
+++ b/sco.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Scots (http://www.transifex.com/otf/torproject/language/sco/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/si_LK.po b/si_LK.po
index cfd87d237..534fbd1cb 100644
--- a/si_LK.po
+++ b/si_LK.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/otf/torproject/language/si_LK/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "ලොගුව පෙන්වන්න"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "වින්යාස කරන්න"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "ඉවත්කරන්න"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "අවලංගු කරන්න"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr "ප්රකාශන "
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/sk.po b/sk.po
index df211a3ee..b10de1714 100644
--- a/sk.po
+++ b/sk.po
@@ -10,10 +10,10 @@
# Stanislav Tomáš <stanislav.tomas(a)hotmail.sk>, 2015
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Slovak (http://www.transifex.com/otf/torproject/language/sk/)\n"
"MIME-Version: 1.0\n"
@@ -60,7 +60,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -149,136 +149,148 @@ msgstr "Informácie o builde:\n%s"
msgid "not available"
msgstr "nie je dostupný"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Zobraziť Log"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfigurácia"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Odstrániť"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Zrušiť"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -286,35 +298,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentácia"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -322,20 +340,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -535,31 +553,37 @@ msgstr "Pomocou DHCP alebo konfigurácie v NetworkManageri nebol získaný žiad
msgid "Failed to run browser."
msgstr "Zlyhalo pri spúšťaní prehliadača. "
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -568,14 +592,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -584,11 +608,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -610,38 +651,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/sk_SK.po b/sk_SK.po
index 22e8b7249..be436140e 100644
--- a/sk_SK.po
+++ b/sk_SK.po
@@ -9,11 +9,11 @@
# Vlado Jendroľ, 2018
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 17:53+0000\n"
-"Last-Translator: Vlado Jendroľ\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/otf/torproject/language/sk_SK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -59,7 +59,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -148,136 +148,148 @@ msgstr "Build informácie:\n%s"
msgid "not available"
msgstr "nedostupné"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfigurovať"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Odstrániť"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Zrušiť"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -285,35 +297,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentácia"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -321,20 +339,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -534,31 +552,37 @@ msgstr "Nepodarilo sa získať DNS server pomocou DHCP, ani pomocou manuálneho
msgid "Failed to run browser."
msgstr "Nepodarilo sa spustiť prehliadač."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -567,14 +591,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -583,11 +607,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -609,38 +650,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/sl.po b/sl.po
index dc57349dc..daaf8f2b5 100644
--- a/sl.po
+++ b/sl.po
@@ -6,10 +6,10 @@
# Dušan <dusan.k(a)zoho.com>, 2014
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Slovenian (http://www.transifex.com/otf/torproject/language/sl/)\n"
"MIME-Version: 1.0\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Nastavi"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Odstrani"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Prekliči"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentacija"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/sl_SI.po b/sl_SI.po
index 8c837b1e9..23dd23dc4 100644
--- a/sl_SI.po
+++ b/sl_SI.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/otf/torproject/language/sl_SI/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr "Oblikuje informacije\n%s"
msgid "not available"
msgstr "ni primeren"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Oblikovanje"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Remove"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Opusti"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentacija"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr "Noben DNS server ni bil pridobljen iz DHCP ali ročno nastavljen v Netwo
msgid "Failed to run browser."
msgstr "Zagon brskalnika neuspešen."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/sn.po b/sn.po
index 402596219..550737068 100644
--- a/sn.po
+++ b/sn.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Shona (http://www.transifex.com/otf/torproject/language/sn/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Kanzura"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/so.po b/so.po
index b4d986426..14a04f56c 100644
--- a/so.po
+++ b/so.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Somali (http://www.transifex.com/otf/torproject/language/so/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/son.po b/son.po
index f055e4f96..914f8f848 100644
--- a/son.po
+++ b/son.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Songhay (http://www.transifex.com/otf/torproject/language/son/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/sq.po b/sq.po
index c6ed8f8b6..ee90e2054 100644
--- a/sq.po
+++ b/sq.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:29+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr "Informacioni mbi realizimin:\n%s"
msgid "not available"
msgstr "i padisponueshëm"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Shfaq log"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Formësoni"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Hiqe"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Anuloni"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentim"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr "Asnjë shërbyes DNS në NetworkManager nuk është përftuar përmes DH
msgid "Failed to run browser."
msgstr "Dështim në ekzekutimin e shfletuesit."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/sr.po b/sr.po
index 112226491..5b7423ece 100644
--- a/sr.po
+++ b/sr.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:42+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Serbian (http://www.transifex.com/otf/torproject/language/sr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -58,7 +58,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -147,136 +147,148 @@ msgstr "Информације о градњи:\n%s"
msgid "not available"
msgstr "недоступно"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Пприкажи записник"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Конфигуриши"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Ukloni"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Откажи"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -284,35 +296,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -320,20 +338,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -533,31 +551,37 @@ msgstr "Ниједан DNS server није добијен путем DHCP-а и
msgid "Failed to run browser."
msgstr "Неуспешно покретање браузера."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -566,14 +590,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -582,11 +606,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -608,38 +649,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Грешка отварања фајла"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/sr(a)latin.po b/sr(a)latin.po
index ee68e555d..7b2129755 100644
--- a/sr(a)latin.po
+++ b/sr(a)latin.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Serbian (Latin) (http://www.transifex.com/otf/torproject/language/sr%40latin/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfiguriši"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Otkaži"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/st.po b/st.po
index e676ca36b..1b641a7cf 100644
--- a/st.po
+++ b/st.po
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Sotho, Southern (http://www.transifex.com/otf/torproject/language/st/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/sv.po b/sv.po
index b30771bb4..315bc382f 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: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:51+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -72,7 +72,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -161,136 +161,148 @@ msgstr "Build information:\n%s"
msgid "not available"
msgstr "ej tillgängligt"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Visa loggen"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Konfigurera"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "&Ta bort"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Avbryt"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -298,35 +310,41 @@ msgstr ""
msgid "Documentation"
msgstr "Dokumentation"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -334,20 +352,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -547,31 +565,37 @@ msgstr "Ingen DNS server blev tilldelad genom DHCP eller manuell konfiguration i
msgid "Failed to run browser."
msgstr "Misslyckades att starta webbläsare."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -580,14 +604,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -596,11 +620,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -622,38 +663,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ta.po b/ta.po
index f688324ec..268151bd9 100644
--- a/ta.po
+++ b/ta.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Tamil (http://www.transifex.com/otf/torproject/language/ta/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "கட்டமைக்க"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "நீக்கு"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "ரத்துசெய்"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/tails.pot b/tails.pot
index 486e18ff5..7f29bfa6e 100644
--- a/tails.pot
+++ b/tails.pot
@@ -5,10 +5,10 @@
# Translators:
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: English (http://www.transifex.com/otf/torproject/language/en/)\n"
"MIME-Version: 1.0\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr "The following software is installed automatically from your persistent storage when starting Tails."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr "Build information:\n%s"
msgid "not available"
msgstr "not available"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Please check your list of additional software or read the system log to understand the problem."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Please check your list of additional software or read the system log to understand the problem."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Show Log"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Configure"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} and {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Add {packages} to your additional software?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "To install it automatically from your persistent storage when starting Tails."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Install Every Time"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Install Only Once"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "The configuration of your additional software failed."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "To install it automatically when starting Tails, you can create a persistent storage and activate the <b>Additional Software</b> feature."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Create Persistent Storage"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Creating your persistent storage failed."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr "You could install {packages} automatically when starting Tails"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "To do so, you need to run Tails from a USB stick installed using <i>Tails Installer</i>."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "Remove {packages} from your additional software?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr "This will stop installing {packages} automatically."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Remove"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Installing your additional software from persistent storage..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr "This can take several minutes."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "The installation of your additional software failed"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Additional software installed successfully"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "The check for upgrades of your additional software failed"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr "Please check your network connection, restart Tails, or read the system log to understand the problem."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "The upgrade of your additional software failed"
@@ -281,35 +293,41 @@ msgstr "The upgrade of your additional software failed"
msgid "Documentation"
msgstr "Documentation"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "Remove {package} from your additional software? This will stop installing the package automatically."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr "Failed to remove {pkg}"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Failed to read additional software configuration"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr "Stop installing {package} automatically"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
msgid ""
"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
"command line</a>."
msgstr "To do so, install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr "To do so, unlock your persistent storage when starting Tails and install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
msgid ""
"To do so, create a persistent storage and install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
msgstr "To do so, create a persistent storage and install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "To do so, install Tails on a USB stick using <a href=\"tails-installer.desktop\">Tails Installer</a> and create a persistent storage."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[package not available]"
@@ -530,31 +548,37 @@ msgstr "No DNS server was obtained through DHCP or manually configured in Networ
msgid "Failed to run browser."
msgstr "Failed to run browser."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Volume"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Read-Only)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{partition_name} in {container_path}"
@@ -563,14 +587,14 @@ msgstr "{partition_name} in {container_path}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{partition_name} on {drive_name}"
@@ -579,11 +603,28 @@ msgstr "{partition_name} on {drive_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr "Wrong passphrase or parameters"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr "Error unlocking volume"
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr "Couldn't unlock volume {volume_name}:\n{error_message}"
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "No file containers added"
@@ -605,38 +646,40 @@ msgstr "The file container %s should already be listed."
msgid "Container opened read-only"
msgstr "Container opened read-only"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "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}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Error opening file"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "Not a VeraCrypt container"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "The file %s does not seem to be a VeraCrypt container."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Failed to add container"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "Could not add file container %s: Timeout while waiting for loop setup.Please try using the <i>Disks</i> application instead."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Choose File Container"
diff --git a/te.po b/te.po
index a419d7f53..b6e27a1ef 100644
--- a/te.po
+++ b/te.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Telugu (http://www.transifex.com/otf/torproject/language/te/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/tg.po b/tg.po
index fc8d92cca..38c857a60 100644
--- a/tg.po
+++ b/tg.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Tajik (http://www.transifex.com/otf/torproject/language/tg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/th.po b/th.po
index 4fa49b84b..791d268cd 100644
--- a/th.po
+++ b/th.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:33+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Thai (http://www.transifex.com/otf/torproject/language/th/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -60,7 +60,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -149,136 +149,148 @@ msgstr "สร้างข้อมูล:⏎\n%s"
msgid "not available"
msgstr "ไม่พร้อมใช้งาน"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "แสดง สิ่งที่ทำไป"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "กำหนดค่า"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "ลบ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "ยกเลิก"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -286,35 +298,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -322,20 +340,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -535,31 +553,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -568,14 +592,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -584,11 +608,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -610,38 +651,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ti.po b/ti.po
index 76c6819b3..04b7c4901 100644
--- a/ti.po
+++ b/ti.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Tigrinya (http://www.transifex.com/otf/torproject/language/ti/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/tk.po b/tk.po
index 046bf6003..42f476700 100644
--- a/tk.po
+++ b/tk.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Turkmen (http://www.transifex.com/otf/torproject/language/tk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/tr.po b/tr.po
index 046e909cc..f7b850ad3 100644
--- a/tr.po
+++ b/tr.po
@@ -28,9 +28,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-07 00:16+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -76,7 +76,7 @@ msgid ""
msgstr "Şu yazılımlar Tails başlatılırken otomatik olarak kalıcı depolama alanınızdan kurulacak."
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -165,136 +165,148 @@ msgstr "Yapım bilgisi:\n%s"
msgid "not available"
msgstr "kullanılamıyor"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} Lütfen ek yazılım listenizi denetleyin ya da sorunu anlamak için sistem günlüğüne bakın."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "Lütfen ek yazılım listenizi denetleyin ya da sorunu anlamak için sistem günlüğüne bakın."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Günlüğü Görüntüle"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Yapılandır"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} ile {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ", "
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "Ek yazılımlarına {packages} eklensin mi?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "Tails başlatılırken otomatik olarak kalıcı depolama alanınızdan kurmak için."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "Her Defasında Kurulsun"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "Yalnız Bir Kez Kurulsun"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "Ek yazılımınız yapılandırılamadı."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "Tails başlatılırken otomatik olarak kurulması için bir kalıcı depolama oluşturarak <b>Ek Yazılımlar</b> özelliğini etkinleştirmeniz gerekir."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "Kalıcı Depolama Oluştur"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "Kalıcı depolamanız oluşturulamadı."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, 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:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr "Bunun için Tails uygulamasını <i>Tails Kurucu</i> ile hazırlanmış bir USB bellekten çalıştırmalısınız."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr "{packages} ek yazılımlarınızdan kaldırılsın mı?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, 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:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Kaldır"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "İptal"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr "Ek yazılımınız kalıcı depolama alanınızdan kuruluyor..."
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
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:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr "Ek yazılım kurulamadı"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr "Ek yazılım kuruldu"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr "Ek yazılımınızın güncellemeleri denetlenemedi"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
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:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr "Ek yazılım güncellenemedi"
@@ -302,35 +314,41 @@ msgstr "Ek yazılım güncellenemedi"
msgid "Documentation"
msgstr "Belgeler"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr "{package} ek yazılımlarınız arasından kaldırılsın mı? Bu işlem paketin otomatik olarak kurulmasını durduracak."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, 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
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr "Ek yazılım yapılandırması okunamadı"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, 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:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
msgid ""
"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
"command line</a>."
msgstr "Bunun için <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> başka yazılımlar kurun."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -338,20 +356,20 @@ msgid ""
"line</a>."
msgstr "Bunun için Tails uygulamasını başlatırken kalıcı deponuzun kilidini açın ve <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> başka yazılımlar kurun."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
msgid ""
"To do so, create a persistent storage and install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
msgstr "Bunun için, kalıcı bir depo ekleyin ve <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> başka yazılımlar kurun."
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr "Bunun için <a href=\"tails-installer.desktop\">Tails Kurucu </a>uygulamasını kullanarak bir Tails uygulamasını bir USB belleğe kurun ve kalıcı bir depo ekleyin. "
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr "[paket kullanılamıyor]"
@@ -551,31 +569,37 @@ msgstr "DHCP aracılığıyla bir DNS sunucusu bulunamadı ya da AğYöneticisi
msgid "Failed to run browser."
msgstr "Tarayıcıyı çalıştırılamadı."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} Birim"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (Salt Okunur)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{container_path} içindeki {partition_name}"
@@ -584,14 +608,14 @@ msgstr "{container_path} içindeki {partition_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{volume_name} – {path_to_file_container}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{drive_name} üzerindeki {partition_name}"
@@ -600,11 +624,28 @@ msgstr "{drive_name} üzerindeki {partition_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{volume_name} – {drive_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "Herhangi bir dosya kapsayıcısı eklenmedi"
@@ -626,38 +667,40 @@ msgstr "%s kapsayıcısının zaten listede olması gerekir."
msgid "Container opened read-only"
msgstr "Kapsayıcı salt okunur olarak açıldı"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr "{path} dosya kapsayıcısı yazma izinleri ile açılamadı. Bu nedenle salt okunur olarak açıldı. Kapsayıcının içeriğini değiştiremeyeceksiniz.\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "Dosya açılırken sorun çıktı"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "Bir VeraCrypt kapsayıcısı değil"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "%s dosyası bir VeraCrypt kapsayıcısı gibi görünmüyor."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "Kapsayıcı eklenemedi"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "%s dosya kapsayıcısı eklenemedi: Çevrim kurulumu beklenirken zaman aşımı oluştu. Lütfen bunun yerine <i>Diskler</i> uygulamasını kullanmayı deneyin."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "Dosya Kapsayıcısını Seçin"
diff --git a/ug(a)Arab.po b/ug(a)Arab.po
index 8ec72a839..13c7c8fff 100644
--- a/ug(a)Arab.po
+++ b/ug(a)Arab.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: crash x <xmr.crashx(a)gmail.com>\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Uighur (Arabic) (http://www.transifex.com/otf/torproject/language/ug%40Arab/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "اغلاق"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr "فشل في تشغيل المتصفح"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/uk.po b/uk.po
index 147c068b8..d7d958e79 100644
--- a/uk.po
+++ b/uk.po
@@ -18,9 +18,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:43+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Ukrainian (http://www.transifex.com/otf/torproject/language/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -66,7 +66,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -155,136 +155,148 @@ msgstr "Інформація про зборку:\n%s"
msgid "not available"
msgstr "недоступно"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Налаштування"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Забрати"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Відмова"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -292,35 +304,41 @@ msgstr ""
msgid "Documentation"
msgstr "Документація"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -328,20 +346,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -541,31 +559,37 @@ msgstr "Жоден DNS-сервер не був отриманий через DH
msgid "Failed to run browser."
msgstr "Не вдалося запустити браузер."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -574,14 +598,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -590,11 +614,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -616,38 +657,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ur.po b/ur.po
index f4fae6d09..0c5e38962 100644
--- a/ur.po
+++ b/ur.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Urdu (http://www.transifex.com/otf/torproject/language/ur/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -145,136 +145,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "مٹائیں"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Cancel"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -282,35 +294,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -318,20 +336,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -531,31 +549,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -564,14 +588,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -580,11 +604,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -606,38 +647,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/ur_PK.po b/ur_PK.po
index 3a19a45de..0d922cfbd 100644
--- a/ur_PK.po
+++ b/ur_PK.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Urdu (Pakistan) (http://www.transifex.com/otf/torproject/language/ur_PK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "لاگ دکھائیے"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "خارج کیجیے"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "تنسیخ کیجیے"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/uz.po b/uz.po
index cde7151ef..9d0bea37a 100644
--- a/uz.po
+++ b/uz.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:28+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Uzbek (http://www.transifex.com/otf/torproject/language/uz/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -144,136 +144,148 @@ msgstr ""
msgid "not available"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Убрать"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Bekor qilish"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -281,35 +293,41 @@ msgstr ""
msgid "Documentation"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -317,20 +335,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -530,31 +548,37 @@ msgstr ""
msgid "Failed to run browser."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -563,14 +587,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -579,11 +603,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -605,38 +646,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/vi.po b/vi.po
index 661865f8a..b06b121d4 100644
--- a/vi.po
+++ b/vi.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:39+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Vietnamese (http://www.transifex.com/otf/torproject/language/vi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -57,7 +57,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -146,136 +146,148 @@ msgstr "Xây dựng thông tin\n%s"
msgid "not available"
msgstr "không có sẵn"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "Hiển Đăng nhập"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "Cấu hình"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "Gỡ bỏ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "Hủy bỏ"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -283,35 +295,41 @@ msgstr ""
msgid "Documentation"
msgstr "Tài liệu"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -319,20 +337,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -532,31 +550,37 @@ msgstr "Không có DNS server nào lấy được thông qua DHCP hoặc cấu h
msgid "Failed to run browser."
msgstr "Thất bại khi chạy trình duyệt."
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -565,14 +589,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -581,11 +605,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -607,38 +648,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/zh_CN.po b/zh_CN.po
index 43f388dd3..b811c5243 100644
--- a/zh_CN.po
+++ b/zh_CN.po
@@ -21,9 +21,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-10-04 00:44+0000\n"
-"Last-Translator: erinm\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\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"
@@ -69,7 +69,7 @@ msgid ""
msgstr "在 Tails 启动时会从持久存储中安装下列附加软件。"
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -158,136 +158,148 @@ msgstr "生成信息:\n%s"
msgid "not available"
msgstr "不可用"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr "{details} 请检查你的附加软件列表和系统日志来了解问题的详细信息。"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr "请检查你的附加软件列表和系统日志来了解问题的详细信息。"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "显示日志"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "配置"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr "{beginning} 和 {last}"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ","
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr "添加 {packages} 为附加软件?"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr "使它在每次启动 Tails 时从持久存储中安装。"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr "始终安装"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr "仅安装一次"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr "配置附加软件失败。"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr "要在 Tails 每次启动时安装此软件,你可以创建一个持久存储并启动 <b>附加软件</b>功能。"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr "创建持久存储"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr "创建持久存储失败"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "移除"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "取消"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -295,35 +307,41 @@ msgstr ""
msgid "Documentation"
msgstr "文档"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -331,20 +349,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -544,31 +562,37 @@ msgstr "在网络管理器中没有通过 DHCP 获得或手动配置 DNS 服务
msgid "Failed to run browser."
msgstr "运行浏览器失败。"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr "{volume_label} ({volume_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr "{partition_name} ({partition_size})"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr "{volume_size} 卷"
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr "{volume_name} (只读)"
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr "{container_path} 中的 {partition_name}"
@@ -577,14 +601,14 @@ msgstr "{container_path} 中的 {partition_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr "{path_to_file_container} - {volume_name}"
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr "{drive_name} 上的 {partition_name}"
@@ -593,11 +617,28 @@ msgstr "{drive_name} 上的 {partition_name}"
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr "{drive_name} - {volume_name}"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr "没有添加文件容器"
@@ -619,38 +660,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr "已经以只读方式打开容器"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr " 文件容器 {path} 无法写入,将以只读模式打开。你将不能改变容器内的内容。\n{error_message}"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr "在打开文件时发生错误"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr "不是 VeraCrypt 容器"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr "%s 不是 VeraCrypt 容器。"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr "无法添加容器。"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr "无法添加容器 %s:等待回环设备时超时。请使用 <i>磁盘</i>应用程序再试一次。"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr "选择文件容器"
diff --git a/zh_HK.po b/zh_HK.po
index b97ea1f83..7022359ee 100644
--- a/zh_HK.po
+++ b/zh_HK.po
@@ -10,10 +10,10 @@
# 大圈洋蔥, 2016
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/otf/torproject/language/zh_HK/)\n"
"MIME-Version: 1.0\n"
@@ -60,7 +60,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -149,136 +149,148 @@ msgstr "版本資訊:\n%s"
msgid "not available"
msgstr "唔可以揀"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "設定"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "移除"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "取消"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -286,35 +298,41 @@ msgstr ""
msgid "Documentation"
msgstr "文件"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -322,20 +340,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -535,31 +553,37 @@ msgstr "未由DHCP或NetworkManager嘅手動設定取得DNS伺服器。"
msgid "Failed to run browser."
msgstr "無法開啟瀏覽器。"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -568,14 +592,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -584,11 +608,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -610,38 +651,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
diff --git a/zh_TW.po b/zh_TW.po
index 513a5891a..d63bad583 100644
--- a/zh_TW.po
+++ b/zh_TW.po
@@ -17,10 +17,10 @@
# LNDDYL, 2014
msgid ""
msgstr ""
-"Project-Id-Version: The Tor Project\n"
+"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 11:37+0200\n"
-"PO-Revision-Date: 2018-09-04 14:30+0000\n"
+"POT-Creation-Date: 2018-10-15 14:47+0200\n"
+"PO-Revision-Date: 2018-10-15 14:43+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/otf/torproject/language/zh_TW/)\n"
"MIME-Version: 1.0\n"
@@ -67,7 +67,7 @@ msgid ""
msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:132
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:169
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:172
msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
@@ -156,136 +156,148 @@ msgstr "組建資訊:\n%s"
msgid "not available"
msgstr "不可用"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:143
+#. Translators: Don't translate {details}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:144
#, python-brace-format
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:149
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Show Log"
msgstr "顯示日誌"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:152
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid "Configure"
msgstr "設定"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:216
+#. Translators: Don't translate {beginning} or {last}, they are placeholders
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:218
#, python-brace-format
msgid "{beginning} and {last}"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:217
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:219
msgid ", "
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:281
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:309
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:284
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:313
#, python-brace-format
msgid "Add {packages} to your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:283
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:285
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:288
msgid "Install Every Time"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:286
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:289
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:319
msgid "Install Only Once"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:355
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:324
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:362
msgid "The configuration of your additional software failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:311
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:315
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:314
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:318
msgid "Create Persistent Storage"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Creating your persistent storage failed."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:329
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:334
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:332
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:337
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:351
#, python-brace-format
msgid "Remove {packages} from your additional software?"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:347
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:354
#, python-brace-format
msgid "This will stop installing {packages} automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:349
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:356
msgid "Remove"
msgstr "移除"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:350
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:357
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:118
#: config/chroot_local-includes/usr/local/bin/tor-browser:46
msgid "Cancel"
msgstr "取消"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:524
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:531
msgid "Installing your additional software from persistent storage..."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:526
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:533
msgid "This can take several minutes."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:538
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "The installation of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:553
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "Additional software installed successfully"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:573
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:580
msgid "The check for upgrades of your additional software failed"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:583
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:590
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:582
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:589
msgid "The upgrade of your additional software failed"
msgstr ""
@@ -293,35 +305,41 @@ msgstr ""
msgid "Documentation"
msgstr "文檔"
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:95
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:96
#, python-brace-format
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:107
#, python-brace-format
msgid "Failed to remove {pkg}"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:124
msgid "Failed to read additional software configuration"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:151
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
#, python-brace-format
msgid "Stop installing {package} automatically"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:176
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:179
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:185
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:188
msgid ""
"To do so, unlock your persistent storage when starting Tails and install "
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
@@ -329,20 +347,20 @@ msgid ""
"line</a>."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:195
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:198
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 ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:203
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:206
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:250
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:253
msgid "[package not available]"
msgstr ""
@@ -542,31 +560,37 @@ msgstr "沒有 DNS 伺服器是透過 DHCP 獲得,或在 NetworkManager 中手
msgid "Failed to run browser."
msgstr "無法開啟瀏覽器"
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:56
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:59
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:62
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:101
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:109
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
msgstr ""
@@ -575,14 +599,14 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:116
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
msgstr ""
@@ -591,11 +615,28 @@ msgstr ""
#. they are placeholders and will be replaced. You should only have to
#. translate
#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:129
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
+msgid "Wrong passphrase or parameters"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
+msgid "Error unlocking volume"
+msgstr ""
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
msgstr ""
@@ -617,38 +658,40 @@ msgstr ""
msgid "Container opened read-only"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:132
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
#, python-brace-format
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:137
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:159
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:162
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.Please"
" try using the <i>Disks</i> application instead."
msgstr ""
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:208
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
msgstr ""
1
0

[tor-browser-build/master] Bug 6111: Update URL for tor-browser-bundle-testsuite.git
by boklm@torproject.org 15 Oct '18
by boklm@torproject.org 15 Oct '18
15 Oct '18
commit ef8b470dc1a1361438f190844f42e18c7bc36375
Author: Nicolas Vigier <boklm(a)torproject.org>
Date: Mon Oct 15 16:37:16 2018 +0200
Bug 6111: Update URL for tor-browser-bundle-testsuite.git
---
tools/ansible/roles/tbb-nightly-build/defaults/main.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/ansible/roles/tbb-nightly-build/defaults/main.yml b/tools/ansible/roles/tbb-nightly-build/defaults/main.yml
index d84a161..af7e03d 100644
--- a/tools/ansible/roles/tbb-nightly-build/defaults/main.yml
+++ b/tools/ansible/roles/tbb-nightly-build/defaults/main.yml
@@ -4,7 +4,7 @@ nightly_build_cron_hour: 2
nightly_build_cron_minute: 20
nightly_build_keep_builds: 2
testsuite_dir: "/home/{{ nightly_build_user }}/tbb-testsuite"
-testsuite_git_url: https://git.torproject.org/boklm/tor-browser-bundle-testsuite.git
+testsuite_git_url: https://git.torproject.org/user/boklm/tor-browser-bundle-testsuite.git
testsuite_git_commit: 348ad855711382089c4fbf1badfec58e31a6c148
nightly_build_wwwdir: "/home/{{ nightly_build_user }}/www"
nightly_build_nginx_enable: true
1
0