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 2020
- 17 participants
- 2274 discussions

[tor-browser-build/master] Bug 40085: Make classes.dex reproducible
by sysrqb@torproject.org 02 Oct '20
by sysrqb@torproject.org 02 Oct '20
02 Oct '20
commit 3cddd2eec63aa7cea5e43d121317de66d03c6f82
Author: Georg Koppen <gk(a)torproject.org>
Date: Fri Oct 2 08:51:54 2020 +0000
Bug 40085: Make classes.dex reproducible
Updating glean_parser to 1.28.6 fixes the remaining part of #40086 as
well.
---
projects/android-components/40085.patch | 22 ++++++++++++++++++++++
projects/android-components/build | 3 +++
projects/android-components/config | 7 +++++--
.../gradle-dependencies-list.txt | 13 ++++++-------
projects/fenix/config | 6 ++++--
projects/fenix/gradle-dependencies-list.txt | 12 ++++++------
6 files changed, 46 insertions(+), 17 deletions(-)
diff --git a/projects/android-components/40085.patch b/projects/android-components/40085.patch
new file mode 100644
index 0000000..eb1a29d
--- /dev/null
+++ b/projects/android-components/40085.patch
@@ -0,0 +1,22 @@
+From efa26eaf4fba939c3e43b659e5c77a57b22b270a Mon Sep 17 00:00:00 2001
+From: Georg Koppen <gk(a)torproject.org>
+Date: Fri, 2 Oct 2020 08:48:49 +0000
+Subject: [PATCH] Update glean for tor-browser-build#40085
+
+
+diff --git a/buildSrc/src/main/java/Dependencies.kt b/buildSrc/src/main/java/Dependencies.kt
+index f4063f7ad..245d14447 100644
+--- a/buildSrc/src/main/java/Dependencies.kt
++++ b/buildSrc/src/main/java/Dependencies.kt
+@@ -29,7 +29,7 @@ object Versions {
+
+ const val mozilla_appservices = "61.0.13"
+
+- const val mozilla_glean = "32.1.1"
++ const val mozilla_glean = "32.4.1"
+
+ const val material = "1.1.0"
+ const val nearby = "17.0.0"
+--
+2.28.0
+
diff --git a/projects/android-components/build b/projects/android-components/build
index 43016b0..e0d727a 100644
--- a/projects/android-components/build
+++ b/projects/android-components/build
@@ -27,6 +27,9 @@ tar -C /var/tmp/build -xf [% project %]-[% c('version') %].tar.gz
cd $builddir-[% c('version') %]
patch -p1 < $rootdir/git.patch
+# We need to pick up a newer glean_parser until an updates glean lands in
+# android-components.
+patch -p1 < $rootdir/40085.patch
[% IF c("var/fetch_gradle_dependencies") %]
# XXX: fetching deps for `assembleGeckoBeta -x lint` by using that same target
# results in some missing dependencies for yet unknown reasons. Thus, we use
diff --git a/projects/android-components/config b/projects/android-components/config
index 1093a07..0424b03 100644
--- a/projects/android-components/config
+++ b/projects/android-components/config
@@ -12,9 +12,11 @@ var:
container:
use_container: 1
# This should be updated when the list of gradle dependencies is changed.
- gradle_dependencies_version: 3
+ gradle_dependencies_version: 4
# Switch to make it easier to grab all dependencies during a dry-run.
fetch_gradle_dependencies: 0
+ # Overwrite `glean_parser` for now to fix #40085.
+ glean_parser: 1.28.6
targets:
nightly:
@@ -42,6 +44,7 @@ input_files:
- filename: git.patch
- filename: mavenLocal.patch
enable: '[% !c("var/fetch_gradle_dependencies") %]'
+ - filename: 40085.patch
- URL: https://people.torproject.org/~gk/mirrors/sources/glean-parser-[% c('var/glean_parser') %].tar.bz2
- sha256sum: 69234aa1ae38fd5dda4de71bd5e536795073703c3ed5bb994b9b8485bd7a55dc
+ sha256sum: bdbb421fdcc9b66aebe8f41b33e254cab722355c59c0f43f10a8322d7d6da6a4
enable: '[% !c("var/fetch_gradle_dependencies") %]'
diff --git a/projects/android-components/gradle-dependencies-list.txt b/projects/android-components/gradle-dependencies-list.txt
index c0db10e..ff3b587 100644
--- a/projects/android-components/gradle-dependencies-list.txt
+++ b/projects/android-components/gradle-dependencies-list.txt
@@ -434,13 +434,12 @@ e3307e77325cf8e5bd1a4bbfb6f69b1dba208c0cd840ed41438790d6862008da | https://maven
41d405815f5c5c1df8d8f31d61f6a556d0d6b2bc9e02c0f905f41321da1f7f8a | https://maven.mozilla.org/maven2/org/mozilla/geckoview/geckoview-nightly/82…
b3acbeebbfca2cb7e6d5afa5c23672debd76679752c124e3ae8aa4c5673cdd12 | https://maven.mozilla.org/maven2/org/mozilla/geckoview/geckoview/81.0.20200…
e6754e5153344bacbbe164b1012743db0378b7253b259a1baaa140564fa2aa32 | https://maven.mozilla.org/maven2/org/mozilla/geckoview/geckoview/81.0.20200…
-99c418afb9003150afea443057f0c859868045279d356dd5b808baf136b7dc0e | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-forUnitTests/3…
-8e5b9b3ba3570ecf5d22ea08f762465bef048271dab6fd7a07f5a51f0eeaff33 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-forUnitTests/3…
-ab514359d7686282b7a7c8463e81237ff98460a23df534a6c9663b463e65423f | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
-f724de3fc1c37d8ecb4bbb7957dd67a489d0321da71eebb6b8d605ec4a57755a | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
-13739196d0331ece885a74189c80feb034d746283b78afa8a8ea2620a7926d7b | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/21.3.0/glean-2…
-5b078e136164082be6d49afa0d87f849c7b9f65e21125fa57056cd630756279b | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/32.1.1/glean-3…
-64371d71a4fb11d63d2a5ff60149c94c1d0e0b909de09ffe199f6872663976b2 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/32.1.1/glean-3…
+acfb992486c44ecf3727fac3eb7a4ac69e005e8baae2dd4104208265a947bccd | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-forUnitTests/3…
+71bf43ad7ea24b261bb1e361c0f1d5642bdc4dab5471ca9628d1b7ad754e84a1 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-forUnitTests/3…
+93b2f27c919b07b927d764726eb64350cb7d480bac9485b9192881a9d5d10f30 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
+a84340369fdbb4c38ea0ce2e17ceac1c6a596cebb9818885276eec8b611e4d4b | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
+d0e02f22fbd35b15e50e043ca0462fac6b2b78ac4968b324bd1431c8f85878df | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/32.4.1/glean-3…
+79d0b2e02aa86ef38577edb2befa25280ce58fcbae23a1ffd1db80147510aa86 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/32.4.1/glean-3…
8f1fec72b91a71ea39ec39f5f778c4d1124b6b097c6d55b3a50b554a52237b27 | https://plugins.gradle.org/m2/com/google/code/gson/gson-parent/2.8.5/gson-p…
233a0149fc365c9f6edbd683cfe266b19bdc773be98eabdaf6b3c924b48e7d81 | https://plugins.gradle.org/m2/com/google/code/gson/gson/2.8.5/gson-2.8.5.jar
b8308557a7fccc92d9fe7c8cd0599258b361285d2ecde7689eda98843255a092 | https://plugins.gradle.org/m2/com/google/code/gson/gson/2.8.5/gson-2.8.5.pom
diff --git a/projects/fenix/config b/projects/fenix/config
index a3d0b73..4d9c936 100644
--- a/projects/fenix/config
+++ b/projects/fenix/config
@@ -14,9 +14,11 @@ var:
container:
use_container: 1
# This should be updated when the list of gradle dependencies is changed.
- gradle_dependencies_version: 5
+ gradle_dependencies_version: 6
# Switch to make it easier to grab all dependencies during a dry-run.
fetch_gradle_dependencies: 0
+ # Overwrite `glean_parser` for now to fix #40085.
+ glean_parser: 1.28.6
targets:
nightly:
@@ -46,7 +48,7 @@ input_files:
enable: '[% !c("var/fetch_gradle_dependencies") %]'
exec: '[% INCLUDE "fetch-gradle-dependencies" %]'
- URL: https://people.torproject.org/~gk/mirrors/sources/glean-parser-[% c('var/glean_parser') %].tar.bz2
- sha256sum: 69234aa1ae38fd5dda4de71bd5e536795073703c3ed5bb994b9b8485bd7a55dc
+ sha256sum: bdbb421fdcc9b66aebe8f41b33e254cab722355c59c0f43f10a8322d7d6da6a4
enable: '[% !c("var/fetch_gradle_dependencies") %]'
- filename: mavenLocal.patch
enable: '[% !c("var/fetch_gradle_dependencies") %]'
diff --git a/projects/fenix/gradle-dependencies-list.txt b/projects/fenix/gradle-dependencies-list.txt
index fa7c80f..1a84cab 100644
--- a/projects/fenix/gradle-dependencies-list.txt
+++ b/projects/fenix/gradle-dependencies-list.txt
@@ -1074,12 +1074,12 @@ e3307e77325cf8e5bd1a4bbfb6f69b1dba208c0cd840ed41438790d6862008da | https://maven
41d405815f5c5c1df8d8f31d61f6a556d0d6b2bc9e02c0f905f41321da1f7f8a | https://maven.mozilla.org/maven2/org/mozilla/geckoview/geckoview-nightly/82…
b3acbeebbfca2cb7e6d5afa5c23672debd76679752c124e3ae8aa4c5673cdd12 | https://maven.mozilla.org/maven2/org/mozilla/geckoview/geckoview/81.0.20200…
e6754e5153344bacbbe164b1012743db0378b7253b259a1baaa140564fa2aa32 | https://maven.mozilla.org/maven2/org/mozilla/geckoview/geckoview/81.0.20200…
-99c418afb9003150afea443057f0c859868045279d356dd5b808baf136b7dc0e | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-forUnitTests/3…
-8e5b9b3ba3570ecf5d22ea08f762465bef048271dab6fd7a07f5a51f0eeaff33 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-forUnitTests/3…
-ab514359d7686282b7a7c8463e81237ff98460a23df534a6c9663b463e65423f | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
-f724de3fc1c37d8ecb4bbb7957dd67a489d0321da71eebb6b8d605ec4a57755a | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
-5b078e136164082be6d49afa0d87f849c7b9f65e21125fa57056cd630756279b | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/32.1.1/glean-3…
-64371d71a4fb11d63d2a5ff60149c94c1d0e0b909de09ffe199f6872663976b2 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/32.1.1/glean-3…
+acfb992486c44ecf3727fac3eb7a4ac69e005e8baae2dd4104208265a947bccd | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-forUnitTests/3…
+71bf43ad7ea24b261bb1e361c0f1d5642bdc4dab5471ca9628d1b7ad754e84a1 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-forUnitTests/3…
+93b2f27c919b07b927d764726eb64350cb7d480bac9485b9192881a9d5d10f30 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
+a84340369fdbb4c38ea0ce2e17ceac1c6a596cebb9818885276eec8b611e4d4b | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean-gradle-plugin/…
+d0e02f22fbd35b15e50e043ca0462fac6b2b78ac4968b324bd1431c8f85878df | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/32.4.1/glean-3…
+79d0b2e02aa86ef38577edb2befa25280ce58fcbae23a1ffd1db80147510aa86 | https://maven.mozilla.org/maven2/org/mozilla/telemetry/glean/32.4.1/glean-3…
470564ff0a452da1c96be4ca3a9cdeceaa2912537ee2a8def486f3b383d43f15 | https://plugins.gradle.org/m2/com/jetbrains/python/envs/com.jetbrains.pytho…
6438812f927b505a4c4ef2703b45433a1b99e45334526bfed25e71e1a79abb14 | https://plugins.gradle.org/m2/gradle/plugin/com/jetbrains/python/gradle-pyt…
317aa4c467a37d5fcab6657c326a4069ea8e8c6dda951ec2091ffb95c596a2a3 | https://plugins.gradle.org/m2/gradle/plugin/com/jetbrains/python/gradle-pyt…
1
0

[translation/communitytpo-contentspot] https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-contentspot
by translation@torproject.org 02 Oct '20
by translation@torproject.org 02 Oct '20
02 Oct '20
commit a96ba2388d4befce82d72d211287a3de6a134e0f
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 2 17:15:23 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=communitytpo-conten…
---
contents+ka.po | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/contents+ka.po b/contents+ka.po
index 37af1879b1..8f7c1cf0c7 100644
--- a/contents+ka.po
+++ b/contents+ka.po
@@ -5911,6 +5911,10 @@ msgid ""
"abuse is the difference between decentralized fault-tolerant Internet "
"freedom, and fragile, corruptible totalitarian control."
msgstr ""
+"განსხვავება, წინასწარსა და შემდგომ მოქმედების მიდგომებს შორის საჩივრებზე "
+"იგივეა, რაც განსხვავება დამოუკიდებელ, ხარვეზებისგან დაცული ინტერნეტის "
+"თავისუფლებასა და არამდგრად, პირადი გამორჩენის მსურველთა მიერ ერთპიროვნულ "
+"მართვას შორის."
#: https//community.torproject.org/relay/community-resources/tor-abuse-templates/
#: (content/relay-operations/community-resources/tor-abuse-templates/contents+en.lrpage.body)
1
0

[tor-browser/tor-browser-81.0b9-10.0-1] fixup! Bug 23247: Communicating security expectations for .onion
by sysrqb@torproject.org 02 Oct '20
by sysrqb@torproject.org 02 Oct '20
02 Oct '20
commit 43e12213f3b4a8a67def1542cfd082668056e953
Author: Alex Catarineu <acat(a)torproject.org>
Date: Fri Oct 2 17:23:33 2020 +0200
fixup! Bug 23247: Communicating security expectations for .onion
Fixes 40172: Security UI not updated for non-https .onion pages
---
mobile/android/modules/geckoview/GeckoViewProgress.jsm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/mobile/android/modules/geckoview/GeckoViewProgress.jsm b/mobile/android/modules/geckoview/GeckoViewProgress.jsm
index 9cfc7bf09b9c..475b7fc19a44 100644
--- a/mobile/android/modules/geckoview/GeckoViewProgress.jsm
+++ b/mobile/android/modules/geckoview/GeckoViewProgress.jsm
@@ -144,6 +144,10 @@ var IdentityHandler = {
result.host = uri.host;
}
+ if (!aBrowser.securityUI.secInfo) {
+ return result;
+ }
+
const cert = aBrowser.securityUI.secInfo.serverCert;
result.certificate = aBrowser.securityUI.secInfo.serverCert.getBase64DERString();
1
0

[tor-browser/tor-browser-81.0b9-10.0-1] Merge remote-tracking branch 'acatgl/40172' into tor-browser-81.0b9-10.0-1
by sysrqb@torproject.org 02 Oct '20
by sysrqb@torproject.org 02 Oct '20
02 Oct '20
commit 73b876518c20f6404905415827bd96f78bf7cab2
Merge: 572a39faa22c 43e12213f3b4
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Fri Oct 2 17:11:33 2020 +0000
Merge remote-tracking branch 'acatgl/40172' into tor-browser-81.0b9-10.0-1
mobile/android/modules/geckoview/GeckoViewProgress.jsm | 4 ++++
1 file changed, 4 insertions(+)
1
0

[translation/fenix-torbrowserstringsxml] https://gitweb.torproject.org/translation.git/commit/?h=fenix-torbrowserstringsxml
by translation@torproject.org 02 Oct '20
by translation@torproject.org 02 Oct '20
02 Oct '20
commit 1305ed3b598574c3fc52caaefc97a845260caa8c
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 2 16:45:48 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=fenix-torbrowserstr…
---
zh-rHK/torbrowser_strings.xml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/zh-rHK/torbrowser_strings.xml b/zh-rHK/torbrowser_strings.xml
new file mode 100644
index 0000000000..1f4d2eb129
--- /dev/null
+++ b/zh-rHK/torbrowser_strings.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+<resources>
+ <string name="tor_bootstrap_connect">連接</string>
+ <string name="preferences_tor_network_settings_yes">是</string>
+ <string name="preferences_tor_network_settings_no">否</string>
+ <string name="preferences_tor_network_settings_disconnected">已中斷連線</string>
+ <string name="preferences_tor_network_settings_connected">已連線</string>
+ </resources>
1
0

[translation/fenix-torbrowserstringsxml_completed] Remap locales
by translation@torproject.org 02 Oct '20
by translation@torproject.org 02 Oct '20
02 Oct '20
commit 04e4641e9a642ad14b6e030c703fef2e4df4c8ca
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 2 16:27:39 2020 +0000
Remap locales
---
.tx/config | 47 ++++++++++++++++----------------
{es-AR => es-rAR}/torbrowser_strings.xml | 0
{es-ES => es-rES}/torbrowser_strings.xml | 0
{pt-BR => pt-rBR}/torbrowser_strings.xml | 0
4 files changed, 23 insertions(+), 24 deletions(-)
diff --git a/.tx/config b/.tx/config
index cf8ba95d14..039a5a24ae 100644
--- a/.tx/config
+++ b/.tx/config
@@ -2,32 +2,31 @@
file_filter = <lang>/torbrowser_strings.xml
source_file = en-US/torbrowser_strings.xml
source_lang = en
-trans.bn = bn-BD/torbrowser_strings.xml
-trans.en_GB = en-GB/torbrowser_strings.xml
-trans.en = en-US/torbrowser_strings.xml
-trans.es_AR = es-AR/torbrowser_strings.xml
-trans.es_CL = es-CL/torbrowser_strings.xml
-trans.es_CO = es-CO/torbrowser_strings.xml
-trans.es = es-ES/torbrowser_strings.xml
-trans.es_MX = es-MX/torbrowser_strings.xml
-trans.fy = fy-NL/torbrowser_strings.xml
-trans.ga = ga-IE/torbrowser_strings.xml
-trans.gu = gu-IN/torbrowser_strings.xml
-trans.hi = hi-IN/torbrowser_strings.xml
-trans.hr_HR = hr-HR/torbrowser_strings.xml
-trans.hy = hy-AM/torbrowser_strings.xml
+trans.bn = bn/torbrowser_strings.xml
+trans.en_GB = en-rGB/torbrowser_strings.xml
+trans.en = en-rUS/torbrowser_strings.xml
+trans.es_AR = es-rAR/torbrowser_strings.xml
+trans.es_CL = es-rCL/torbrowser_strings.xml
+trans.es_CO = es-rCO/torbrowser_strings.xml
+trans.es = es-rES/torbrowser_strings.xml
+trans.es_MX = es-rMX/torbrowser_strings.xml
+trans.fy = fy-rNL/torbrowser_strings.xml
+trans.ga = ga-rIE/torbrowser_strings.xml
+trans.gu = gu-rIN/torbrowser_strings.xml
+trans.hi = hi-rIN/torbrowser_strings.xml
+trans.hy = hy-rAM/torbrowser_strings.xml
trans.ms_MY = ms/torbrowser_strings.xml
-trans.nb = nb-NO/torbrowser_strings.xml
-trans.nn = nn-NO/torbrowser_strings.xml
-trans.nl_BE = nl-BE/torbrowser_strings.xml
-trans.pa = pa-IN/torbrowser_strings.xml
-trans.pt_BR = pt-BR/torbrowser_strings.xml
-trans.pt_PT = pt-PT/torbrowser_strings.xml
+trans.nb = nb-rNO/torbrowser_strings.xml
+trans.nn = nn-rNO/torbrowser_strings.xml
+trans.nl_BE = nl-rBE/torbrowser_strings.xml
+trans.pa = pa-rIN/torbrowser_strings.xml
+trans.pt_BR = pt-rBR/torbrowser_strings.xml
+trans.pt_PT = pt-rPT/torbrowser_strings.xml
trans.si_LK = si/torbrowser_strings.xml
-trans.sv = sv-SE/torbrowser_strings.xml
-trans.zh_CN = zh-CN/torbrowser_strings.xml
-trans.zh_HK = zh-HK/torbrowser_strings.xml
-trans.zh_TW = zh-TW/torbrowser_strings.xml
+trans.sv = sv-rSE/torbrowser_strings.xml
+trans.zh_CN = zh-rCN/torbrowser_strings.xml
+trans.zh_HK = zh-rHK/torbrowser_strings.xml
+trans.zh_TW = zh-rTW/torbrowser_strings.xml
[main]
host = https://www.transifex.net
diff --git a/es-AR/torbrowser_strings.xml b/es-rAR/torbrowser_strings.xml
similarity index 100%
rename from es-AR/torbrowser_strings.xml
rename to es-rAR/torbrowser_strings.xml
diff --git a/es-ES/torbrowser_strings.xml b/es-rES/torbrowser_strings.xml
similarity index 100%
rename from es-ES/torbrowser_strings.xml
rename to es-rES/torbrowser_strings.xml
diff --git a/pt-BR/torbrowser_strings.xml b/pt-rBR/torbrowser_strings.xml
similarity index 100%
rename from pt-BR/torbrowser_strings.xml
rename to pt-rBR/torbrowser_strings.xml
1
0

[translation/fenix-torbrowserstringsxml] Move first-batch of locales
by translation@torproject.org 02 Oct '20
by translation@torproject.org 02 Oct '20
02 Oct '20
commit 6cbc1f2887ddd0862852be285e1e327d6025dbee
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 2 16:18:44 2020 +0000
Move first-batch of locales
---
.tx/.config.swp | Bin 12288 -> 0 bytes
.tx/config | 12 ++++++------
{pt-BR => pt-rBR}/torbrowser_strings.xml | 0
{pt-PT => pt-rPT}/torbrowser_strings.xml | 0
{sv-SE => sv-rSE}/torbrowser_strings.xml | 0
{zh-CN => zh-rCN}/torbrowser_strings.xml | 0
{zh-TW => zh-rTW}/torbrowser_strings.xml | 0
7 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/.tx/.config.swp b/.tx/.config.swp
deleted file mode 100644
index e7a4273c86..0000000000
Binary files a/.tx/.config.swp and /dev/null differ
diff --git a/.tx/config b/.tx/config
index de38f1d5ca..0b82b15582 100644
--- a/.tx/config
+++ b/.tx/config
@@ -20,13 +20,13 @@ trans.nb = nb-rNO/torbrowser_strings.xml
trans.nn = nn-rNO/torbrowser_strings.xml
trans.nl_BE = nl-rBE/torbrowser_strings.xml
trans.pa = pa-rIN/torbrowser_strings.xml
-trans.pt_BR = pt-BR/torbrowser_strings.xml
-trans.pt_PT = pt-PT/torbrowser_strings.xml
+trans.pt_BR = pt-rBR/torbrowser_strings.xml
+trans.pt_PT = pt-rPT/torbrowser_strings.xml
trans.si_LK = si/torbrowser_strings.xml
-trans.sv = sv-SE/torbrowser_strings.xml
-trans.zh_CN = zh-CN/torbrowser_strings.xml
-trans.zh_HK = zh-HK/torbrowser_strings.xml
-trans.zh_TW = zh-TW/torbrowser_strings.xml
+trans.sv = sv-rSE/torbrowser_strings.xml
+trans.zh_CN = zh-rCN/torbrowser_strings.xml
+trans.zh_HK = zh-rHK/torbrowser_strings.xml
+trans.zh_TW = zh-rTW/torbrowser_strings.xml
[main]
host = https://www.transifex.net
diff --git a/pt-BR/torbrowser_strings.xml b/pt-rBR/torbrowser_strings.xml
similarity index 100%
rename from pt-BR/torbrowser_strings.xml
rename to pt-rBR/torbrowser_strings.xml
diff --git a/pt-PT/torbrowser_strings.xml b/pt-rPT/torbrowser_strings.xml
similarity index 100%
rename from pt-PT/torbrowser_strings.xml
rename to pt-rPT/torbrowser_strings.xml
diff --git a/sv-SE/torbrowser_strings.xml b/sv-rSE/torbrowser_strings.xml
similarity index 100%
rename from sv-SE/torbrowser_strings.xml
rename to sv-rSE/torbrowser_strings.xml
diff --git a/zh-CN/torbrowser_strings.xml b/zh-rCN/torbrowser_strings.xml
similarity index 100%
rename from zh-CN/torbrowser_strings.xml
rename to zh-rCN/torbrowser_strings.xml
diff --git a/zh-TW/torbrowser_strings.xml b/zh-rTW/torbrowser_strings.xml
similarity index 100%
rename from zh-TW/torbrowser_strings.xml
rename to zh-rTW/torbrowser_strings.xml
1
0

[translation/fenix-torbrowserstringsxml] Delete second-batch of locates
by translation@torproject.org 02 Oct '20
by translation@torproject.org 02 Oct '20
02 Oct '20
commit a6f791f33b357a40de7c76879b48c3b8720d0978
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 2 16:21:37 2020 +0000
Delete second-batch of locates
---
en-GB/torbrowser_strings.xml | 23 ----------------
es-AR/torbrowser_strings.xml | 62 --------------------------------------------
es-ES/torbrowser_strings.xml | 62 --------------------------------------------
es-MX/torbrowser_strings.xml | 8 ------
fy-NL/torbrowser_strings.xml | 7 -----
ga-IE/torbrowser_strings.xml | 42 ------------------------------
gu-IN/torbrowser_strings.xml | 7 -----
hi-IN/torbrowser_strings.xml | 19 --------------
hy-AM/torbrowser_strings.xml | 8 ------
nb-NO/torbrowser_strings.xml | 28 --------------------
nl-BE/torbrowser_strings.xml | 9 -------
nn-NO/torbrowser_strings.xml | 15 -----------
pa-IN/torbrowser_strings.xml | 8 ------
13 files changed, 298 deletions(-)
diff --git a/en-GB/torbrowser_strings.xml b/en-GB/torbrowser_strings.xml
deleted file mode 100644
index c57f9c636d..0000000000
--- a/en-GB/torbrowser_strings.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <string name="tor_bootstrap_connect">Connect</string>
- <string name="tor_bootstrap_swipe_for_logs">Swipe to the left to see Tor logs</string>
- <string name="tor_onboarding_security_level_standard_option">Standard</string>
- <string name="tor_onboarding_security_level_standard_button_description">All Tor Browser and website features are enabled.</string>
- <string name="tor_onboarding_security_level_safer_option">Safer</string>
- <string name="tor_onboarding_security_level_safest_option">Safest</string>
- <string name="tor_onboarding_donate_description">Tor is free to use because of donations from people like you.</string>
- <string name="tor_onboarding_donate_button">Donate Now</string>
-
- <string name="tor_explore_privately">Explore. Privately.</string>
-
- <string name="preferences_tor_network_settings">Tor Network</string>
- <string name="preferences_tor_network_settings_explanation">Tor Browser routes your traffic over the Tor Network, run by thousands of volunteers around the world.</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_obfs4">obfs4</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_meek_azure">meek-azure</string>
- <string name="preferences_tor_network_settings_bridge_config_user_provided_bridge">Provide a Bridge I know</string>
- <string name="preferences_tor_network_settings_yes">Yes</string>
- <string name="preferences_tor_network_settings_no">No</string>
- </resources>
diff --git a/es-AR/torbrowser_strings.xml b/es-AR/torbrowser_strings.xml
deleted file mode 100644
index 1faf7362d8..0000000000
--- a/es-AR/torbrowser_strings.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <!-- Preference for enabling non-Private Browsing Mode-->
- <string name="preferences_disable_normal_mode">Permitir Solamente Modo de Navegación Privado</string>
- <!-- Preference link to donate to The Tor Project-->
- <string name="preferences_donate">Doná al Tor Project</string>
- <!-- Preference for allowing screenshots to be taken in the app-->
- <string name="preferences_allow_screenshots">Permitir capturas de pantalla</string>
-
- <string name="tor_bootstrap_connect">Conectar</string>
- <string name="tor_bootstrap_connecting">Conectando</string>
- <string name="tor_bootstrap_connecting_failed">Fallo al Conectar</string>
- <string name="tor_bootstrap_quick_start_label">Inicio Rápido</string>
- <string name="tor_bootstrap_quick_start_disabled">Habilitar Inicio Rápido para conectar automáticamente en el futuro</string>
- <string name="tor_bootstrap_quick_start_enabled">%s va a conectarse automáticamente a la Red Tor en el futuro</string>
- <string name="tor_bootstrap_swipe_for_logs">Deslizá hacia la izquierda para ver los registros Tor</string>
- <string name="tor_initializing_log">Inicializando el Registro Tor</string>
-
- <string name="tor_onboarding_security_level">Establecé tu Nivel de Seguridad</string>
- <string name="tor_onboarding_security_level_description">Deshabilitar ciertas funciones web que pueden usarse para atacarte, y dañar tu seguridad, anonimato y privacidad.</string>
- <string name="tor_onboarding_security_level_standard_option">Estándar</string>
- <string name="tor_onboarding_security_level_standard_button_description">Todas las características del Navegador Tor y el sitio web están habilitadas.</string>
- <string name="tor_onboarding_security_level_safer_option">Más seguro</string>
- <string name="tor_onboarding_security_level_safer_button_description">Deshabilitar características de sitios web que a menudo son peligrosas, lo que causa que algunos sitios pierdan funcionalidad.</string>
- <string name="tor_onboarding_security_level_safest_option">El más seguro</string>
- <string name="tor_onboarding_security_level_safest_button_description">Sólo permitir características de sitios web requeridas por sitios estáticos y servicios básicos. Estos cambios afectan imágenes, medios y código ejecutable.</string>
- <string name="tor_onboarding_security_settings_button">Abrir Configuración de Seguridad</string>
- <string name="tor_onboarding_donate_header">Doná y mantené seguro a Tor</string>
- <string name="tor_onboarding_donate_description">Tor puede ser usado libremente gracias a las donaciones de personas como vos.</string>
- <string name="tor_onboarding_donate_button">Doná Ahora</string>
-
- <string name="tor_explore_privately">Explorá. Privadamente.</string>
-
- <string name="preferences_tor_network_settings">Red Tor</string>
- <string name="preferences_tor_network_settings_explanation">El navegador Tor enruta tu tráfico a través de la red Tor, mantenida por miles de voluntarios en todo el mundo.</string>
- <string name="preferences_tor_network_settings_bridge_config">Configurar Puente</string>
- <string name="preferences_tor_network_settings_bridge_config_description">Usar un puente para conectar a Tor</string>
- <string name="preferences_tor_network_settings_bridge_config_description_builtin_transport_enabled">Estás usando un puente incorporado para conectarte a Tor</string>
- <string name="preferences_tor_network_settings_bridge_config_description_user_provided_enabled">Proporcionaste un puente para conectarte a Tor</string>
- <string name="preferences_tor_network_settings_bridge_config_explanation">Los puentes son repetidores no listados que hacen que sea más difícil bloquear conexiones a la red Tor. Debido a la forma en que algunos países intentan bloquear a Tor, ciertos puentes funcionan en algunos pero no en otros.</string>
- <string name="preferences_tor_network_settings_bridge_config_toggle">Usar un Puente</string>
- <string name="preferences_tor_network_settings_bridge_config_toggle_description">Configurar un puente para conectar a Tor</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_obfs4">obfs4</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_meek_azure">meek-azure</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_snowflake">snowflake</string>
- <string name="preferences_tor_network_settings_bridge_config_user_provided_bridge">Proveer un puente que conozco</string>
- <string name="preferences_tor_network_settings_bridge_config_user_provided_bridge_description">Entrar información del puente de parte de una fuente confiable</string>
- <string name="preferences_tor_network_settings_bridge_config_current_bridge">Puente Configurado Actualmente: %s</string>
- <string name="tor_network_settings_bridge_not_configured">No Configurado</string>
- <string name="preferences_tor_network_settings_status">Estado Actual</string>
- <string name="preferences_tor_network_settings_tor_ready">Está Listo Tor: %s</string>
- <string name="preferences_tor_network_settings_state">Estado: %s</string>
- <string name="preferences_tor_network_settings_yes">Sí</string>
- <string name="preferences_tor_network_settings_no">No</string>
- <string name="preferences_tor_network_settings_disconnected">Desconectado</string>
- <string name="preferences_tor_network_settings_connecting">Conectando</string>
- <string name="preferences_tor_network_settings_connected">Conectado</string>
- <string name="preferences_tor_network_settings_restarting">Reiniciando</string>
- <string name="preferences_tor_network_settings_bridges_enabled">Los puentes están habilitados: %s</string>
-</resources>
diff --git a/es-ES/torbrowser_strings.xml b/es-ES/torbrowser_strings.xml
deleted file mode 100644
index 23447f4d6f..0000000000
--- a/es-ES/torbrowser_strings.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <!-- Preference for enabling non-Private Browsing Mode-->
- <string name="preferences_disable_normal_mode">Permitir Solamente Modo de Navegación Privado</string>
- <!-- Preference link to donate to The Tor Project-->
- <string name="preferences_donate">Dona al Tor Project</string>
- <!-- Preference for allowing screenshots to be taken in the app-->
- <string name="preferences_allow_screenshots">Permitir capturas de pantalla</string>
-
- <string name="tor_bootstrap_connect">Conectar</string>
- <string name="tor_bootstrap_connecting">Conectando</string>
- <string name="tor_bootstrap_connecting_failed">Error de conexión</string>
- <string name="tor_bootstrap_quick_start_label">Inicio Rápido</string>
- <string name="tor_bootstrap_quick_start_disabled">Habilitar Inicio Rápido para conectar automáticamente en el futuro</string>
- <string name="tor_bootstrap_quick_start_enabled">%s se conectará automáticamente a la Red Tor en el futuro</string>
- <string name="tor_bootstrap_swipe_for_logs">Desliza hacia la izquierda para ver los registros Tor.</string>
- <string name="tor_initializing_log">Inicializando el Registro Tor</string>
-
- <string name="tor_onboarding_security_level">Establece tu nivel de seguridad</string>
- <string name="tor_onboarding_security_level_description">Deshabilitar ciertas funciones web que se pueden usar para atacarte, y dañar tu seguridad, anonimato y privacidad.</string>
- <string name="tor_onboarding_security_level_standard_option">Estándar</string>
- <string name="tor_onboarding_security_level_standard_button_description">Están habilitadas todas las características del Navegador Tor y sitios web.</string>
- <string name="tor_onboarding_security_level_safer_option">Más seguro</string>
- <string name="tor_onboarding_security_level_safer_button_description">Deshabilitar características de sitios web que a menudo son peligrosas, lo que causa que algunos sitios pierdan funcionalidad.</string>
- <string name="tor_onboarding_security_level_safest_option">El más seguro de todos</string>
- <string name="tor_onboarding_security_level_safest_button_description">Sólo permitir características de sitios web requeridas por sitios estáticos y servicios básicos. Estos cambios afectan imágenes, medios y código ejecutable.</string>
- <string name="tor_onboarding_security_settings_button">Abrir Ajustes de Seguridad</string>
- <string name="tor_onboarding_donate_header">Dona y mantén seguro a Tor</string>
- <string name="tor_onboarding_donate_description">Se puede usar Tor libremente por las donaciones de personas como tu.</string>
- <string name="tor_onboarding_donate_button">Dona Ahora</string>
-
- <string name="tor_explore_privately">Explora. En privado.</string>
-
- <string name="preferences_tor_network_settings">Red Tor</string>
- <string name="preferences_tor_network_settings_explanation">El Navegador Tor enruta tu tráfico a través de la Red Tor, mantenida por miles de voluntarios alrededor del mundo.</string>
- <string name="preferences_tor_network_settings_bridge_config">Configurar puente</string>
- <string name="preferences_tor_network_settings_bridge_config_description">Utilizar un Puente para conectar con Tor</string>
- <string name="preferences_tor_network_settings_bridge_config_description_builtin_transport_enabled">Estás usando un puente incorporado para conectarte a Tor</string>
- <string name="preferences_tor_network_settings_bridge_config_description_user_provided_enabled">Has proporcionado un puente para conectar con Tor</string>
- <string name="preferences_tor_network_settings_bridge_config_explanation">Los puentes son relés listados que dificultan el bloqueo de las conexiones a la Red Tor. Debido a la forma en que ciertos países intentan bloquear Tor, unos puentes funcionan en ciertos países pero no en otros.</string>
- <string name="preferences_tor_network_settings_bridge_config_toggle">Usa un puente</string>
- <string name="preferences_tor_network_settings_bridge_config_toggle_description">Configura un puente para conectar a Tor</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_obfs4">obfs4</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_meek_azure">meek-azure</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_snowflake">snowflake</string>
- <string name="preferences_tor_network_settings_bridge_config_user_provided_bridge">Dar un puente que conozco</string>
- <string name="preferences_tor_network_settings_bridge_config_user_provided_bridge_description">Introduce la información del puente desde una fuente de confianza</string>
- <string name="preferences_tor_network_settings_bridge_config_current_bridge">Puente actual configurado: %s</string>
- <string name="tor_network_settings_bridge_not_configured">No configurado</string>
- <string name="preferences_tor_network_settings_status">Estatus actual</string>
- <string name="preferences_tor_network_settings_tor_ready">Tor Listo: %s</string>
- <string name="preferences_tor_network_settings_state">Estado: %s</string>
- <string name="preferences_tor_network_settings_yes">Sí</string>
- <string name="preferences_tor_network_settings_no">No</string>
- <string name="preferences_tor_network_settings_disconnected">Desconectado</string>
- <string name="preferences_tor_network_settings_connecting">Conectando</string>
- <string name="preferences_tor_network_settings_connected">Conectado</string>
- <string name="preferences_tor_network_settings_restarting">Reiniciando</string>
- <string name="preferences_tor_network_settings_bridges_enabled">Los puentes están habilitados: %s</string>
-</resources>
diff --git a/es-MX/torbrowser_strings.xml b/es-MX/torbrowser_strings.xml
deleted file mode 100644
index b6d1d5ccfc..0000000000
--- a/es-MX/torbrowser_strings.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <string name="tor_bootstrap_connect">Conectar</string>
- <string name="preferences_tor_network_settings_yes">Si</string>
- <string name="preferences_tor_network_settings_no">No</string>
- </resources>
diff --git a/fy-NL/torbrowser_strings.xml b/fy-NL/torbrowser_strings.xml
deleted file mode 100644
index cd60f0d8ed..0000000000
--- a/fy-NL/torbrowser_strings.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <string name="preferences_tor_network_settings_yes">Ja</string>
- <string name="preferences_tor_network_settings_no">Nee</string>
- </resources>
diff --git a/ga-IE/torbrowser_strings.xml b/ga-IE/torbrowser_strings.xml
deleted file mode 100644
index 236edf1c09..0000000000
--- a/ga-IE/torbrowser_strings.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <!-- Preference for enabling non-Private Browsing Mode-->
- <string name="preferences_disable_normal_mode">Ceadaigh Brabhsáil Phríobháideach amháin</string>
- <!-- Preference link to donate to The Tor Project-->
- <string name="preferences_donate">Tabhair airgead do Thionscadal Tor</string>
- <!-- Preference for allowing screenshots to be taken in the app-->
- <string name="preferences_allow_screenshots">Ceadaigh seatanna scáileáin</string>
-
- <string name="tor_bootstrap_connect">Ceangail</string>
- <string name="tor_bootstrap_connecting">Ag ceangal</string>
- <string name="tor_bootstrap_quick_start_label">Mearthosú</string>
- <string name="tor_bootstrap_quick_start_disabled">Cumasaigh Mearthosú chun ceangal a bhunú go huathoibríoch as seo amach</string>
- <string name="tor_bootstrap_quick_start_enabled">Déanfaidh %s ceangal le Líonra Tor go huathoibríoch as seo amach</string>
- <string name="tor_bootstrap_swipe_for_logs">Svaidhpeáil ar chlé chun logchomhaid Tor a fheiceáil</string>
- <string name="tor_initializing_log">Logchomhad Tor á thúsú</string>
-
- <string name="tor_onboarding_security_level_description">Díchumasaigh gnéithe áirithe a d\'fhéadfaí a úsáid chun ionsaí a dhéanamh ort, d\'aitheantas a nochtadh, nó do phríobháideachas a lagú.</string>
- <string name="tor_onboarding_security_level_standard_option">Gnáthshlándáil</string>
- <string name="tor_onboarding_security_level_standard_button_description">Gach gné de bhrabhsálaí Tor agus gach gné de shuímh Ghréasáin ar siúl.</string>
- <string name="tor_onboarding_security_level_safer_option">Níos Sábháilte</string>
- <string name="tor_onboarding_security_level_safer_button_description">Díchumasaítear gnéithe de shuímh atá contúirteach go minic; dá bharr seo, ní fheidhmeoidh gach suíomh mar is ceart.</string>
- <string name="tor_onboarding_security_level_safest_option">Is Sábháilte</string>
- <string name="tor_onboarding_security_level_safest_button_description">Ní cheadaítear ach na gnéithe atá de dhíth ar shuímh statacha agus ar bhunseirbhísí. Téann na hathruithe seo i bhfeidhm ar íomhánna, ar mheáin, agus ar scripteanna.</string>
- <string name="tor_onboarding_security_settings_button">Oscail na Socruithe Slándála</string>
- <string name="tor_onboarding_donate_header">Bronn airgead chun Tor a choinneáil slán</string>
- <string name="tor_onboarding_donate_description">Tá Tor saor in aisce a bhuí le bronntanais airgid ó dhaoine cosúil leatsa.</string>
- <string name="tor_onboarding_donate_button">Tabhair síntiús airgid anois</string>
-
- <string name="tor_explore_privately">Brabhsáil. Príobháideachas.</string>
-
- <string name="preferences_tor_network_settings">Líonra Tor</string>
- <string name="preferences_tor_network_settings_explanation">Seolann Brabhsálaí Tor do chuid tráchta thar líonra Tor, líonra faoi stiúir na mílte oibrí deonach timpeall an domhain.</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_obfs4">obfs4</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_meek_azure">meek-azure</string>
- <string name="preferences_tor_network_settings_bridge_config_user_provided_bridge">Soláthair Droichead de do chuid féin</string>
- <string name="preferences_tor_network_settings_yes">Tá</string>
- <string name="preferences_tor_network_settings_no">Níl</string>
- <string name="preferences_tor_network_settings_connecting">Ag ceangal</string>
- </resources>
diff --git a/gu-IN/torbrowser_strings.xml b/gu-IN/torbrowser_strings.xml
deleted file mode 100644
index 598ec816da..0000000000
--- a/gu-IN/torbrowser_strings.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <string name="preferences_tor_network_settings_yes">હા</string>
- <string name="preferences_tor_network_settings_no">નહિ</string>
- </resources>
diff --git a/hi-IN/torbrowser_strings.xml b/hi-IN/torbrowser_strings.xml
deleted file mode 100644
index bc98ce4697..0000000000
--- a/hi-IN/torbrowser_strings.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <string name="tor_bootstrap_connect">जोड़ें</string>
- <string name="tor_bootstrap_connecting">कनेक्ट</string>
- <string name="tor_onboarding_donate_button">अभी दान करें</string>
-
- <string name="tor_explore_privately">अन्वेषण करें। निजी तौर पर।</string>
-
- <string name="preferences_tor_network_settings">टोर नेटवर्क</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_meek_azure">meek-azure</string>
- <string name="preferences_tor_network_settings_yes">हाँ</string>
- <string name="preferences_tor_network_settings_no">नहीं</string>
- <string name="preferences_tor_network_settings_disconnected">डिस्कनेक्ट किया गया</string>
- <string name="preferences_tor_network_settings_connecting">कनेक्ट</string>
- <string name="preferences_tor_network_settings_connected">जुड़े हुए</string>
- <string name="preferences_tor_network_settings_restarting">पुन: प्रारंभ हो</string>
- </resources>
diff --git a/hy-AM/torbrowser_strings.xml b/hy-AM/torbrowser_strings.xml
deleted file mode 100644
index 5d97f5e213..0000000000
--- a/hy-AM/torbrowser_strings.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <string name="tor_bootstrap_connect">Միացնել</string>
- <string name="preferences_tor_network_settings_yes">Այո</string>
- <string name="preferences_tor_network_settings_no">Ոչ</string>
- </resources>
diff --git a/nb-NO/torbrowser_strings.xml b/nb-NO/torbrowser_strings.xml
deleted file mode 100644
index f9e7763ed0..0000000000
--- a/nb-NO/torbrowser_strings.xml
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <string name="tor_bootstrap_connect">Koble til</string>
- <string name="tor_bootstrap_connecting">Tilknytter</string>
- <string name="tor_bootstrap_swipe_for_logs">Sveip til venstre for å se Tor-logger</string>
- <string name="tor_onboarding_security_level_standard_option">Forvalg</string>
- <string name="tor_onboarding_security_level_standard_button_description">Alle Tor-nettleser- og nettside-funksjoner er på.</string>
- <string name="tor_onboarding_security_level_safer_option">Tryggere</string>
- <string name="tor_onboarding_security_level_safest_option">Tryggest</string>
- <string name="tor_onboarding_donate_description">Tor er gratis å bruke, grunnet bidrag fra folk som deg.</string>
- <string name="tor_onboarding_donate_button">Donér nå</string>
-
- <string name="tor_explore_privately">Utforsk. Privat.</string>
-
- <string name="preferences_tor_network_settings">Tor-nettverk</string>
- <string name="preferences_tor_network_settings_explanation">Tor Browser dirigerer trafikken din over Tor-nettverket, drevet av tusenvis av frivillige rundt om i verden.</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_obfs4">obfs4</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_meek_azure">meek-azure</string>
- <string name="preferences_tor_network_settings_bridge_config_user_provided_bridge">Angi en bro jeg kjenner</string>
- <string name="preferences_tor_network_settings_yes">Ja</string>
- <string name="preferences_tor_network_settings_no">Nei</string>
- <string name="preferences_tor_network_settings_disconnected">Frakoblet</string>
- <string name="preferences_tor_network_settings_connecting">Tilknytter</string>
- <string name="preferences_tor_network_settings_connected">Tilkoblet</string>
- <string name="preferences_tor_network_settings_restarting">Starter om igjen</string>
- </resources>
diff --git a/nl-BE/torbrowser_strings.xml b/nl-BE/torbrowser_strings.xml
deleted file mode 100644
index 1e397e9596..0000000000
--- a/nl-BE/torbrowser_strings.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <string name="tor_bootstrap_connect">Verbinden</string>
- <string name="preferences_tor_network_settings_yes">Ja</string>
- <string name="preferences_tor_network_settings_no">Nee</string>
- <string name="preferences_tor_network_settings_connected">Verbonden</string>
- </resources>
diff --git a/nn-NO/torbrowser_strings.xml b/nn-NO/torbrowser_strings.xml
deleted file mode 100644
index 9200403812..0000000000
--- a/nn-NO/torbrowser_strings.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <string name="tor_bootstrap_connect">Kopla til</string>
- <string name="tor_onboarding_security_level_standard_option">Standard</string>
- <string name="tor_onboarding_security_level_safer_option">Tryggare</string>
- <string name="tor_onboarding_security_level_safest_option">Tryggast</string>
- <string name="tor_onboarding_donate_button">Doner no</string>
-
- <string name="preferences_tor_network_settings">Tor-nettverk</string>
- <string name="preferences_tor_network_settings_bridge_config_builtin_bridge_obfs4">obfs4</string>
- <string name="preferences_tor_network_settings_yes">Ja</string>
- <string name="preferences_tor_network_settings_no">Nei</string>
- </resources>
diff --git a/pa-IN/torbrowser_strings.xml b/pa-IN/torbrowser_strings.xml
deleted file mode 100644
index 485e74c416..0000000000
--- a/pa-IN/torbrowser_strings.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<resources>
- <string name="tor_bootstrap_connect">ਕੁਨੈਕਟ ਕਰੋ</string>
- <string name="preferences_tor_network_settings_yes">ਹਾਂ</string>
- <string name="preferences_tor_network_settings_no">ਨਹੀਂ</string>
- </resources>
1
0

[translation/tails-misc_release] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
by translation@torproject.org 02 Oct '20
by translation@torproject.org 02 Oct '20
02 Oct '20
commit 61b97b0eb3432a2d6973c099e876f2f093e3bc3f
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 2 16:17:18 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
---
tr.po | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tr.po b/tr.po
index cc1a719bcc..97d5fc659c 100644
--- a/tr.po
+++ b/tr.po
@@ -32,8 +32,8 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-09-12 17:58+0200\n"
-"PO-Revision-Date: 2020-09-17 18:39+0000\n"
-"Last-Translator: Alperen Yavuz <mingyu(a)yaani.com>\n"
+"PO-Revision-Date: 2020-10-02 15:59+0000\n"
+"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>\n"
"Language-Team: Turkish (http://www.transifex.com/otf/torproject/language/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -521,7 +521,7 @@ msgid ""
"<i>KeePassXC</i> changed the default name of the database to <i>Passwords.kdbx</i>.\n"
"\n"
"Renaming your database to <i>Passwords.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
-msgstr ""
+msgstr "<b><big><i>KeePassXC</i> veri tabanınızı yeniden adlandırmak istiyor musunuz?</big></b>\n\n<i>Kalıcı</i> klasörünüzde bir <i>KeePassXC</i> veritabanınız var:\n\n<i>${filename}</i>\n\n<i>KeePassXC</i>, veritabanının varsayılan adını şu şekilde değiştirdi: <i>Passwords.kdbx</i>\n\nVeritabanınız <i>Passwords.kdbx</i> olarak yeniden adlandırıldığında <i>KeePassXC</i> tarafından otomatik olarak açılabilir."
#: config/chroot_local-includes/usr/local/bin/keepassxc:25
msgid "Rename"
1
0

[translation/tails-misc_completed] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_completed
by translation@torproject.org 02 Oct '20
by translation@torproject.org 02 Oct '20
02 Oct '20
commit b5758ca979532fbc669d9c3251533f044c48926b
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 2 16:16:43 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_completed
---
tr.po | 1759 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 1759 insertions(+)
diff --git a/tr.po b/tr.po
new file mode 100644
index 0000000000..97d5fc659c
--- /dev/null
+++ b/tr.po
@@ -0,0 +1,1759 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Translators:
+# Alperen Yavuz <mingyu(a)yaani.com>, 2020
+# Ayca Omrak <aycaom(a)hotmail.com>, 2013
+# Bullgeschichte <bullgeschichte(a)riseup.net>, 2015
+# Can Günay <cangunay(a)yandex.com>, 2018
+# 0d1bdb3b9a0d4e8f77bc854af8bf3dfc_e6913f4, 2019
+# cmldrs, 2014
+# cmldrs, 2014
+# imratirtil <d.imra.gundogdu(a)gmail.com>, 2014
+# ecocan <eecocan(a)yahoo.com>, 2014
+# ecocan <eecocan(a)yahoo.com>, 2014
+# Emma Peel, 2018,2020
+# imratirtil <d.imra.gundogdu(a)gmail.com>, 2014
+# Kaya Zeren <kayazeren(a)gmail.com>, 2015-2020
+# metint, 2014
+# metint, 2014
+# Ozancan Karataş <ozancankaratas96(a)outlook.com>, 2015-2016
+# Tails_developers <tails(a)boum.org>, 2014
+# Tails_developers <tails(a)boum.org>, 2014
+# T. E. Kalayci <tekrei(a)gmail.com>, 2017-2018
+# T. E. Kalayci <tekrei(a)gmail.com>, 2020
+# Th3Kh3d1v3, 2018
+# Ümit Türk <zucchinitr(a)gmail.com>, 2013
+# Volkan Gezer <volkangezer(a)gmail.com>, 2013-2016
+# Yasin Özel <iletisim(a)yasinozel.com.tr>, 2013
+msgid ""
+msgstr ""
+"Project-Id-Version: Tor Project\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-12 17:58+0200\n"
+"PO-Revision-Date: 2020-10-02 15:59+0000\n"
+"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>\n"
+"Language-Team: Turkish (http://www.transifex.com/otf/torproject/language/tr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: tr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:42
+msgid "Tor is ready"
+msgstr "Tor hazır"
+
+#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:43
+msgid "You can now access the Internet."
+msgstr "Artık İnternet'e erişebilirsiniz."
+
+#: config/chroot_local-includes/etc/whisperback/config.py:69
+#, python-format
+msgid ""
+"<h1>Help us fix your bug!</h1>\n"
+"<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n"
+"<p><strong>Do not include more personal information than\n"
+"needed!</strong></p>\n"
+"<h2>About giving us an email address</h2>\n"
+"<p>\n"
+"Giving us an email address allows us to contact you to clarify the problem. This\n"
+"is needed for the vast majority of the reports we receive as most reports\n"
+"without any contact information are useless. On the other hand it also provides\n"
+"an opportunity for eavesdroppers, like your email or Internet provider, to\n"
+"confirm that you are using Tails.\n"
+"</p>\n"
+msgstr "<h1>Karşılaştığınız sorunu çözmemize yardım edin!</h1>\n<p><a href=\"%s\">Hata bildirme yönergelerini</a> okuyun.</p>\n<p><strong>Gerektiğinden fazla kişisel bilgi vermeyin!</strong></p>\n<h2>E-posta adresinizi bildirmeniz hakkında</h2>\n<p>\nBir e-posta adresi bildirmeniz, sorununuzu daha iyi anlamak için sizinle iletişim\nkurmamızı sağlar. Bize iletilen pek çok hata bildirimi, iletişim bilgileri bulunmadığı\niçin işe yaramıyor. Ancak gerçek bilgilerinizi verdiğinizde sizi izliyor olabilecek \nkişi ya da kuruluşlara (e-posta ya da İnternet hizmeti sağlayıcınıza) Tails uygulamasını kullandığınızı\nbelirleme fırsatı vermiş olursunuz. Bu nedenle farklı bir e-posta adresi kullanmanız önerilir.\n</p>\n"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:115
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
+msgid "Additional Software"
+msgstr "Ek Uygulamalar"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
+msgid ""
+"You can install additional software automatically from your persistent "
+"storage when starting Tails."
+msgstr "Tails başlatılırken kalıcı depolama alanından otomatik olarak ek uygulamalar kurabilirsiniz."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
+msgid ""
+"The following software is installed automatically from your persistent "
+"storage when starting Tails."
+msgstr "Şu uygulamalar Tails başlatılırken kalıcı depolama alanından otomatik olarak kurulacak."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:171
+msgid ""
+"To add more, install some software using <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
+"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr "Başka uygulamalar eklemek için <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> diğer uygulamaları kurun."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
+msgid "_Create persistent storage"
+msgstr "_Kalıcı depolama oluştur"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:62
+msgid "Persistence is disabled for Electrum"
+msgstr "Electrum için kalıcılık devre dışı bırakıldı"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:64
+msgid ""
+"When you reboot Tails, all of Electrum's data will be lost, including your Bitcoin wallet.\n"
+"It is strongly recommended to only run Electrum when its persistence feature is activated."
+msgstr "Tails yeniden başlatıldığında, Bitcoin cüzdanınız da dahil tüm Electrum verileri kaybolur. \nElectrum uygulamasının yalnız kalıcılık özelliği etkin iken çalıştırılması önerilir."
+
+#: config/chroot_local-includes/usr/local/bin/electrum:65
+msgid "Do you want to start Electrum anyway?"
+msgstr "Electrum yine de başlatılsın mı?"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:68
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
+msgid "_Launch"
+msgstr "_Başlat"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:69
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
+msgid "_Exit"
+msgstr "Çı_kış"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:178
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:611
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:794
+msgid ""
+"For debugging information, execute the following command: sudo tails-"
+"debugging-info"
+msgstr "Sorun giderme bilgileri için şu komutu yürütün: sudo tails-debugging-info"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:244
+msgid ""
+"<b>An error occured while updating the signing key.</b>\\n\\n<b>This "
+"prevents determining whether an upgrade is available from our "
+"website.</b>\\n\\nCheck your network connection, and restart Tails to try "
+"upgrading again.\\n\\nIf the problem persists, go to "
+"file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
+msgstr "<b>İmzalama anahtarı güncellenirken bir sorun çıktı.</b>\\n\\n\\<b>Bu durum web sitemizde bir güncelleme olup olmadığının belirlenmesini engeller.</b>n\\nGüncellemeleri denetlemek için ağ bağlantınızı gözden geçirin ve Tails uygulamasını yeniden başlatın.\\n\\nSorun sürüyorsa, file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html adresine bakabilirsiniz."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:250
+msgid "Error while updating the signing key"
+msgstr "İmzalama anahtarı güncellenirken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:279
+msgid "Error while checking for upgrades"
+msgstr "Güncellemeler denetlenirken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:282
+msgid ""
+"<b>Could not determine whether an upgrade is available from our website.</b>\n"
+"\n"
+"Check your network connection, and restart Tails to try upgrading again.\n"
+"\n"
+"If the problem persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
+msgstr "<b>Web sitemizde bir güncelleme olup olmadığı belirlenemedi.</b>\n\nGüncellemeleri denetlemek için ağ bağlantınızı gözden geçirin ve Tails uygulamasını yeniden başlatın.\n\nSorun sürüyorsa, file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html adresine bakabilirsiniz."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297
+msgid "no automatic upgrade is available from our website for this version"
+msgstr "web sitemizde bu sürüm için otomatik güncelleme desteği yok"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:303
+msgid "your device was not created using a USB image or Tails Installer"
+msgstr "aygıtnız bir USB kalıbı ya da Tails kurucu ile oluşturulmamış"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:308
+msgid "Tails was started from a DVD or a read-only device"
+msgstr "Tails bir DVD ya da salt okunur aygıt üzerinden başlatıldı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:313
+msgid "there is not enough free space on the Tails system partition"
+msgstr "Tails sistem bölümünde yeterli boş alan yok"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318
+msgid "not enough memory is available on this system"
+msgstr "bu sistemde yeterli bellek yok"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:324
+#, perl-brace-format
+msgid "No explanation available for reason '%{reason}s'."
+msgstr "'%{reason}s' nedeni için bir açıklama yok."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:346
+msgid "The system is up-to-date"
+msgstr "Sistem güncel"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:351
+msgid "This version of Tails is outdated, and may have security issues."
+msgstr "Bu Tails sürümü güncel değil ve güvenlik sorunları olabilir."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:383
+#, perl-brace-format
+msgid ""
+"The available incremental upgrade requires %{space_needed}s of free space on"
+" Tails system partition, but only %{free_space}s is available."
+msgstr "Yüklenebilecek artımlı güncelleme için Tails sistem bölümünde %{space_needed}s boş alan gerekli ancak yalnız %{free_space}s var."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:399
+#, perl-brace-format
+msgid ""
+"The available incremental upgrade requires %{memory_needed}s of free memory,"
+" but only %{free_memory}s is available."
+msgstr "Yüklenebilecek artımlı güncelleme için %{memory_needed}s boş bellek gerekli ancak yalnız %{free_memory}s var."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:421
+msgid ""
+"An incremental upgrade is available, but no full upgrade is.\n"
+"This should not happen. Please report a bug."
+msgstr "Artımlı bir yükseltme varken tam yükseltme yok gibi görünüyor.\nBu olmamalıydı. Lütfen bu sorunu bildirin."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:425
+msgid "Error while detecting available upgrades"
+msgstr "Güncellemeler denetlenirken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:435
+#, perl-brace-format
+msgid ""
+"<b>You should upgrade to %{name}s %{version}s.</b>\n"
+"\n"
+"For more information about this new version, go to %{details_url}s\n"
+"\n"
+"We recommend you close all other applications during the upgrade.\n"
+"Downloading the upgrade might take a long time, from several minutes to a few hours.\n"
+"\n"
+"Download size: %{size}s\n"
+"\n"
+"Do you want to upgrade now?"
+msgstr "<b>%{name}s %{version}s sürümüne güncellemeniz gerekli.</b>\n\nBu sürüm hakkında ayrıntılı bilgi almak için, %{details_url}s adresine bakabilirsiniz.\n\nBu güncelleme sırasında açık tüm uygulamaları kapatmanız önerilir.\nGüncellemenin indirilmesi birkaç dakika ile birkaç saat arasında sürebilir.\n\nİndirme boyutu: %{size}s\n\nŞimdi güncellemek ister misiniz?"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:449
+msgid "Upgrade available"
+msgstr "Güncelleme yayınlanmış"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:450
+msgid "Upgrade now"
+msgstr "Şimdi güncelle"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451
+msgid "Upgrade later"
+msgstr "Daha sonra güncelle"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:459
+#, perl-brace-format
+msgid ""
+"<b>You should do a manual upgrade to %{name}s %{version}s.</b>\n"
+"\n"
+"For more information about this new version, go to %{details_url}s\n"
+"\n"
+"It is not possible to automatically upgrade your device to this new version: %{explanation}s.\n"
+"\n"
+"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+msgstr "<b>%{name}s %{version}s sürümüne el ile güncelleyebilirsiniz.</b>\n\nBu sürüm hakkında ayrıntılı bilgi almak için %{details_url}s adresine bakabilirsiniz\n\nAygıtınız bu sürüme otomatik olarak güncellenemez: %{explanation}s.\n\nEl ile güncellemenin nasıl yapılacağını öğrenmek için https://tails.boum.org/doc/upgrade/#manual adresine bakabilirsiniz"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:475
+msgid "New version available"
+msgstr "Yeni bir sürüm yayınlanmış"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:556
+msgid "Downloading upgrade"
+msgstr "Güncelleme indiriliyor"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:559
+#, perl-brace-format
+msgid "Downloading the upgrade to %{name}s %{version}s..."
+msgstr "%{name}s %{version}s güncellemesi indiriliyor..."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:600
+msgid ""
+"<b>The upgrade could not be downloaded.</b>\\n\\nCheck your network "
+"connection, and restart Tails to try upgrading again.\\n\\nIf the problem "
+"persists, go to "
+"file:///usr/share/doc/tails/website/doc/upgrade/error/download.en.html"
+msgstr "<b>Güncelleme indirilemedi.</b>\\n\\nAğ bağlantınızı denetleyin, ve Tails uygulamasını yeniden başlatıp yeniden güncellemeyi deneyin.\\n\\nSorun sürüyorsa, file:///usr/share/doc/tails/website/doc/upgrade/error/download.en.html adresine bakabilirsiniz."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:616
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:635
+msgid "Error while downloading the upgrade"
+msgstr "Güncelleme indirilirken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628
+#, perl-brace-format
+msgid ""
+"Output file '%{output_file}s' does not exist, but tails-iuk-get-target-file "
+"did not complain. Please report a bug."
+msgstr "'%{output_file}s' çıktı dosyası bulunamadı ancak tails-iuk-get-target-file uygulaması bunu bir sorun olarak bildirmedi. Lütfen bu hatayı bildirin."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:647
+msgid "Error while creating temporary downloading directory"
+msgstr "Geçiçi indirme klasörü oluşturulurken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:650
+msgid "Failed to create temporary download directory"
+msgstr "Geçici indirme klasörü oluşturulamadı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:674
+msgid ""
+"<b>Could not choose a download server.</b>\n"
+"\n"
+"This should not happen. Please report a bug."
+msgstr "<b>Bir indirme sunucusu seçilemedi.</b>\n\nBu olmamalıydı. Lütfen hata olarak bildirin."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678
+msgid "Error while choosing a download server"
+msgstr "İndirme sunucusu seçilirken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:693
+msgid ""
+"The upgrade was successfully downloaded.\n"
+"\n"
+"The network connection will now be disabled.\n"
+"\n"
+"Please save your work and close all other applications."
+msgstr "Güncelleme indirildi.\n\nŞimdi ağ bağlantınız devre dışı bırakılacak.\n\nLütfen çalışmalarınızı kaydedip açık olan tüm uygulamaları kapatın."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:699
+msgid "Upgrade successfully downloaded"
+msgstr "Güncelleme indirildi"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:701
+msgid "Apply upgrade"
+msgstr "Güncellemeyi uygula"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:708
+msgid ""
+"<b>Your Tails device was successfully upgraded.</b>\n"
+"\n"
+"Some security features were temporarily disabled.\n"
+"You should restart Tails on the new version as soon as possible.\n"
+"\n"
+"Do you want to restart now?"
+msgstr "<b>Tails aygıtınız güncellendi.</b>\n\nBazı güvenlik özellikleri geçici olarak devre dışı bırakıldı.\nYeni sürüme geçmek için Tails uygulamasını en kısa sürede yeniden başlatın\n\nŞimdi yeniden başlatmak ister misiniz?"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:713
+msgid "Restart Tails"
+msgstr "Tails Uygulamasını Yeniden Başlat"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:714
+msgid "Restart now"
+msgstr "Şimdi yeniden başlat"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:715
+msgid "Restart later"
+msgstr "Daha sonra yeniden başlat"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:726
+msgid "Error while restarting the system"
+msgstr "Sistem yeniden başlatılırken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:729
+msgid "Failed to restart the system"
+msgstr "Sistem yeniden başlatılamadı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:744
+msgid "Error while shutting down the network"
+msgstr "Ağ kapatılırken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:747
+msgid "Failed to shutdown network"
+msgstr "Ağ kapatılamadı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:754
+msgid "Upgrading the system"
+msgstr "Sistem güncelleniyor"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:756
+msgid ""
+"<b>Your Tails device is being upgraded...</b>\n"
+"\n"
+"For security reasons, the networking is now disabled."
+msgstr "<b>Tails aygıtınız güncelleniyor...</b>\n\nGüvenlik nedenlerinden dolayı, ağ devre dışı bırakıldı."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:789
+msgid ""
+"<b>An error occured while installing the upgrade.</b>\\n\\nYour Tails device"
+" needs to be repaired and might be unable to restart.\\n\\nPlease follow the"
+" instructions at "
+"file:///usr/share/doc/tails/website/doc/upgrade/error/install.en.html"
+msgstr "<b>Güncelleme kurulurken bir sorun çıktı.</b>\\n\\nTails aygıtınızın onarılması gerekiyor ve yeniden başlatılamayabilir.\\n\\nLütfen file:///usr/share/doc/tails/website/doc/upgrade/error/install.en.html adresindeki yönergeleri izleyin."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:799
+msgid "Error while installing the upgrade"
+msgstr "Güncelleme kurulurken sorun çıktı"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32
+msgid "Additional Settings"
+msgstr "Ek Ayarlar"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:49
+msgid "Cancel"
+msgstr "İptal"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:46
+msgid "Add"
+msgstr "Ekle"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:54
+msgid "Back"
+msgstr "Geri"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:64
+msgid "_Administration Password"
+msgstr "_Yönetim Parolası"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:187
+msgid "_MAC Address Spoofing"
+msgstr "_MAC Adresi Yanıltması"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:250
+msgid "_Network Connection"
+msgstr "_Ağ Bağlantısı"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:259
+msgid "Direct (default)"
+msgstr "Doğrudan (varsayılan)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:261
+msgid "Bridge & Proxy"
+msgstr "Köprü ve Vekil Sunucu"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:263
+msgid "Offline"
+msgstr "Çevrimdışı"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:333
+msgid "_Unsafe Browser"
+msgstr "_Unsafe Browser"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:342
+msgid "Enabled"
+msgstr "Etkin"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:344
+msgid "Disabled (default)"
+msgstr "Devre dışı (varsayılan)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:395
+msgid "On (default)"
+msgstr "Açık (varsayılan)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:397
+msgid "On"
+msgstr "Açık"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:399
+msgid "Off"
+msgstr "Kapalı"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py:401
+msgid "Off (default)"
+msgstr "Kapalı (varsayılan)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:92
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr "live-persist şu hata kodu ile yürütülemedi {returncode}:\n{stderr}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:125
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:142
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr "cryptsetup şu hata kodu ile yürütülemedi {returncode}:\n{stdout}\n{stderr}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:160
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr "live-persist şu hata kodu ile yürütülemedi {returncode}:\n{stdout}\n{stderr}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:174
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr "umount şu hata kodu ile yürütülemedi {returncode}:\n{stdout}\n{stderr}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:67
+msgid "Unlocking…"
+msgstr "Kilit açılıyor..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:95
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:462
+msgid "Unlock"
+msgstr "Kilidi Aç"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:100
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:40
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr "Bu parola ile şifreli depolama alanının kilidi açılamadı."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:164
+msgid "_Language"
+msgstr "_Dil"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:207
+msgid "_Formats"
+msgstr "_Biçimler"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py:244
+msgid "_Keyboard Layout"
+msgstr "_Tuş Takımı Düzeni"
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:15
+#, sh-format
+msgid ""
+"<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n"
+"\n"
+"You have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n"
+"\n"
+"<i>${filename}</i>\n"
+"\n"
+"<i>KeePassXC</i> changed the default name of the database to <i>Passwords.kdbx</i>.\n"
+"\n"
+"Renaming your database to <i>Passwords.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
+msgstr "<b><big><i>KeePassXC</i> veri tabanınızı yeniden adlandırmak istiyor musunuz?</big></b>\n\n<i>Kalıcı</i> klasörünüzde bir <i>KeePassXC</i> veritabanınız var:\n\n<i>${filename}</i>\n\n<i>KeePassXC</i>, veritabanının varsayılan adını şu şekilde değiştirdi: <i>Passwords.kdbx</i>\n\nVeritabanınız <i>Passwords.kdbx</i> olarak yeniden adlandırıldığında <i>KeePassXC</i> tarafından otomatik olarak açılabilir."
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:25
+msgid "Rename"
+msgstr "Yeniden Adlandır"
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:26
+msgid "Keep current name"
+msgstr "Geçerli ad korunsun"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:96
+msgid "Persistence wizard - Persistent volume creation"
+msgstr "Kalıcılık yardımcısı - Kalıcı depolama oluşturma"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:99
+msgid "Choose a passphrase to protect the persistent volume"
+msgstr "Kalıcı depolamayı korumak için bir parola seçin"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:103
+#, perl-format
+msgid ""
+"A %s persistent volume will be created on the <b>%s %s</b> device. Data on "
+"this volume will be stored in an encrypted form protected by a passphrase."
+msgstr "<b>%s %s</b> aygıtında kalıcı bir %s depolaması oluşturulacak. Buradaki veriler parola ile şifrelenmiş olarak depolanacak."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:108
+msgid "Create"
+msgstr "Oluştur"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:151
+msgid ""
+"<b>Beware!</b> Using persistence has consequences that must be well "
+"understood. Tails can't help you if you use it wrong! See the <i>Encrypted "
+"persistence</i> page of the Tails documentation to learn more."
+msgstr "<b>Dikkat!</b> Kalıcı kullanımın iyi anlamanız gereken sonuçları vardır. Yanlış kullanırsanız Tails uygulamasının size yardımı olmaz. Ayrıntılı bilgi almak için Tails belgelerindeki <i>Şifrelenmiş kaıcılık</i> bölümüne bakabilirsiniz."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:179
+msgid "Passphrase:"
+msgstr "Parola:"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:187
+msgid "Verify Passphrase:"
+msgstr "Parola Onayı:"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:198
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:266
+msgid "Passphrase can't be empty"
+msgstr "Parola boş bırakılamaz"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:233
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394
+msgid "Show Passphrase"
+msgstr "Parola Görüntülensin"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:257
+msgid "Passphrases do not match"
+msgstr "Parola ile onayı aynı değil"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:312
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:181
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:103
+msgid "Failed"
+msgstr "Başarısız"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:320
+msgid "Mounting Tails persistence partition."
+msgstr "Tails kalıcılık bölümü takılıyor"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:323
+msgid "The Tails persistence partition will be mounted."
+msgstr "Tails kalıcılık bölümü takılacak"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:332
+msgid "Correcting permissions of the persistent volume."
+msgstr "Kalıcı depolama izinleri düzeltiliyor."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:335
+msgid "The permissions of the persistent volume will be corrected."
+msgstr "Kalıcı depolama izinleri düzeltilecek."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:343
+msgid "Creating default persistence configuration."
+msgstr "Varsayılan kalıcılık ayarları oluşturuluyor."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:346
+msgid "The default persistence configuration will be created."
+msgstr "Varsayılan kalıcılık yapılandırması oluşturulacak."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:361
+msgid "Creating..."
+msgstr "Oluşturuluyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:364
+msgid "Creating the persistent volume..."
+msgstr "Kalıcı depolama oluşturuluyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:88
+msgid "Persistence wizard - Persistent volume configuration"
+msgstr "Kalıcılık yardımcısı - Kalıcı depolama yapılandırması"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:91
+msgid "Specify the files that will be saved in the persistent volume"
+msgstr "Kalıcı depolamaya kaydedilecek dosyaları belirtin"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:95
+#, perl-format
+msgid ""
+"The selected files will be stored in the encrypted partition %s (%s), on the"
+" <b>%s %s</b> device."
+msgstr "Seçilmiş dosyalar <b>%s %s</b> aygıtında bulunan şifreli %s (%s) bölümüne depolanacak."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:101
+msgid "Save"
+msgstr "Kaydet"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:195
+msgid "Saving..."
+msgstr "Kaydediliyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:198
+msgid "Saving persistence configuration..."
+msgstr "Kalıcılık ayarları kaydediliyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:53
+msgid "Persistence wizard - Persistent volume deletion"
+msgstr "Kalıcılık yardımcısı - Kalıcı depolamayı silme"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:56
+msgid "Your persistent data will be deleted."
+msgstr "Kalıcı depolama verileriniz silinecek."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:60
+#, perl-format
+msgid ""
+"The persistent volume %s (%s), on the <b>%s %s</b> device, will be deleted."
+msgstr "<b>%s %s</b> aygıtındaki, %s (%s) kalıcı depolama silinecek."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:66
+msgid "Delete"
+msgstr "Sil"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:117
+msgid "Deleting..."
+msgstr "Siliniyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:120
+msgid "Deleting the persistent volume..."
+msgstr "Kalıcı depolama siliniyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55
+msgid "Personal Data"
+msgstr "Kişisel Veriler"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:57
+msgid "Keep files stored in the `Persistent' directory"
+msgstr "Dosyalar `Persistent' klasöründe depolansın"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70
+msgid "Welcome Screen"
+msgstr "Hoş Geldiniz Ekranı"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:72
+msgid "Language, administration password, and additional settings"
+msgstr "Dil, yönetim parolası ve diğer ayarlar"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85
+msgid "Browser Bookmarks"
+msgstr "Yer İmlerine Göz At"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:87
+msgid "Bookmarks saved in the Tor Browser"
+msgstr "Tor Browser üzerine kaydedilmiş yer imleri"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100
+msgid "Network Connections"
+msgstr "Ağ Bağlantıları"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:102
+msgid "Configuration of network devices and connections"
+msgstr "Ağ aygıt ve bağlantılarının ayarları"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:117
+msgid "Software installed when starting Tails"
+msgstr "Tails başlatılırken kurulan uygulamalar"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135
+msgid "Printers"
+msgstr "Yazıcılar"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:137
+msgid "Printers configuration"
+msgstr "Yazıcı ayarları"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150
+msgid "Thunderbird"
+msgstr "Thunderbird"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:152
+msgid "Thunderbird emails, feeds, and settings"
+msgstr "Thunderbird e-postalar, akışlar ve ayarlar"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165
+msgid "GnuPG"
+msgstr "GnuPG"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:167
+msgid "GnuPG keyrings and configuration"
+msgstr "GnuPG anahtarlık ve ayarları"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180
+msgid "Bitcoin Client"
+msgstr "Bitcoin İstemcisi"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:182
+msgid "Electrum's bitcoin wallet and configuration"
+msgstr "Electrum bitcoin cüzdanı ve ayarları"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195
+msgid "Pidgin"
+msgstr "Pidgin"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:197
+msgid "Pidgin profiles and OTR keyring"
+msgstr "Pidgin profilleri ve Kayıt Dışı anahtarlığı"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210
+msgid "SSH Client"
+msgstr "SSH İstemcisi"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:212
+msgid "SSH keys, configuration and known hosts"
+msgstr "SSH anahtarları, ayarları ve bilinen sunucular"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:225
+msgid "Dotfiles"
+msgstr "Dotfiles"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:227
+msgid ""
+"Symlink into $HOME every file or directory found in the `dotfiles' directory"
+msgstr "`dotfiles' klasöründe bulunan tüm dosya ve klasörler için $HOME üzerinde sembolik bağlantı oluşturur"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:113
+msgid "Custom"
+msgstr "Özel"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:265
+msgid "Setup Tails persistent volume"
+msgstr "Tails kalıcı depolaması kur"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:343
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:481
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:223
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
+msgid "Error"
+msgstr "Hata"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:372
+#, perl-format
+msgid "Device %s already has a persistent volume."
+msgstr "%s aygıtında zaten bir kalıcı depolama var."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:380
+#, perl-format
+msgid "Device %s has not enough unallocated space."
+msgstr "%s aygıtında yeteri kadar boş alan yok."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:387
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401
+#, perl-format
+msgid "Device %s has no persistent volume."
+msgstr "%s aygıtında bir kalıcı depolama yok."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:393
+#, perl-format
+msgid ""
+"Cannot delete the persistent volume on %s while in use. You should restart "
+"Tails without persistence."
+msgstr "%s üzerindeki kalıcı depolama kullanımda olduğundan silinemedi. Tails uygulamasını kalıcılık olmadan yeniden başlatmalısınız."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407
+#, perl-format
+msgid "Persistence volume on %s is not unlocked."
+msgstr "%s üzerindeki kalıcı depolama birimi kilitlenmemiş."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:412
+#, perl-format
+msgid "Persistence volume on %s is not mounted."
+msgstr "%s üzerindeki kalıcı depolama birimi takılmamış."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:417
+#, perl-format
+msgid ""
+"Persistence volume on %s is not readable. Permissions or ownership problems?"
+msgstr "%s üzerindeki kalıcı depolama birimi okunamadı. İzin ya da sahiplik sorunu olabilir mi?"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:422
+#, perl-format
+msgid "Persistence volume on %s is not writable."
+msgstr "%s üzerindeki kalıcı depolama birimi yazılabilir değil."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:431
+#, perl-format
+msgid "Tails is running from non-USB / non-SDIO device %s."
+msgstr "Tails, USB ya da SDIO olmayan %s aygıtından çalışıyor."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:437
+#, perl-format
+msgid "Device %s is optical."
+msgstr "%s aygıtı optik."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:444
+#, perl-format
+msgid "Device %s was not created using a USB image or Tails Installer."
+msgstr "%s aygıtı bir USB kalıbı ya da Tails Kurucu kullanılarak oluşturulmamış."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:688
+msgid "Persistence wizard - Finished"
+msgstr "Kalıcılık yardımcısı - Tamamlandı"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:691
+msgid ""
+"Any changes you have made will only take effect after restarting Tails.\n"
+"\n"
+"You may now close this application."
+msgstr "Yaptığınız değişiklikler Tails yeniden başlatıldıktan sonra geçerli olacak.\n\nŞimdi bu uygulamayı kapatabilirsiniz."
+
+#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:19
+msgid "su is disabled. Please use sudo instead."
+msgstr " su komutu devre dışı bırakılmış. Lütfen yerine sudo komutunu kullanın."
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:225
+msgid ""
+"The device Tails is running from cannot be found. Maybe you used the 'toram'"
+" option?"
+msgstr "Tails uygulamasının çalıştığı bir aygıt bulunamadı. 'toram' seçeneğini mi kullanıyorsunuz?"
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:253
+msgid ""
+"The drive Tails is running from cannot be found. Maybe you used the 'toram' "
+"option?"
+msgstr "Tails uygulamasının çalıştığı bir sürücü bulunamadı. 'toram' seçeneğini mi kullanıyorsunuz?"
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr "İçe Aktarma Tamamlanamadı"
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:45
+#, python-brace-format
+msgid ""
+"Failed to import keys from {path}:\n"
+"{error}"
+msgstr "Anahtarlar {path} üzerinden içe aktarılamadı:\n{error}"
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:53
+msgid "Key Imported"
+msgid_plural "Keys Imported"
+msgstr[0] "Anahtar İçe Aktarıldı"
+msgstr[1] "Anahtarlar İçe Aktarıldı"
+
+#. Translators: Don't translate {uids}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:56
+#, python-brace-format
+msgid "Imported a key for {uids}"
+msgid_plural "Imported keys for {uids}"
+msgstr[0] "{uids} için anahtar içe aktarıldı"
+msgstr[1] "{uids} için anahtarlar içe aktarıldı"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
+msgid "Lock screen"
+msgstr "Ekranı kilitle"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
+msgid "Suspend"
+msgstr "Duraklat"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
+msgid "Restart"
+msgstr "Yeniden başlat"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
+msgid "Power Off"
+msgstr "Gücü Kapat"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:22
+#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
+msgid "Tails"
+msgstr "Tails"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:25
+#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
+msgid "About Tails"
+msgstr "Tails Hakkında"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:35
+msgid "The Amnesic Incognito Live System"
+msgstr "The Amnesic Incognito Live System"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:36
+#, python-format
+msgid ""
+"Build information:\n"
+"%s"
+msgstr "Yapım bilgisi:\n%s"
+
+#: config/chroot_local-includes/usr/local/bin/tails-about:54
+msgid "not available"
+msgstr "kullanılamıyor"
+
+#. Translators: Don't translate {details}, it's a placeholder and will
+#. be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
+#, python-brace-format
+msgid ""
+"{details} Please check your list of additional software or read the system "
+"log to understand the problem."
+msgstr "{details} Lütfen ek uygulama listenizi denetleyin ya da sorunu anlamak için sistem günlüğüne bakın."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
+msgid ""
+"Please check your list of additional software or read the system log to "
+"understand the problem."
+msgstr "Lütfen ek uygulama listenizi denetleyin ya da sorunu anlamak için sistem günlüğüne bakın."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
+msgid "Show Log"
+msgstr "Günlüğü Görüntüle"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
+msgid "Configure"
+msgstr "Yapılandır"
+
+#. Translators: Don't translate {beginning} or {last}, they are
+#. placeholders and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
+#, python-brace-format
+msgid "{beginning} and {last}"
+msgstr "{beginning} ile {last}"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:224
+msgid ", "
+msgstr ", "
+
+#. Translators: Don't translate {packages}, it's a placeholder and will
+#. be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:290
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
+#, python-brace-format
+msgid "Add {packages} to your additional software?"
+msgstr "{packages} ek uygulamalara eklensin mi?"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
+msgid ""
+"To install it automatically from your persistent storage when starting "
+"Tails."
+msgstr "Tails başlatılırken kalıcı depolama alanınızdan otomatik olarak kurmak için."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
+msgid "Install Every Time"
+msgstr "Her Defasında Kurulsun"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
+msgid "Install Only Once"
+msgstr "Yalnız Bir Kez Kurulsun"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:301
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:331
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+msgid "The configuration of your additional software failed."
+msgstr "Ek uygulamanız yapılandırılamadı."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+msgid ""
+"To install it automatically when starting Tails, you can create a persistent"
+" storage and activate the <b>Additional Software</b> feature."
+msgstr "Tails başlatılırken otomatik kurulum yapılması için bir kalıcı depolama oluşturarak <b>Ek Uygulamalar</b> özelliğini etkinleştirebilirsiniz."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+msgid "Create Persistent Storage"
+msgstr "Kalıcı Depolama Oluştur"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+msgid "Creating your persistent storage failed."
+msgstr "Kalıcı depolama oluşturulamadı."
+
+#. Translators: Don't translate {packages}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:342
+#, python-brace-format
+msgid "You could install {packages} automatically when starting Tails"
+msgstr "Tails başlatılırken otomatik olarak {packages} kurabilirsiniz"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+msgid "To do so, you need to run Tails from a USB stick."
+msgstr "Bunun için Tails uygulamasını bir USB bellekten çalıştırmalısınız."
+
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#, python-brace-format
+msgid "Remove {packages} from your additional software?"
+msgstr "{packages} ek uygulamalarınızdan kaldırılsın mı?"
+
+#. Translators: Don't translate {packages}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#, python-brace-format
+msgid "This will stop installing {packages} automatically."
+msgstr "Bu işlem otomatik {packages} kurulumunu durduracak."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
+msgid "Remove"
+msgstr "Kaldır"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+msgid "Installing your additional software from persistent storage..."
+msgstr "Ek uygulamalarınız kalıcı depolama alanından kuruluyor..."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+msgid "This can take several minutes."
+msgstr "Bu işlem bir kaç dakika sürebilir."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+msgid "The installation of your additional software failed"
+msgstr "Ek uygulama kurulamadı"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+msgid "Additional software installed successfully"
+msgstr "Ek uygulama kuruldu"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+msgid "The check for upgrades of your additional software failed"
+msgstr "Ek uygulamalarınızın güncellemeleri denetlenemedi"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+msgid ""
+"Please check your network connection, restart Tails, or read the system log "
+"to understand the problem."
+msgstr "Lütfen ağ bağlantınızı denetleyin, Tails uygulamasını yeniden başlatın ya da sorunu anlamak için sistem günlüğüne bakın."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+msgid "The upgrade of your additional software failed"
+msgstr "Ek uygulama güncellenemedi"
+
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+msgid "Documentation"
+msgstr "Belgeler"
+
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:94
+#, python-brace-format
+msgid ""
+"Remove {package} from your additional software? This will stop installing "
+"the package automatically."
+msgstr "{package} ek uygulamalarınız arasından kaldırılsın mı? Bu işlem paketin otomatik olarak kurulmasını durduracak."
+
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#, python-brace-format
+msgid "Failed to remove {pkg}"
+msgstr "{pkg} kaldırılamadı"
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+msgid "Failed to read additional software configuration"
+msgstr "Ek uygulama yapılandırması okunamadı"
+
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:152
+#, python-brace-format
+msgid "Stop installing {package} automatically"
+msgstr "{package} otomatik olarak kurulmasın"
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:178
+msgid ""
+"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
+"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
+"command line</a>."
+msgstr "Bunun için <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> diğer uygulamaları kurun."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
+msgid ""
+"To do so, unlock your persistent storage when starting Tails and install "
+"some software using <a href=\"synaptic.desktop\">Synaptic Package "
+"Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command "
+"line</a>."
+msgstr "Bunun için Tails uygulamasını başlatırken kalıcı 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> diğer uygulamaları kurun."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:197
+msgid ""
+"To do so, create a persistent storage and install some software using <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
+"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr "Bunun için, bir kalıcı depolama ekleyin ve <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> diğer uygulamaları kurun."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205
+msgid ""
+"To do so, install Tails on a USB stick and create a persistent storage."
+msgstr "Bunun için Tails uygulamasını bir USB belleğe kurun ve bir kalıcı depolama ekleyin."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:251
+msgid "[package not available]"
+msgstr "[paket kullanılamıyor]"
+
+#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
+msgid "Synchronizing the system's clock"
+msgstr "Sistem saati eşitleniyor "
+
+#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
+msgid ""
+"Tor needs an accurate clock to work properly, especially for Onion Services."
+" Please wait..."
+msgstr "Tor uygulamasının düzgün çalışabilmesi için saatin doğru olması önemlidir, özellikle Onion Hizmetleri için. Lütfen bekleyin..."
+
+#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
+msgid "Failed to synchronize the clock!"
+msgstr "Saat eşitlenemedi!"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
+msgid "Lock Screen"
+msgstr "Ekranı Kilitle"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
+msgid "Screen Locker"
+msgstr "Ekran Kilitleyici"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
+msgid "Set up a password to unlock the screen."
+msgstr "Ekran kilidini açmak için bir parola ayarlayın."
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
+msgid "Password"
+msgstr "Parola"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93
+msgid "Confirm"
+msgstr "Onayla"
+
+#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
+msgid "This version of Tails has known security issues:"
+msgstr "Bu Tails sürümünde bilinen bazı güvenlik sorunları var: "
+
+#: config/chroot_local-includes/usr/local/bin/tails-security-check:135
+msgid "Known security issues"
+msgstr "Bilinen güvenlik sorunları"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:56
+#, sh-format
+msgid "Network card ${nic} disabled"
+msgstr "${nic} ağ kartı devre dışı"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:57
+#, sh-format
+msgid ""
+"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
+"You might prefer to restart Tails and disable MAC spoofing."
+msgstr "${nic_name} (${nic}) ağ kartı için MAC maskelemesi başarısız bu yüzden geçici olarak devre dışı bırakıldı.\nTails'i yeniden başlatmanız ve MAC maskelemesini kapatmanız gerekebilir."
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:66
+msgid "All networking disabled"
+msgstr "Tüm ağ devre dışı"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:67
+#, sh-format
+msgid ""
+"MAC spoofing failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\n"
+"You might prefer to restart Tails and disable MAC spoofing."
+msgstr "${nic_name} (${nic}) ağ kartı için MAC maskelemesi başarısız. Ayrıca bu hatanın kurtarılma girişimi de başarısız dolayısıyla tüm ağ devre dışı.\nTails uygulamasını yeniden başlatmanız ve MAC maskelemesini kapatmanız gerekebilir."
+
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
+msgid ""
+"\"<b>Not enough memory available to check for upgrades.</b>\n"
+"\n"
+"Make sure this system satisfies the requirements for running Tails.\n"
+"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
+"\n"
+"Try to restart Tails to check for upgrades again.\n"
+"\n"
+"Or do a manual upgrade.\n"
+"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
+msgstr "\"<b>Güncellemeleri denetlemek için yeterli bellek yok.</b>\n\nSistemin Tails uygulamasını çalıştırmak için gereksinimleri karşıladığından emin olun.\nfile:///usr/share/doc/tails/website/doc/about/requirements.en.html dosyasına bakabilirsiniz\n\nGüncellemeleri yeniden denetlemek için Tails uygulamasını yeniden başlatmayı deneyin.\n\nYa da el ile güncellemeyi deneyin.\nAyrıntılı bilgi almak için https://tails.boum.org/doc/first_steps/upgrade#manual\" adresine bakabilirsiniz"
+
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
+msgid "error:"
+msgstr "hata:"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
+msgid "Warning: virtual machine detected!"
+msgstr "Uyarı: Sanal makine algılandı!"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
+msgid "Warning: non-free virtual machine detected!"
+msgstr "Uyarı: Özgür olmayan sanal makine algılandı!"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
+msgid ""
+"Both the host operating system and the virtualization software are able to "
+"monitor what you are doing in Tails. Only free software can be considered "
+"trustworthy, for both the host operating system and the virtualization "
+"software."
+msgstr "Sunucu işletim sistemi ve sanallaştırma uygulaması Tails üzerinde yaptığınız işlemleri izler. Sunucu işletim sistemi ve sanallaştırma uygulaması için yalnızca özgür yazılımlar güvenilir olarak düşünülebilir."
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:81
+msgid "Learn more"
+msgstr "Ayrıntılı bilgi alın"
+
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Tor is not ready"
+msgstr "Tor hazır değil"
+
+#: config/chroot_local-includes/usr/local/bin/tor-browser:47
+msgid "Tor is not ready. Start Tor Browser anyway?"
+msgstr "Tor hazır değil. Gene de Tor Browser başlatılsın mı?"
+
+#: config/chroot_local-includes/usr/local/bin/tor-browser:48
+msgid "Start Tor Browser"
+msgstr "Tor Browser Başlatılsın"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:35
+msgid "Tor Status"
+msgstr "Tor Durumu"
+
+#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:50
+msgid "Open Onion Circuits"
+msgstr "Açık Onion Devreleri"
+
+#. Translators: Don't translate {volume_label} or {volume_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:64
+#, python-brace-format
+msgid "{volume_label} ({volume_size})"
+msgstr "{volume_label} ({volume_size})"
+
+#. Translators: Don't translate {partition_name} or {partition_size},
+#. they are placeholders and will be replaced.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:69
+#, python-brace-format
+msgid "{partition_name} ({partition_size})"
+msgstr "{partition_name} ({partition_size})"
+
+#. Translators: Don't translate {volume_size}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:74
+#, 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/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:113
+#, 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/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:121
+#, python-brace-format
+msgid "{partition_name} in {container_path}"
+msgstr "{container_path} içindeki {partition_name}"
+
+#. Translators: Don't translate {volume_name} and {path_to_file_container},
+#. they are placeholders and will be replaced. You should only have to
+#. translate
+#. this string if it makes sense to reverse the order of the placeholders.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
+#, 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/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:134
+#, python-brace-format
+msgid "{partition_name} on {drive_name}"
+msgstr "{drive_name} üzerindeki {partition_name}"
+
+#. Translators: Don't translate {volume_name} and {drive_name},
+#. they are placeholders and will be replaced. You should only have to
+#. translate
+#. this string if it makes sense to reverse the order of the placeholders.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:141
+#, python-brace-format
+msgid "{volume_name} – {drive_name}"
+msgstr "{volume_name} – {drive_name}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:229
+msgid "Wrong passphrase or parameters"
+msgstr "Parola ya da parametreler hatalı"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:231
+msgid "Error unlocking volume"
+msgstr "Birim kilidi açılırken sorun çıktı"
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:235
+#, python-brace-format
+msgid ""
+"Couldn't unlock volume {volume_name}:\n"
+"{error_message}"
+msgstr "{volume_name} biriminin kilidi açılamadı:\n{error_message}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:337
+msgid "One or more applications are keeping the volume busy."
+msgstr "Bir ya da birkaç uygulama bu birimi meşgul ediyor."
+
+#. Translators: Don't translate {volume_name} or {error_message},
+#. they are placeholder and will be replaced.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:343
+#, python-brace-format
+msgid ""
+"Couldn't lock volume {volume_name}:\n"
+"{error_message}"
+msgstr "Birim kilitlenemedi {volume_name}:\n{error_message}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:345
+msgid "Locking the volume failed"
+msgstr "Birim kilitlenemedi"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
+msgid "No file containers added"
+msgstr "Herhangi bir dosya kapsayıcısı eklenmedi"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
+msgid "No VeraCrypt devices detected"
+msgstr "Herhangi bir VeraCrypt aygıtı algılanamadı"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
+#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
+msgid "Unlock VeraCrypt Volumes"
+msgstr "VeraCrypt Birimlerinin Kilidini Aç"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
+msgid "Container already added"
+msgstr "Kapsayıcı zaten eklenmiş"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
+#, python-format
+msgid "The file container %s should already be listed."
+msgstr "%s kapsayıcısının zaten listede olması gerekir."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
+msgid "Container opened read-only"
+msgstr "Kapsayıcı salt okunur olarak açıldı"
+
+#. Translators: Don't translate {path}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
+#, python-brace-format
+msgid ""
+"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
+"{error_message}"
+msgstr "{path} dosya kapsayıcısı yazma izinleri ile açılamadı. Bu nedenle salt okunur olarak açıldı. Kapsayıcının içeriğini değiştiremeyeceksiniz.\n{error_message}"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
+msgid "Error opening file"
+msgstr "Dosya açılırken sorun çıktı"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
+msgid "Not a VeraCrypt container"
+msgstr "Bir VeraCrypt kapsayıcısı değil"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
+#, python-format
+msgid "The file %s does not seem to be a VeraCrypt container."
+msgstr "%s dosyası bir VeraCrypt kapsayıcısı gibi görünmüyor."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
+msgid "Failed to add container"
+msgstr "Kapsayıcı eklenemedi"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
+#, python-format
+msgid ""
+"Could not add file container %s: Timeout while waiting for loop setup.\n"
+"Please try using the <i>Disks</i> application instead."
+msgstr "%s dosya kapsayıcısı eklenemedi: Çevrim kurulumu beklenirken zaman aşımı oluştu.\nLütfen bunun yerine <i>Diskler</i> uygulamasını kullanmayı deneyin."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
+msgid "Choose File Container"
+msgstr "Dosya Kapsayıcısını Seçin"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
+msgid "Launch the Unsafe Browser?"
+msgstr "Güvenli Olmayan Tarayıcı başlatılsın mı?"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
+msgid ""
+"The Unsafe Browser is not anonymous and the websites that you visit can see "
+"your real IP address.\\n\\nOnly use the Unsafe Browser to log in to a "
+"captive portal or browse trusted web pages on the local network."
+msgstr "Güvenli Olmayan Tarayıcı anonimlik sağlamadığından, ziyaret ettiğiniz web sayfaları gerçek IP adresinizi görebilir.\\n\\nGüvenli Olmayan Tarayıcıyı yalnız internet bağlantısı kurmak için oturum açma sayfasına erişmek ya da yerel ağınızdaki güvenilir web siteleri için kullanın. "
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
+msgid "Starting the Unsafe Browser..."
+msgstr "Güvenli Olmayan Tarayıcı başlatılıyor..."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
+msgid "This may take a while, so please be patient."
+msgstr "Bu işlem biraz zaman alabilir, lütfen sabırlı olun."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
+msgid "Shutting down the Unsafe Browser..."
+msgstr "Güvenli Olmayan Tarayıcı kapatılıyor..."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
+msgid ""
+"This may take a while, and you may not restart the Unsafe Browser until it "
+"is properly shut down."
+msgstr "Bu işlem biraz zaman alabilir. Güvenli Olmayan Tarayıcı düzgün kapatılmadan yeniden başlatamayabilirsiniz."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
+msgid "Failed to restart Tor."
+msgstr "Tor yeniden başlatılamadı."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:510
+msgid "Unsafe Browser"
+msgstr "Güvenli Olmayan Tarayıcı"
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:90
+msgid ""
+"The Unsafe Browser was not enabled in the Welcome Screen.\\n\\nTo use the Unsafe Browser, restart Tails and enable the Unsafe Browser in the additional settings of the Welcome Screen.\\n\n"
+"To always enable the Unsafe Browser, turn on the Welcome Screen feature of the Persistent Storage."
+msgstr "Hoş geldiniz ekranında, Güvenli Olmayan Tarayıcı etkinleştirilmemiş.\\n\\nGüvenli Olmayan Tarayıcıyı kullanmak için, Tails uygulamasını yeniden başlatın ve Hoş Geldiniz Ekranındaki ek ayarlardan Güvenli Olmayan Tarayıcıyı etkinleştirin.\\n\nGüvenli Olmayan Tarayıcıyı kalıcı olarak etkinleştirmek için, Kalıcı Depolamada Hoş Geldiniz Ekranı özelliğini açın."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
+msgid ""
+"Another Unsafe Browser is currently running, or being cleaned up. Please "
+"retry in a while."
+msgstr "Şu anda başka bir Güvenli Olmayan Tarayıcı çalışıyor ya da temizleniyor. Lütfen bir süre sonra yeniden deneyin."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:107
+msgid "Failed to setup chroot."
+msgstr "chroot kurulamadı."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:114
+msgid "Failed to configure browser."
+msgstr "Tarayıcıyı ayarlanamadı."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:120
+msgid ""
+"No DNS server was obtained through DHCP or manually configured in "
+"NetworkManager."
+msgstr "DHCP aracılığıyla bir DNS sunucusu bulunamadı ya da AğYöneticisi içinde el ile ayarlanmış."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:131
+msgid "Failed to run browser."
+msgstr "Tarayıcıyı çalıştırılamadı."
+
+#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
+msgid "Report an error"
+msgstr "Hata bildirin"
+
+#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
+msgid "Tails documentation"
+msgstr "Tails belgeleri"
+
+#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
+msgid "Root Terminal"
+msgstr "Root Uçbirimi"
+
+#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
+msgid "Opens a terminal as the root user, using gksu to ask for the password"
+msgstr "Uçbirimi root kullanıcı ile açar. Parola sormak için gksu kullanır"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
+msgid "Learn how to use Tails"
+msgstr "Tails uygulamasını nasıl kullanacağınızı öğrenin"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
+msgid "Learn more about Tails"
+msgstr "Tails hakkında ayrıntılı bilgi alın"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1
+msgid "Delete persistent volume"
+msgstr "Kalıcı depolamayı sil"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2
+msgid "Delete the persistent volume and its content"
+msgstr "Kalıcı depolamayı ve içeriğini siler"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1
+msgid "Configure persistent volume"
+msgstr "Kalıcı depolamayı yapılandır"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2
+msgid ""
+"Configure which files and application configuration are saved between "
+"working sessions"
+msgstr "Çalışma oturumları arasında kaydedilecek dosya ve uygulama ayarlarını yapılandırır."
+
+#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
+msgid "Tor Browser"
+msgstr "Tor Browser"
+
+#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
+msgid "Anonymous Web Browser"
+msgstr "Anonim Web Tarayıcısı"
+
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
+msgid "Browse the World Wide Web without anonymity"
+msgstr "Web üzerinde anonim olmadan gez"
+
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
+msgid "Unsafe Web Browser"
+msgstr "Güvenli Olmayan Tarayıcı"
+
+#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
+msgid "Mount VeraCrypt encrypted file containers and devices"
+msgstr "VeraCrypt ile şifrelenmiş dosya kapsayıcı ve aygıtlarını bağla"
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
+msgid ""
+"Configure the additional software installed from your persistent storage "
+"when starting Tails"
+msgstr "Tails başlatılırken kalıcı depolama alanınızdan kurulacak ek uygulamaları yapılandırın."
+
+#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
+msgid "Tails specific tools"
+msgstr "Özel Tails araçları"
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
+msgid "To start a Root Terminal, you need to authenticate."
+msgstr "Bir Root Uç Birimi başlatmak için kimliğinizi doğrulamalısınız."
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
+msgid "Remove an additional software package"
+msgstr "Bir ek uygulama paketini kaldır"
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
+msgid ""
+"Authentication is required to remove a package from your additional software"
+" ($(command_line))"
+msgstr "Ek uygulamalarınızdan bir paket kaldırmak için kimlik doğrulaması gerekir ($(command_line))"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:693
+msgid "Administration Password"
+msgstr "Yönetici Parolası"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr "Yönetim işlemleri yapacaksanız bir yönetim parolası yazın. Yoksa güvenlik için yönetim parolası devre dışı bırakılır."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:69
+msgid "Enter an administration password"
+msgstr "Yönetim parolasını yazın"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:107
+msgid "Confirm your administration password"
+msgstr "Yönetim parolasını onaylayın"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:124
+msgid "Disable"
+msgstr "Devre Dışı Bırak"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:697
+msgid "MAC Address Spoofing"
+msgstr "MAC Adresi Yanıltması"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:170
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr "MAC adreslerini yanıltması ağ kartlarınızın (Wi-Fİ ya da kablolu) seri numarasını yerel ağlardan gizler. Bu özellik coğrafi konumunuzu gizlemenize yardımcı olacağından genellikle daha fazla güvenlik sağlar. Bununla birlikte bağlanma sorunlarına ya da şüpheli olarak algılanmanıza yol açabilir."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:212
+msgid "Spoof all MAC addresses (default)"
+msgstr "Tüm MAC adresleri yanıltılsın (varsayılan)"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:258
+msgid "Don't spoof MAC addresses"
+msgstr "MAC adresleri yanıltılmasın"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:701
+msgid "Network Configuration"
+msgstr "Ağ Yapılandırması"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:327
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr "İnternet bağlantınız sansürleniyor, süzülüyor ya da vekil sunucu kullanıyorsa, bir Tor köprüsü ya da yerel vekil sunucu yapılandırabilirsiniz. Tamamıyla çevrimdışı çalışmak için, tüm ağları devre dışı bırakabilirsiniz."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:367
+msgid "Connect directly to the Tor network (default)"
+msgstr "Doğrudan Tor ağına bağlanılsın (varsayılan)"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:413
+msgid "Configure a Tor bridge or local proxy"
+msgstr "Bir Tor köprüsü ya da vekil sunucu yapılandır"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:457
+msgid "Disable all networking"
+msgstr "Tüm ağ devre dışı bırakılsın"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:526
+msgid ""
+"The Unsafe Browser allows you to log in to a captive portal.\n"
+"\n"
+"A captive portal is a web page that is displayed before you can access the Internet. Captive portals usually require to log in to the network or enter information such as an email address.\n"
+"\n"
+"The Unsafe Browser is not anonymous and can deanonymize you. Use it only to log in to captive portals."
+msgstr "Unsafe Browser bir kısıtlama portali oturumu açmanızı sağlar.\n\nKısıtlama portali (captive portal), İnternet erişimi öncesinde görüntülenen bir web sayfasıdır. Genellikle ağda oturum açmanız ya da e-posta adresi, cep telefonu gibi bilgiler yazmanız istenir.\n\nUnsafe Browser anonim değildir ve kimliğinizin açığa çıkmasına neden olabilir. O yüzden yalnız kısıtlama portallerine oturum açmak için kullanın."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:572
+msgid "Disable the Unsafe Browser (default)"
+msgstr "Unsafe Browser kullanılmasın (varsayılan)"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:617
+msgid "Enable the Unsafe Browser"
+msgstr "Unsafe Browser kullanılsın (varsayılan)"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:100
+msgid "Settings were loaded from the persistent storage."
+msgstr "Ayarlar kalıcı depolama alanından yüklendi."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:168
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr "Bir ağa bağlandıktan sonra Tor köprüsü ya da yerel vekil sunucu yapılandırmasını yapacaksınız."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:220
+msgid "Welcome to Tails!"
+msgstr "Tails Uygulamasına Hoş Geldiniz!"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:254
+msgid "Language & Region"
+msgstr "Dil ve Bölge"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:290
+msgid "Default Settings"
+msgstr "Varsayılan Ayarlar"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:353
+msgid "Encrypted _Persistent Storage"
+msgstr "Şifreli _Kalıcı Depolama"
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:447
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr "Kalıcı depolamanın kilidini açmak için parolanızı yazın"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:495
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr "Kalıcı depolama alanının kilidi açıldı. Yeniden kilitlemek için Tails uygulamasını yeniden başlatın."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:533
+msgid "_Additional Settings"
+msgstr "_Ek Ayarlar"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:616
+msgid "Add an additional setting"
+msgstr "Ek bir ayar ekle"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:665
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr "Çoğu durum için varsayılan ayarları kullanmak güvenlidir. Özel bir ayar eklemek için aşağıdaki \"+\" düğmesine tıklayın."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:709
+msgid "Shutdown"
+msgstr "Kapat"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:720
+msgid "_Start Tails"
+msgstr "_Tails Başlat"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
+msgid "File Containers"
+msgstr "Dosya Kapsayıcıları"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
+msgid "_Add"
+msgstr "_Ekle"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
+msgid "Add a file container"
+msgstr "Bir dosya kapsayıcısı ekle"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
+msgid "Partitions and Drives"
+msgstr "Bölüm ve Sürücüler"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
+msgid ""
+"This application is not affiliated with or endorsed by the VeraCrypt project"
+" or IDRIX."
+msgstr "Bu uygulamanın VeraCrypt ya da IDRIX ile herhangi bir bağlantısı ve onlardan alınmış bir parçası yoktur."
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
+msgid "_Open"
+msgstr "_Aç"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
+msgid "Lock this volume"
+msgstr "Bu birimi kilitle"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
+msgid "_Unlock"
+msgstr "_Engellemeyi Kaldır"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
+msgid "Detach this volume"
+msgstr "Bu birimin bağlantısını kes"
+
+#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
+msgid "TrueCrypt/VeraCrypt container"
+msgstr "TrueCrypt/VeraCrypt kapsayıcısı"
1
0