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/tor-browser-78.3.0esr-10.5-1] Bug 1658881 - When failing to create a channel and an image request, make sure to set the image blocking status appropriately. r=tnikkel
by gk@torproject.org 16 Oct '20
by gk@torproject.org 16 Oct '20
16 Oct '20
commit 884831e7edda9db676e5b2c37fc938cc190f75e9
Author: Emilio Cobos Álvarez <emilio(a)crisal.io>
Date: Wed Sep 9 22:58:29 2020 +0000
Bug 1658881 - When failing to create a channel and an image request, make sure to set the image blocking status appropriately. r=tnikkel
This is the same status as we do for known no-data protocols here:
https://searchfox.org/mozilla-central/rev/ac142717cc067d875e83e4b1316f004f6…
This ensures we treat these two cases the same.
Differential Revision: https://phabricator.services.mozilla.com/D89382
---
dom/base/nsImageLoadingContent.cpp | 7 ++++++-
layout/reftests/image/reftest.list | 1 +
layout/reftests/image/unknown-protocol-ref.html | 1 +
layout/reftests/image/unknown-protocol.html | 1 +
4 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/dom/base/nsImageLoadingContent.cpp b/dom/base/nsImageLoadingContent.cpp
index 23b1fd791c1f..85de63bef02d 100644
--- a/dom/base/nsImageLoadingContent.cpp
+++ b/dom/base/nsImageLoadingContent.cpp
@@ -1207,7 +1207,12 @@ nsresult nsImageLoadingContent::LoadImage(nsIURI* aNewURI, bool aForce,
MOZ_ASSERT(!req, "Shouldn't have non-null request here");
// If we don't have a current URI, we might as well store this URI so people
// know what we tried (and failed) to load.
- if (!mCurrentRequest) mCurrentURI = aNewURI;
+ if (!mCurrentRequest) {
+ mCurrentURI = aNewURI;
+ if (mImageBlockingStatus == nsIContentPolicy::ACCEPT) {
+ mImageBlockingStatus = nsIContentPolicy::REJECT_REQUEST;
+ }
+ }
FireEvent(NS_LITERAL_STRING("error"));
FireEvent(NS_LITERAL_STRING("loadend"));
diff --git a/layout/reftests/image/reftest.list b/layout/reftests/image/reftest.list
index a8a91c13ed3a..3c561fe3a7c8 100644
--- a/layout/reftests/image/reftest.list
+++ b/layout/reftests/image/reftest.list
@@ -69,3 +69,4 @@ random-if(/^Windows\x20NT\x206\.1/.test(http.oscpu)) == image-srcset-basic-selec
pref(dom.image-lazy-loading.enabled,true) == moz-broken-matching-lazy-load.html moz-broken-matching-1-ref.html
== img-invalidation-local-transform-1.html img-invalidation-local-transform-1-ref.html
+== unknown-protocol.html unknown-protocol-ref.html
diff --git a/layout/reftests/image/unknown-protocol-ref.html b/layout/reftests/image/unknown-protocol-ref.html
new file mode 100644
index 000000000000..b5bb326eef57
--- /dev/null
+++ b/layout/reftests/image/unknown-protocol-ref.html
@@ -0,0 +1 @@
+<img src="mailto://foo">
diff --git a/layout/reftests/image/unknown-protocol.html b/layout/reftests/image/unknown-protocol.html
new file mode 100644
index 000000000000..ef06881b7bcb
--- /dev/null
+++ b/layout/reftests/image/unknown-protocol.html
@@ -0,0 +1 @@
+<img src="foobar://baz">
1
0

[tor-browser/tor-browser-78.4.0esr-10.0-2] fixup! Bug 10760: Integrate TorButton to TorBrowser core
by gk@torproject.org 16 Oct '20
by gk@torproject.org 16 Oct '20
16 Oct '20
commit 9633b5c7e832c047de34e1627398a2b7a62bfc3f
Author: Georg Koppen <gk(a)torproject.org>
Date: Fri Oct 16 06:22:37 2020 +0000
fixup! Bug 10760: Integrate TorButton to TorBrowser core
---
toolkit/torproject/torbutton | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/toolkit/torproject/torbutton b/toolkit/torproject/torbutton
index ad7c0b884586..e870d1aee4c1 160000
--- a/toolkit/torproject/torbutton
+++ b/toolkit/torproject/torbutton
@@ -1 +1 @@
-Subproject commit ad7c0b884586f5d1f3cc8e9223ae806f77ca05af
+Subproject commit e870d1aee4c1d7591cca867cbc8ba67ac8ed1d55
1
0
commit e870d1aee4c1d7591cca867cbc8ba67ac8ed1d55
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Thu Oct 15 20:27:15 2020 +0000
Translations update
---
chrome/locale/es-AR/aboutTor.dtd | 2 +-
chrome/locale/he/aboutTor.dtd | 4 ++--
chrome/locale/mk/aboutTor.dtd | 2 +-
chrome/locale/nl/aboutTor.dtd | 2 +-
chrome/locale/pt-BR/aboutTor.dtd | 2 +-
chrome/locale/th/browserOnboarding.properties | 2 +-
6 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/chrome/locale/es-AR/aboutTor.dtd b/chrome/locale/es-AR/aboutTor.dtd
index ce843db0..c86c5eb8 100644
--- a/chrome/locale/es-AR/aboutTor.dtd
+++ b/chrome/locale/es-AR/aboutTor.dtd
@@ -31,5 +31,5 @@
<!ENTITY aboutTor.donationBanner.buttonA "Doná ahora">
<!-- End of year 2020 Fundraising campaign -->
-<!ENTITY aboutTor.ey2020.useamask "Usá un tapaboca, usá Tor.">
+<!ENTITY aboutTor.ey2020.useamask "Usa un tapaboca, usa Tor.">
<!ENTITY aboutTor.ey2020.resistsurveillance "Resistí a la pandemia de vigilancia.">
diff --git a/chrome/locale/he/aboutTor.dtd b/chrome/locale/he/aboutTor.dtd
index 90c2e8f0..be1a52eb 100644
--- a/chrome/locale/he/aboutTor.dtd
+++ b/chrome/locale/he/aboutTor.dtd
@@ -31,5 +31,5 @@
<!ENTITY aboutTor.donationBanner.buttonA "תרום עכשיו">
<!-- End of year 2020 Fundraising campaign -->
-<!ENTITY aboutTor.ey2020.useamask "שים מסיכה, שים Tor.">
-<!ENTITY aboutTor.ey2020.resistsurveillance "התנגד למגפת המעקב הסמוי.">
+<!ENTITY aboutTor.ey2020.useamask "שימו מסכה, שימו Tor.">
+<!ENTITY aboutTor.ey2020.resistsurveillance "התנגדו למגפת הריגול.">
diff --git a/chrome/locale/mk/aboutTor.dtd b/chrome/locale/mk/aboutTor.dtd
index 67a47e79..0ff2075f 100644
--- a/chrome/locale/mk/aboutTor.dtd
+++ b/chrome/locale/mk/aboutTor.dtd
@@ -32,4 +32,4 @@
<!-- End of year 2020 Fundraising campaign -->
<!ENTITY aboutTor.ey2020.useamask "Користи маска, користи Tor.">
-<!ENTITY aboutTor.ey2020.resistsurveillance "Спротистави се на надзорот за време на пандемијата.">
+<!ENTITY aboutTor.ey2020.resistsurveillance "Спротивстави се на надзорот за време на пандемијата.">
diff --git a/chrome/locale/nl/aboutTor.dtd b/chrome/locale/nl/aboutTor.dtd
index b191f724..252902a9 100644
--- a/chrome/locale/nl/aboutTor.dtd
+++ b/chrome/locale/nl/aboutTor.dtd
@@ -32,4 +32,4 @@
<!-- End of year 2020 Fundraising campaign -->
<!ENTITY aboutTor.ey2020.useamask "Gebruik een masker, gebruik Tor.">
-<!ENTITY aboutTor.ey2020.resistsurveillance "Weersta de surveillancepandemie.">
+<!ENTITY aboutTor.ey2020.resistsurveillance "Wees bestand tegen de surveillancepandemie.">
diff --git a/chrome/locale/pt-BR/aboutTor.dtd b/chrome/locale/pt-BR/aboutTor.dtd
index 55f1000d..1ba8a0bb 100644
--- a/chrome/locale/pt-BR/aboutTor.dtd
+++ b/chrome/locale/pt-BR/aboutTor.dtd
@@ -32,5 +32,5 @@
<!ENTITY aboutTor.donationBanner.buttonA "Doe Agora">
<!-- End of year 2020 Fundraising campaign -->
-<!ENTITY aboutTor.ey2020.useamask "Use uma máscara, use Tor.">
+<!ENTITY aboutTor.ey2020.useamask "Use uma mascara, use Tor.">
<!ENTITY aboutTor.ey2020.resistsurveillance "Resista à pandemia de vigilância.">
diff --git a/chrome/locale/th/browserOnboarding.properties b/chrome/locale/th/browserOnboarding.properties
index 1ae6bafc..d216d3cf 100644
--- a/chrome/locale/th/browserOnboarding.properties
+++ b/chrome/locale/th/browserOnboarding.properties
@@ -16,7 +16,7 @@ onboarding.tour-tor-network=เครือข่าย Tor
onboarding.tour-tor-network.title=นำทางเพื่อกระจายเครือข่าย
onboarding.tour-tor-network.description=Tor Browser เชื่อมต่อคุณเข้ากับเครือข่าย Tor ที่ทำงานโดยอาสาสมัครกว่าพันคนทั่วโลก Tor Browser ต่างจาก VPN เพราะไม่มีใครสามารถระบุความผิดพลาดหรือหน่วยงานกลางได้ คุณต้องไว้วางใจเพื่อความเพลิดเพลินในการใช้อินเทอร์เน็ตอย่างเป็นส่วนตัว
onboarding.tour-tor-network.description-para2=NEW: Tor Network Settings, including the ability to request bridges where Tor is blocked, can now be found in Preferences.
-onboarding.tour-tor-network.action-button=Adjust Your Tor Network Settings
+onboarding.tour-tor-network.action-button=ปรับแต่งการตั้งค่าเครือข่าย Tor ของคุณ
onboarding.tour-tor-network.button=ไปที่วงจรหน้าจอ
onboarding.tour-tor-circuit-display=วงจรหน้าจอ
1
0

[translation/support-portal] https://gitweb.torproject.org/translation.git/commit/?h=support-portal
by translation@torproject.org 16 Oct '20
by translation@torproject.org 16 Oct '20
16 Oct '20
commit c706c77fa2b6b8cdbd4107b71040aa6f45c0bd16
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 16 06:18:05 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=support-portal
---
contents+tr.po | 26 ++++++++++++++++++++------
1 file changed, 20 insertions(+), 6 deletions(-)
diff --git a/contents+tr.po b/contents+tr.po
index 8e4bf2fa6b..61e68d3bb3 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -4,8 +4,8 @@
# dersteppenwolfx, 2019
# erinm, 2020
# Emma Peel, 2020
-# Kaya Zeren <kayazeren(a)gmail.com>, 2020
# T. E. Kalayci <tekrei(a)gmail.com>, 2020
+# Kaya Zeren <kayazeren(a)gmail.com>, 2020
#
msgid ""
msgstr ""
@@ -13,7 +13,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-04-15 19:40+CET\n"
"PO-Revision-Date: 2018-10-02 22:41+0000\n"
-"Last-Translator: T. E. Kalayci <tekrei(a)gmail.com>, 2020\n"
+"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>, 2020\n"
"Language-Team: Turkish (https://www.transifex.com/otf/teams/1519/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -591,6 +591,11 @@ msgid ""
"each [relay](../relay) decrypts one layer before passing the request on to "
"the next relay."
msgstr ""
+"Bir veri parçasının alınması ve yalnız amaçlanan alıcı tarafından okunabilen"
+" gizli bir kod içine karıştırılması işlemi. [Tor](../tor-tor-network/-core-"
+"tor), Tor [devresinde](../circuit) üç şifreleme katmanı kullanır; her bir "
+"[aktarıcı](../relay) isteği bir sonraki aktarıcıya iletmeden önce bir "
+"katmanın şifresini çözer."
#: https//support.torproject.org/glossary/end-to-end-encrypted/
#: (content/glossary/end-to-end-encrypted/contents+en.lrword.term)
@@ -619,7 +624,7 @@ msgid ""
"connecting to (website, chat service, email provider, etc..) will see the "
"[IP address](../ip-address) of the exit."
msgstr ""
-" [Tor devresindeki](../circuit) [trafiği](../traffic) herkese açık İnternet "
+"[Tor devresindeki](../circuit) [trafiği](../traffic) herkese açık İnternet "
"üzerine gönderen son [aktarıcı](../relay). Bağlandığınız hizmet (web sitesi,"
" sohbet hizmeti, e-posta hizmeti sağlayıcısı gibi) çıkış aktarıcısının [IP "
"adresini](../ip-address) görür."
@@ -677,7 +682,7 @@ msgid ""
"Android."
msgstr ""
"Firefox, Windows, macOS ve Linux [işletim sistemleri](../operating-system-"
-"os) ve Android üzerinde mobil sürümü ile (fennec) kullanılabilir."
+"os) ile Android üzerindeki mobil sürümü ile (fennec) kullanılabilir."
#: https//support.torproject.org/glossary/firewall/
#: (content/glossary/firewall/contents+en.lrword.term)
@@ -696,11 +701,20 @@ msgid ""
"network-core-tor) because their firewall blocks Tor connections. You can "
"reconfigure or disable your firewall and restart Tor to test this."
msgstr ""
+"Güvenlik duvarı, ağdan gelen ve giden [trafiği](../traffic) izleyen ve "
+"denetleyen bir ağ güvenlik sistemidir. Trafiği önceden belirlenmiş kurallara"
+" göre süzer. Bir güvenlik duvarı genellikle güvenilen ve korunan bir iç ağ "
+"ile bir dış ağ arasında bir engel oluşturur. Ancak [sansür](../network-"
+"cencorship) uygulamak amacıyla içerikleri süzmek için de kullanılabilir. "
+"Bazen insanlar güvenlik duvarları Tor bağlantılarını engellediği için [Tor"
+"](../tor-tor-network/-core-tor) bağlantısı kurmakta sorun yaşarlar. Bu "
+"sorunu çözmek için güvenlik duvarınızı yeniden yapılandırabilir ya da devre "
+"dışı bırakabilirsiniz."
#: https//support.torproject.org/glossary/flash-player/
#: (content/glossary/flash-player/contents+en.lrword.term)
msgid "Flash Player"
-msgstr "Flash Oynatıcı"
+msgstr "Flash Player"
#: https//support.torproject.org/glossary/flash-player/
#: (content/glossary/flash-player/contents+en.lrword.definition)
@@ -791,7 +805,7 @@ msgstr ""
#: https//support.torproject.org/glossary/hamburger-menu/
#: (content/glossary/hamburger-menu/contents+en.lrword.term)
msgid "hamburger menu"
-msgstr "hamburger menü"
+msgstr "hamburger menüsü"
#: https//support.torproject.org/glossary/hamburger-menu/
#: (content/glossary/hamburger-menu/contents+en.lrword.definition)
1
0

[tor-browser-build/maint-10.0] Tor Browser 10.0.2 release preparations
by gk@torproject.org 16 Oct '20
by gk@torproject.org 16 Oct '20
16 Oct '20
commit c3a8697358b03386ddc3f516a82226396a8f47df
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Thu Oct 15 20:37:50 2020 +0000
Tor Browser 10.0.2 release preparations
Version bumps and Changelog update
---
projects/firefox-langpacks/config | 2 +-
projects/firefox/config | 4 ++--
projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt | 7 +++++++
projects/tor-browser/config | 4 ++--
rbm.conf | 5 +++--
5 files changed, 15 insertions(+), 7 deletions(-)
diff --git a/projects/firefox-langpacks/config b/projects/firefox-langpacks/config
index 34d6fad..17a707a 100644
--- a/projects/firefox-langpacks/config
+++ b/projects/firefox-langpacks/config
@@ -4,7 +4,7 @@ filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/buil
var:
ff_version: '[% pc("firefox", "var/firefox_version") %]'
- ff_build: build1
+ ff_build: build2
input_filename: 'dl-langpack-[% c("var/ff_arch") %]-[% c("version") %]'
targets:
diff --git a/projects/firefox/config b/projects/firefox/config
index 8db58d5..9d08d8c 100644
--- a/projects/firefox/config
+++ b/projects/firefox/config
@@ -1,14 +1,14 @@
# vim: filetype=yaml sw=2
version: '[% c("abbrev") %]'
filename: 'firefox-[% c("version") %]-[% c("var/osname") %]-[% c("var/build_id") %]'
-git_hash: 'tor-browser-[% c("var/firefox_version") %]-[% c("var/torbrowser_branch") %]-2-build4'
+git_hash: 'tor-browser-[% c("var/firefox_version") %]-[% c("var/torbrowser_branch") %]-2-build1'
tag_gpg_id: 1
git_url: https://git.torproject.org/tor-browser.git
git_submodule: 1
gpg_keyring: torbutton.gpg
var:
- firefox_platform_version: 78.3.0
+ firefox_platform_version: 78.4.0
firefox_version: '[% c("var/firefox_platform_version") %]esr'
torbrowser_branch: 10.0
branding_directory: 'browser/branding/alpha'
diff --git a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
index 890aace..ac85f33 100644
--- a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
+++ b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
@@ -1,3 +1,10 @@
+Tor Browser 10.0.2 -- October 20 2020
+ * Windows + OS X + Linux
+ * Update Firefox to 78.4.0esr
+ * Update NoScript to 11.1.3
+ * Bug 40192: Backport Mozilla Bug 1658881
+ * Translations update
+
Tor Browser 10.0.1 -- October 13 2020
* Windows + OS X + Linux
* Update NoScript to 11.1.1
diff --git a/projects/tor-browser/config b/projects/tor-browser/config
index e9a17d5..8b201f8 100644
--- a/projects/tor-browser/config
+++ b/projects/tor-browser/config
@@ -77,9 +77,9 @@ input_files:
enable: '[% c("var/snowflake") && ! c("var/android") %]'
- filename: Bundle-Data
enable: '[% ! c("var/android") %]'
- - URL: https://addons.cdn.mozilla.net/user-media/addons/722/noscript_security_suit…
+ - URL: https://addons.cdn.mozilla.net/user-media/addons/722/noscript_security_suit…
name: noscript
- sha256sum: bdc99f11a75ea050934b692c8717c363493d5f717397ba9ef35b1a2e9078516c
+ sha256sum: 08543e4a03e0becacd10c3cdbf5eaab1ff35a1648babe6f1522ae335e21de7d4
- filename: 'RelativeLink/start-tor-browser.desktop'
enable: '[% c("var/linux") %]'
- filename: 'RelativeLink/execdesktop'
diff --git a/rbm.conf b/rbm.conf
index 0530620..218f8ef 100644
--- a/rbm.conf
+++ b/rbm.conf
@@ -24,10 +24,11 @@ buildconf:
git_signtag_opt: '-s'
var:
- torbrowser_version: '10.0.1'
- torbrowser_build: 'build2'
+ torbrowser_version: '10.0.2'
+ torbrowser_build: 'build1'
torbrowser_incremental_from:
- 10.0
+ - 10.0.1
project_name: tor-browser
multi_lingual: 0
build_mar: 1
1
0
commit 45312a158f2af25e1f1e0da9817a681cbb0df8ba
Author: Matthew Finkel <sysrqb(a)torproject.org>
Date: Tue Oct 13 17:08:05 2020 +0000
Fix Changelog typos
---
projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
index 2bf6fb5..890aace 100644
--- a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
+++ b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
@@ -9,13 +9,13 @@ Tor Browser 10.0.1 -- October 13 2020
* Bug 40148: Disable Picture-in-Picture until we investigate and possibly fix it [tor-browser]
* Translations update
* Windows
- * Bug 40140: Videos stop working with Tor Browser 10.0 on Windows
+ * Bug 40140: Videos stop working with Tor Browser 10.0 on Windows [tor-browser]
* Build System
* Windows + OS X + Linux
* Bump Go to 1.14.9
* Bump openssl to 1.1.1h
* Windows
- * Bug 40051: Remove SOURCE_DATE_EPOCH patch
+ * Bug 40051: Remove SOURCE_DATE_EPOCH patch [tor-browser-build]
Tor Browser 10.0 -- September 22 2020
* Windows + OS X + Linux
1
0
commit 5e51b7fbdf7cad129287826c2347d3cbcb3de7d1
Author: Georg Koppen <gk(a)torproject.org>
Date: Fri Oct 16 06:03:17 2020 +0000
Changelog fixes
---
projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
index 953c3fd..e33a54d 100644
--- a/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
+++ b/projects/tor-browser/Bundle-Data/Docs/ChangeLog.txt
@@ -10,12 +10,12 @@ Tor Browser 10.0.1 -- October 13 2020
* Bug 40148: Disable Picture-in-Picture until we investigate and possibly fix it [tor-browser]
* Translations update
* Windows
- * Bug 40140: Videos stop working with Tor Browser 10.0 on Windows
+ * Bug 40140: Videos stop working with Tor Browser 10.0 on Windows [tor-browser]
* Build System
* Windows + OS X + Linux
* Bump Go to 1.14.9
* Windows
- * Bug 40051: Remove SOURCE_DATE_EPOCH patch for OpenSSL
+ * Bug 40051: Remove SOURCE_DATE_EPOCH patch for OpenSSL [tor-browser-build]
Tor Browser 10.0a8 -- October 8 2020
* Android
1
0

[translation/tpo-web_completed] https://gitweb.torproject.org/translation.git/commit/?h=tpo-web_completed
by translation@torproject.org 16 Oct '20
by translation@torproject.org 16 Oct '20
16 Oct '20
commit 2221df8c3dcacd1893abca3ee064ea756441cb1f
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 16 05:47:52 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tpo-web_completed
---
contents+tr.po | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contents+tr.po b/contents+tr.po
index 37377dec47..382ee758ad 100644
--- a/contents+tr.po
+++ b/contents+tr.po
@@ -1648,4 +1648,4 @@ msgstr "Maske kullanın, Tor kullanın."
#: lego/templates/banner.html:20 templates/banner.html:20
msgid "Resist the surveillance pandemic."
-msgstr ""
+msgstr "İzleme salgınından korunun."
1
0

[translation/tails-misc_release] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
by translation@torproject.org 16 Oct '20
by translation@torproject.org 16 Oct '20
16 Oct '20
commit c684628923f64c97eeb1bd42f4720f3d5c17dea3
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 16 05:46:35 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_release
---
tr.po | 204 +++++++++++++++++++++++++++++++++---------------------------------
1 file changed, 102 insertions(+), 102 deletions(-)
diff --git a/tr.po b/tr.po
index 8034ff25c1..20e248e59e 100644
--- a/tr.po
+++ b/tr.po
@@ -33,8 +33,8 @@ msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-10-15 08:31+0200\n"
-"PO-Revision-Date: 2020-10-15 12:13+0000\n"
-"Last-Translator: Transifex Bot <>\n"
+"PO-Revision-Date: 2020-10-16 05:36+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"
@@ -225,7 +225,7 @@ msgid ""
"Download size: {size}\n"
"\n"
"Do you want to upgrade now?"
-msgstr ""
+msgstr "<b>{name} {version} sürümüne güncellemeniz gerekli.</b>\n\nBu sürüm hakkında ayrıntılı bilgi almak için, {details_url} adresine bakabilirsiniz.\n\nBu güncelleme sırasında açık tüm uygulamaları kapatmanız önerilir.\nGüncellemenin indirilmesi birkaç dakika ile birkaç saat arasında sürebilir.\n\nİndirme boyutu: {size}\n\nŞimdi güncellemek ister misiniz?"
#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451
msgid "Upgrade available"
@@ -532,7 +532,7 @@ msgstr "Şu komut yürütülürken bir sorun çıktı: `%(command)s`.\nAyrıntı
msgid ""
"Not enough free space on device.\n"
"%(iso_size)dMB ISO + %(overlay_size)dMB overlay > %(free_space)dMB free space"
-msgstr ""
+msgstr "Aygıt üzerinde yeterli boş alan yok.\n%(iso_size)dMB ISO + %(overlay_size)dMB kaplama > %(free_space)dMB boş alan"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:301
#, python-format
@@ -552,7 +552,7 @@ msgstr "Var olan Canlı İşletim Sistemi kaldırılıyor"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:387
#, python-format
msgid "Unable to chmod %(file)s: %(message)s"
-msgstr ""
+msgstr "chmod yürütülemedi %(file)s: %(message)s"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:380
#, python-format
@@ -579,7 +579,7 @@ msgstr "%(device)s aygıtına yazılamadı, atlanıyor."
msgid ""
"Some partitions of the target device %(device)s are mounted. They will be "
"unmounted before starting the installation process."
-msgstr ""
+msgstr "%(device)s hedef aygıtının bazı bölümleri takılmış. Kurulum başlatılmadan önce bu bölümler çıkarılacak."
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:707
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:931
@@ -595,12 +595,12 @@ msgstr "Dosya sistemi desteklenmiyor: %s"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:728
#, python-format
msgid "Unknown GLib exception while trying to mount device: %(message)s"
-msgstr ""
+msgstr "Aygıt takılmaya çalışılırken bilinmeyen bir Glib sorunu çıktı: %(message)s"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:733
#, python-format
msgid "Unable to mount device: %(message)s"
-msgstr ""
+msgstr "Aygıt takılamadı: %(message)s"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:738
msgid "No mount points found"
@@ -609,12 +609,12 @@ msgstr "Bir takılma noktası bulunamadı"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:749
#, python-format
msgid "Entering unmount_device for '%(device)s'"
-msgstr ""
+msgstr "'%(device)s' için unmount_device işleniyor"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:759
#, python-format
msgid "Unmounting mounted filesystems on '%(device)s'"
-msgstr ""
+msgstr " '%(device)s' üzerindeki takılı dosya sistemleri çıkarılıyor"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:763
#, python-format
@@ -634,7 +634,7 @@ msgstr "%(device)s aygıtı bölümleniyor "
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:916
#, python-format
msgid "Unsupported device '%(device)s', please report a bug."
-msgstr ""
+msgstr "'%(device)s' aygıtı desteklenmiyor, lütfen bu sorunu bildirin."
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:919
msgid "Trying to continue anyway."
@@ -700,82 +700,82 @@ msgstr "Diskteki veriler eşitleniyor..."
msgid ""
"Error: Cannot set the label or obtain the UUID of your device. Unable to "
"continue."
-msgstr ""
+msgstr "Hata: Etiket ayarlanamıyor ya da aygıtınızın UUID kodu alınamıyor. İşlem sürdürülemiyor."
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:184
#, python-format
msgid "Installation complete! (%s)"
-msgstr ""
+msgstr "Kurulum tamamlandı! (%s)"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:189
msgid "Tails installation failed!"
-msgstr ""
+msgstr "Tails kurulumu tamamlanamadı!"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:281
#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
msgid "Tails Installer"
-msgstr ""
+msgstr "Tails Kurucu"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:324
#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
msgid "Clone the current Tails"
-msgstr ""
+msgstr "Geçerli Tails kurulumunu kopyala"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:331
#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
msgid "Use a downloaded Tails ISO image"
-msgstr ""
+msgstr "İndirilmiş bir Tails ISO kalıbı kullan"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:368
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:671
msgid "Upgrade"
-msgstr ""
+msgstr "Güncelle"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:370
msgid "Manual Upgrade Instructions"
-msgstr ""
+msgstr "El İle Güncelleme Yönergeleri"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:372
msgid "https://tails.boum.org/upgrade/"
-msgstr ""
+msgstr "https://tails.boum.org/upgrade/"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:380
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:583
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:648
#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
msgid "Install"
-msgstr ""
+msgstr "Kur"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:383
#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
msgid "Installation Instructions"
-msgstr ""
+msgstr "Kurulum Yönergeleri"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:385
msgid "https://tails.boum.org/install/"
-msgstr ""
+msgstr "https://tails.boum.org/install/"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:391
#, python-format
msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
-msgstr ""
+msgstr "%(size)s %(vendor)s %(model)s aygıt (%(device)s)"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:403
msgid "No ISO image selected"
-msgstr ""
+msgstr "Herhangi bir ISO kalıbı seçilmemiş"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:404
msgid "Please select a Tails ISO image."
-msgstr ""
+msgstr "Lütfen bir Tails ISO kalıbı seçin."
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:446
msgid "No device suitable to install Tails could be found"
-msgstr ""
+msgstr "Tails kurucusuna uygun bir aygıt bulunamadı"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:448
#, python-format
msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
-msgstr ""
+msgstr "Lütfen en az %0.1f GB kapasiteli bir USB bellek ya da SD kart takın."
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:482
#, python-format
@@ -783,38 +783,38 @@ msgid ""
"The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
"manufacturer and Tails will fail to start from it. Please try installing on "
"a different model."
-msgstr ""
+msgstr "USB belleği \"%(pretty_name)s\" üreticisi tarafından çıkarılamaz olarak yapılandırılmış olduğundan Tails buradan başlatılamayacak. Lütfen farklı bir modele kurmayı deneyin."
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:492
#, python-format
msgid ""
"The device \"%(pretty_name)s\" is too small to install Tails (at least "
"%(size)s GB is required)."
-msgstr ""
+msgstr "\"%(pretty_name)s\" aygıtı Tails uygulamasının kurulması için çok küçük (en az %(size)s GB gereklidir)."
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:505
#, python-format
msgid ""
"To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a downloaded Tails ISO image:\n"
"https://tails.boum.org/install/download"
-msgstr ""
+msgstr "\"%(pretty_name)s\" aygıtını bu Tails sürümünden güncellemek için indirilmiş Tails ISO kalıbına gerek duyacaksınız:\nhttps://tails.boum.org/install/download"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:526
msgid "An error happened while installing Tails"
-msgstr ""
+msgstr "Tails kurulurken bir sorun çıktı"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:578
msgid "Installation complete!"
-msgstr ""
+msgstr "Kurulum tamamlandı!"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:630
msgid "Unable to mount device"
-msgstr ""
+msgstr "Aygıt takılamadı"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:637
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:670
msgid "Confirm the target USB stick"
-msgstr ""
+msgstr "Hedef USB belleği onaylayın"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:638
#, python-format
@@ -822,50 +822,50 @@ msgid ""
"%(size)s %(vendor)s %(model)s device (%(device)s)\n"
"\n"
"All data on this USB stick will be lost."
-msgstr ""
+msgstr "%(size)s %(vendor)s %(model)s aygıt (%(device)s)\n\nBu USB bellek üzerindeki tüm veriler kaybolacak."
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:657
#, python-format
msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
-msgstr ""
+msgstr "%(parent_size)s %(vendor)s %(model)s aygıt (%(device)s)"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:665
msgid ""
"\n"
"\n"
"The persistent storage on this USB stick will be preserved."
-msgstr ""
+msgstr "\n\nBu USB bellekteki kalıcı depolama birimi korunacak."
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:666
#, python-format
msgid "%(description)s%(persistence_message)s"
-msgstr ""
+msgstr "%(description)s%(persistence_message)s"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:705
msgid ""
"The selected file is unreadable. Please fix its permissions or select "
"another file."
-msgstr ""
+msgstr "Seçilen dosya okunamıyor. Lütfen dosya izinlerini denetleyin ya da başka bir dosya seçin."
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:711
msgid ""
"Unable to use the selected file. You may have better luck if you move your "
"ISO to the root of your drive (ie: C:\\)"
-msgstr ""
+msgstr "Seçilmiş dosya kullanılamadı. ISO kalıbını diskinizin kök klasörüne taşımanız işe yarayabilir (C:\\ gibi)"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:717
#, python-format
msgid "%(filename)s selected"
-msgstr ""
+msgstr "%(filename)s seçildi"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:28
msgid "Unable to find LiveOS on ISO"
-msgstr ""
+msgstr "ISO üzerinde Canlı İşletim Sistemi bulunamadı"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:34
#, python-format
msgid "Could not guess underlying block device: %s"
-msgstr ""
+msgstr "Temel blok aygıtı öngörülemedi: %s"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:48
#, python-format
@@ -873,33 +873,33 @@ msgid ""
"There was a problem executing `%(cmd)s`.\n"
"%(out)s\n"
"%(err)s"
-msgstr ""
+msgstr "`%(cmd)s` çalıştırılırken bir sorun çıktı.\n%(out)s\n%(err)s"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:60
#, python-format
msgid "'%s' does not exist"
-msgstr ""
+msgstr "'%s' bulunamadı"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:62
#, python-format
msgid "'%s' is not a directory"
-msgstr ""
+msgstr "'%s' bir klasör değil"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:72
#, python-format
msgid "Skipping '%(filename)s'"
-msgstr ""
+msgstr "'%(filename)s' atlanıyor"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/utils.py:54
#, python-format
msgid ""
"There was a problem executing `%(cmd)s`.%(out)s\n"
"%(err)s"
-msgstr ""
+msgstr "`%(cmd)s`,%(out)s çalıştırılırken bir sorun çıktı.\n%(err)s"
#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/utils.py:134
msgid "Could not open device for writing."
-msgstr ""
+msgstr "Aygıt yazılmak üzere açılamadı."
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
@@ -1175,38 +1175,38 @@ msgstr "Hata"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:388
msgid "Device already has a persistent volume."
-msgstr ""
+msgstr "Aygıt üzerinde zaten bir kalıcı depolama birimi var."
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:395
msgid "Device has not enough unallocated space."
-msgstr ""
+msgstr "Aygıt üzerinde yeteri kadar boş alan yok."
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:414
msgid "Device has no persistent volume."
-msgstr ""
+msgstr "Aygıt üzerinde bir kalıcı depolama birimi yok."
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407
msgid ""
"Cannot delete the persistent volume while in use. You should restart Tails "
"without persistence."
-msgstr ""
+msgstr "Kullanımda olduğundan kalıcı depolama birimi silinemedi. Tails yazılımını kalıcılık olmadan yeniden başlatmalısınız."
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:419
msgid "Persistence volume is not unlocked."
-msgstr ""
+msgstr "Kalıcılık biriminin kilidi açılamadı."
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:423
msgid "Persistence volume is not mounted."
-msgstr ""
+msgstr "Kalıcılık birimi takılmamış."
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:428
msgid "Persistence volume is not readable. Permissions or ownership problems?"
-msgstr ""
+msgstr "Kalıcılık birimi okunamıyor. İzin ya da sahiplik sorunları olabilir mi?"
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:433
msgid "Persistence volume is not writable."
-msgstr ""
+msgstr "Kalıcı depolama birimi yazılabilir değil."
#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:442
msgid "Tails is running from non-USB / non-SDIO device."
@@ -1593,7 +1593,7 @@ msgid ""
"\n"
"Or do a manual upgrade.\n"
"See https://tails.boum.org/doc/upgrade#manual"
-msgstr ""
+msgstr "<b>Güncellemeleri denetlemek için yeterli bellek yok.</b>\n\nBu sistemin Tails yazılımının gereksinimlerini karşıladığına emin olun.\nBilgiler: file:///usr/share/doc/tails/website/doc/about/requirements.tr.html\n\nGüncellemeleri denetlemek için Tails yazılımını yeniden başlatmayı deneyin.\n\nYa da el ile güncelleyin.\nBilgiler: https://tails.boum.org/doc/upgrade#manual"
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
@@ -1871,55 +1871,55 @@ msgstr "Tarayıcıyı çalıştırılamadı."
msgid ""
"The %s variable was not found in any of the configuration files "
"/etc/whisperback/config.py, ~/.whisperback/config.py, or ./config.py"
-msgstr ""
+msgstr "%s değişkeni /etc/whisperback/config.py, ~/.whisperback/config.py ya da ./config.py ayar dosyalarının hiçbirinde bulunamadı"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:114
msgid "Name of the affected software"
-msgstr ""
+msgstr "Etkilenen uygulamanın adı"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:116
msgid "Exact steps to reproduce the error"
-msgstr ""
+msgstr "Hatayı yeniden oluşturmak için atılacak adımlar"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:118
msgid "Actual result and description of the error"
-msgstr ""
+msgstr "Oluşan sonuç ve hatanın tanımı"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:120
msgid "Desired result"
-msgstr ""
+msgstr "Beklenen sonuç"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:133
msgid "Unable to load a valid configuration."
-msgstr ""
+msgstr "Geçerli bir ayar yüklenemedi."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:170
msgid "Sending mail..."
-msgstr ""
+msgstr "E-posta gönderiliyor..."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:171
msgid "Sending mail"
-msgstr ""
+msgstr "E-posta gönderiliyor"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:173
msgid "This could take a while..."
-msgstr ""
+msgstr "Bu işlem biraz zaman alabilir..."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:189
msgid "The contact email address doesn't seem valid."
-msgstr ""
+msgstr "İletişim e-posta adresi geçerli gibi görünmüyor."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:206
msgid "Unable to send the mail: SMTP error."
-msgstr ""
+msgstr "E-posta gönderilemedi: SMTP hatası."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:208
msgid "Unable to connect to the server."
-msgstr ""
+msgstr "Sunucu ile bağlantı kurulamadı."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:210
msgid "Unable to create or to send the mail."
-msgstr ""
+msgstr "E-posta oluşturulamadı ya da gönderilemedi."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:213
msgid ""
@@ -1928,20 +1928,20 @@ msgid ""
"The bug report could not be sent, likely due to network problems. Please try to reconnect to the network and click send again.\n"
"\n"
"If it does not work, you will be offered to save the bug report."
-msgstr ""
+msgstr "\n\nHata raporu ağ sorunları nedeniyle gönderilemedi. Lütfen ağ bağlantısını yeniden kurduktan sonra e-postayı yeniden göndermeyi deneyin.\n\nİşe yaramazsa hata raporunuzu kaydetmeniz önerilir."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:226
msgid "Your message has been sent."
-msgstr ""
+msgstr "İletiniz gönderildi."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:233
msgid "An error occured during encryption."
-msgstr ""
+msgstr "Şifreleme sırasında bir sorun çıktı."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:253
#, python-format
msgid "Unable to save %s."
-msgstr ""
+msgstr "%s kaydedilemedi."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:276
#, python-format
@@ -1951,47 +1951,47 @@ msgid ""
"As a work-around you can save the bug report as a file on a USB drive and try to send it to us at %s from your email account using another system. Note that your bug report will not be anonymous when doing so unless you take further steps yourself (e.g. using Tor with a throw-away email account).\n"
"\n"
"Do you want to save the bug report to a file?"
-msgstr ""
+msgstr "Ağ sorunları nedeniyle hata raporu gönderilemedi.\n\nGeçici bir çözüm olarak, hata raporunu bir USB belleğe dosya olarak kaydedip başka bir sistem üzerinden ve kendi e-posta hesabınızdan %s adresini kullanarak bize gönderebilirsiniz. Bu işlemi yaparken kendi önlemlerinizi almazsanız anonimliğiniz ortadan kalkar (Tor uygulamasını ve tek kullanımlık bir e-posta adresini kullanmak gibi). \n\nHata raporunun dosya olarak kaydedilmesini ister misiniz?"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:338
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:280
msgid "WhisperBack"
-msgstr ""
+msgstr "WhisperBack"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:339
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:12
msgid "Send feedback in an encrypted mail."
-msgstr ""
+msgstr "Şifrelenmiş e-posta ile geri bildirim gönderin."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:342
msgid "Copyright © 2009-2018 Tails developers (tails(a)boum.org)"
-msgstr ""
+msgstr "Telif Hakkı © 2009-2018 Tails Geliştiricileri (tails(a)boum.org)"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:343
msgid "Tails developers <tails(a)boum.org>"
-msgstr ""
+msgstr "Tails geliştiricileri <tails(a)boum.org>"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:344
msgid "translator-credits"
-msgstr ""
+msgstr "Çeviriye Katkıda Bulunanlar"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:377
msgid "This doesn't seem to be a valid URL or OpenPGP key."
-msgstr ""
+msgstr "Bu geçerli bir İnternet adresine ya da OpenPGP anahtarına benzemiyor."
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:63
#, python-format
msgid "Invalid contact email: %s"
-msgstr ""
+msgstr "İletişim e-posta adresi geçersiz: %s"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:83
#, python-format
msgid "Invalid contact OpenPGP key: %s"
-msgstr ""
+msgstr "İletişim OpenPGP anahtarı geçersiz: %s"
#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:85
msgid "Invalid contact OpenPGP public key block"
-msgstr ""
+msgstr "İletişim OpenPGP herkese açık anahtar bloğu geçersiz"
#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
msgid "Report an error"
@@ -2068,15 +2068,15 @@ msgstr "Tails başlatılırken kalıcı depolama biriminizden kurulacak ek uygul
#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:1
msgid "WhisperBack Error Reporting"
-msgstr ""
+msgstr "WhisperBack Sorun Bildirimi"
#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:2
msgid "Send feedback via encrypted e-mail"
-msgstr ""
+msgstr "Şifreli e-posta ile geri bildirim gönderin"
#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:3
msgid "feedback;bug;report;tails;error;"
-msgstr ""
+msgstr "geri bildirim;sorun;hara;bildirim;tails;"
#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
msgid "Tails specific tools"
@@ -2281,19 +2281,19 @@ msgstr "Bu birimin bağlantısını kes"
#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
msgid "Target USB stick:"
-msgstr ""
+msgstr "Hedef USB belleği:"
#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
msgid "Reinstall (delete all data)"
-msgstr ""
+msgstr "Yeniden kur (tüm verileri sil)"
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:11
msgid "Copyright © 2009-2018 tails(a)boum.org"
-msgstr ""
+msgstr "Telif Hakkı © 2009-2018 tails(a)boum.org"
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
msgid "https://tails.boum.org/"
-msgstr ""
+msgstr "https://tails.boum.org/"
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
msgid ""
@@ -2312,43 +2312,43 @@ msgid ""
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program. If not, see <http://www.gnu.org/licenses/>.\n"
-msgstr ""
+msgstr "WhisperBack - Şifreli e-posta ile geri bildirim gönderin.\nTelif Hakkı (C) 2009-2018 Tails geliştiricileri <tails(a)boum.org>\n\nBu program özgür bir yazılımdır: Özgür Yazılım Vakfı tarafından yayımlanan\nGNU Genel Kamu Lisansı 3. sürüm ya da (isteğinize bağlı olarak) daha\nsonraki sürümlerinin hükümleri altında yeniden dağıtabilir ve/veya\ndeğiştirebilirsiniz.\n\nBu program işe yaraması umuduyla dağıtılmıştır, ancak HİÇBİR GARANTİSİ\nYOKTUR; hatta SATILABİLİRLİK ya da BİR AMACA HİZMET gibi bir garantisi de\nyoktur. Ayrıntılı bilgi almak için GNU Genel Kamu Lisansı içeriğine bakabilirsiniz.\n\nBu programın içeriğinde bir GNU Genel Kamu Lisansı kopyası da bulunmalı.\nElinizde yoksa <http://www.gnu.org/licenses/> adresine bakabilirsiniz.\n"
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:122
msgid ""
"If you want us to encrypt messages when we respond to you, add your key ID, "
"a link to your key, or the key as a public key block:"
-msgstr ""
+msgstr "Size yanıt verirken iletilerimizi şifrelememizi istiyorsanız, anahtarınızı, anahtar kodu, anahtarınıza yöneltilmiş bir bağlantı ya da herkese açık anahtar bloğu şeklinde ekleyin:"
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:308
msgid "Summary"
-msgstr ""
+msgstr "Özet"
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:337
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:472
msgid "Bug description"
-msgstr ""
+msgstr "Hata açıklaması"
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:378
msgid "Help:"
-msgstr ""
+msgstr "Yardım:"
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:388
msgid "Read our bug reporting guidelines."
-msgstr ""
+msgstr "Hata bildirme yönergelerini okuyun."
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:416
msgid "Email address (if you want an answer from us)"
-msgstr ""
+msgstr "E-posta adresiniz (bizden bir yanıt almak istiyorsanız)"
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:445
msgid "optional PGP key"
-msgstr ""
+msgstr "İsteğe bağlı PGP anahtarı"
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:489
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:600
msgid "Technical details to include"
-msgstr ""
+msgstr "Katılacak teknik ayrıntılar"
#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:527
msgid "headers"
1
0

[translation/tails-misc_completed] https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_completed
by translation@torproject.org 16 Oct '20
by translation@torproject.org 16 Oct '20
16 Oct '20
commit edce77f93affcfa6e171abf32edca60fcbb32fb7
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Oct 16 05:45:56 2020 +0000
https://gitweb.torproject.org/translation.git/commit/?h=tails-misc_completed
---
tr.po | 2367 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 2367 insertions(+)
diff --git a/tr.po b/tr.po
new file mode 100644
index 0000000000..20e248e59e
--- /dev/null
+++ b/tr.po
@@ -0,0 +1,2367 @@
+# 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
+# Emir SARI, 2020
+# Emma Peel, 2018,2020
+# imratirtil <d.imra.gundogdu(a)gmail.com>, 2014
+# Kaya Zeren <kayazeren(a)gmail.com>, 2015-2020
+# metint, 2014
+# metint, 2014
+# Ozancan Karataş <ozancankaratas96(a)outlook.com>, 2015-2016
+# Tails_developers <tails(a)boum.org>, 2014
+# Tails_developers <tails(a)boum.org>, 2014
+# T. E. Kalayci <tekrei(a)gmail.com>, 2017-2018
+# T. E. Kalayci <tekrei(a)gmail.com>, 2020
+# Th3Kh3d1v3, 2018
+# Ümit Türk <zucchinitr(a)gmail.com>, 2013
+# Volkan Gezer <volkangezer(a)gmail.com>, 2013-2016
+# Yasin Özel <iletisim(a)yasinozel.com.tr>, 2013
+msgid ""
+msgstr ""
+"Project-Id-Version: Tor Project\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-10-15 08:31+0200\n"
+"PO-Revision-Date: 2020-10-16 05:36+0000\n"
+"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>\n"
+"Language-Team: Turkish (http://www.transifex.com/otf/torproject/language/tr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: tr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:42
+msgid "Tor is ready"
+msgstr "Tor hazır"
+
+#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:43
+msgid "You can now access the Internet."
+msgstr "Artık İnternet'e erişebilirsiniz."
+
+#: config/chroot_local-includes/etc/whisperback/config.py:69
+#, python-format
+msgid ""
+"<h1>Help us fix your bug!</h1>\n"
+"<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n"
+"<p><strong>Do not include more personal information than\n"
+"needed!</strong></p>\n"
+"<h2>About giving us an email address</h2>\n"
+"<p>\n"
+"Giving us an email address allows us to contact you to clarify the problem. This\n"
+"is needed for the vast majority of the reports we receive as most reports\n"
+"without any contact information are useless. On the other hand it also provides\n"
+"an opportunity for eavesdroppers, like your email or Internet provider, to\n"
+"confirm that you are using Tails.\n"
+"</p>\n"
+msgstr "<h1>Karşılaştığınız sorunu çözmemize yardım edin!</h1>\n<p><a href=\"%s\">Hata bildirme yönergelerini</a> okuyun.</p>\n<p><strong>Gerektiğinden fazla kişisel bilgi vermeyin!</strong></p>\n<h2>E-posta adresinizi bildirmeniz hakkında</h2>\n<p>\nBir e-posta adresi bildirmeniz, sorununuzu daha iyi anlamak için sizinle iletişim\nkurmamızı sağlar. Bize iletilen pek çok hata bildirimi, iletişim bilgileri bulunmadığı\niçin işe yaramıyor. Ancak gerçek bilgilerinizi verdiğinizde sizi izliyor olabilecek \nkişi ya da kuruluşlara (e-posta ya da İnternet hizmeti sağlayıcınıza) Tails uygulamasını kullandığınızı\nbelirleme fırsatı vermiş olursunuz. Bu nedenle farklı bir e-posta adresi kullanmanız önerilir.\n</p>\n"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:113
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
+msgid "Additional Software"
+msgstr "Ek Uygulamalar"
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
+msgid ""
+"You can install additional software automatically from your persistent "
+"storage when starting Tails."
+msgstr "Tails başlatılırken kalıcı depolama biriminden otomatik olarak ek uygulamalar kurabilirsiniz."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
+msgid ""
+"The following software is installed automatically from your persistent "
+"storage when starting Tails."
+msgstr "Şu uygulamalar Tails başlatılırken kalıcı depolama biriminden otomatik olarak kurulacak."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:171
+msgid ""
+"To add more, install some software using <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
+"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr "Başka uygulamalar eklemek için <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> diğer uygulamaları kurun."
+
+#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
+msgid "_Create persistent storage"
+msgstr "_Kalıcı depolama birimi oluştur"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:64
+msgid "Persistence is disabled for Electrum"
+msgstr "Electrum için kalıcılık devre dışı bırakıldı"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:66
+msgid ""
+"When you reboot Tails, all of Electrum's data will be lost, including your Bitcoin wallet.\n"
+"It is strongly recommended to only run Electrum when its persistence feature is activated."
+msgstr "Tails yeniden başlatıldığında, Bitcoin cüzdanınız da dahil tüm Electrum verileri kaybolur. \nElectrum uygulamasının yalnız kalıcılık özelliği etkin iken çalıştırılması önerilir."
+
+#: config/chroot_local-includes/usr/local/bin/electrum:67
+msgid "Do you want to start Electrum anyway?"
+msgstr "Electrum yine de başlatılsın mı?"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:70
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
+msgid "_Launch"
+msgstr "_Başlat"
+
+#: config/chroot_local-includes/usr/local/bin/electrum:71
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
+msgid "_Exit"
+msgstr "Çı_kış"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:197
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:598
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:764
+msgid ""
+"For debugging information, execute the following command: sudo tails-"
+"debugging-info"
+msgstr "Sorun giderme bilgileri için şu komutu yürütün: sudo tails-debugging-info"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:263
+msgid ""
+"<b>An error occured while updating the signing key.</b>\\n\\n<b>This "
+"prevents determining whether an upgrade is available from our "
+"website.</b>\\n\\nCheck your network connection, and restart Tails to try "
+"upgrading again.\\n\\nIf the problem persists, go to "
+"file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
+msgstr "<b>İmzalama anahtarı güncellenirken bir sorun çıktı.</b>\\n\\n\\<b>Bu durum web sitemizde bir güncelleme olup olmadığının belirlenmesini engeller.</b>n\\nGüncellemeleri denetlemek için ağ bağlantınızı gözden geçirin ve Tails uygulamasını yeniden başlatın.\\n\\nSorun sürüyorsa, file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html adresine bakabilirsiniz."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:268
+msgid "Error while updating the signing key"
+msgstr "İmzalama anahtarı güncellenirken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:295
+msgid "Error while checking for upgrades"
+msgstr "Güncellemeler denetlenirken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:297
+msgid ""
+"<b>Could not determine whether an upgrade is available from our website.</b>\n"
+"\n"
+"Check your network connection, and restart Tails to try upgrading again.\n"
+"\n"
+"If the problem persists, go to file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html"
+msgstr "<b>Web sitemizde bir güncelleme olup olmadığı belirlenemedi.</b>\n\nGüncellemeleri denetlemek için ağ bağlantınızı gözden geçirin ve Tails uygulamasını yeniden başlatın.\n\nSorun sürüyorsa, file:///usr/share/doc/tails/website/doc/upgrade/error/check.en.html adresine bakabilirsiniz."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:312
+msgid "no automatic upgrade is available from our website for this version"
+msgstr "web sitemizde bu sürüm için otomatik güncelleme desteği yok"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:318
+msgid "your device was not created using a USB image or Tails Installer"
+msgstr "aygıtnız bir USB kalıbı ya da Tails kurucu ile oluşturulmamış"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:323
+msgid "Tails was started from a DVD or a read-only device"
+msgstr "Tails bir DVD ya da salt okunur aygıt üzerinden başlatıldı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:328
+msgid "there is not enough free space on the Tails system partition"
+msgstr "Tails sistem bölümünde yeterli boş alan yok"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:333
+msgid "not enough memory is available on this system"
+msgstr "bu sistemde yeterli bellek yok"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:338
+#, perl-brace-format
+msgid "No explanation available for reason '{reason}'."
+msgstr "'{reason}' gerekçesi için bir açıklama yok."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:359
+msgid "The system is up-to-date"
+msgstr "Sistem güncel"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364
+msgid "This version of Tails is outdated, and may have security issues."
+msgstr "Bu Tails sürümü güncel değil ve güvenlik sorunları olabilir."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:395
+#, perl-brace-format
+msgid ""
+"The available incremental upgrade requires {space_needed} of free space on "
+"Tails system partition, but only {free_space} is available."
+msgstr "Kullanılabilecek artımlı yükseltme için Tails sistem bölümünde {space_needed} boş alan gerekli ancak yalnız {free_space} var."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:407
+#, perl-brace-format
+msgid ""
+"The available incremental upgrade requires {memory_needed} of free memory, "
+"but only {free_memory} is available."
+msgstr "Kullanılabilecek artımlı yükseltme için {memory_needed} boş bellek gerekli ancak yalnız {free_memory} var."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:426
+msgid ""
+"An incremental upgrade is available, but no full upgrade is.\n"
+"This should not happen. Please report a bug."
+msgstr "Artımlı bir yükseltme varken tam yükseltme yok gibi görünüyor.\nBu olmamalıydı. Lütfen bu sorunu bildirin."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:430
+msgid "Error while detecting available upgrades"
+msgstr "Güncellemeler denetlenirken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:439
+#, perl-brace-format
+msgid ""
+"<b>You should upgrade to {name} {version}.</b>\n"
+"\n"
+"For more information about this new version, go to {details_url}\n"
+"\n"
+"We recommend you close all other applications during the upgrade.\n"
+"Downloading the upgrade might take a long time, from several minutes to a few hours.\n"
+"\n"
+"Download size: {size}\n"
+"\n"
+"Do you want to upgrade now?"
+msgstr "<b>{name} {version} sürümüne güncellemeniz gerekli.</b>\n\nBu sürüm hakkında ayrıntılı bilgi almak için, {details_url} adresine bakabilirsiniz.\n\nBu güncelleme sırasında açık tüm uygulamaları kapatmanız önerilir.\nGüncellemenin indirilmesi birkaç dakika ile birkaç saat arasında sürebilir.\n\nİndirme boyutu: {size}\n\nŞimdi güncellemek ister misiniz?"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:451
+msgid "Upgrade available"
+msgstr "Güncelleme yayınlanmış"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:452
+msgid "Upgrade now"
+msgstr "Şimdi güncelle"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:453
+msgid "Upgrade later"
+msgstr "Daha sonra güncelle"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:460
+#, perl-brace-format
+msgid ""
+"<b>You should do a manual upgrade to {name} {version}.</b>\n"
+"\n"
+"For more information about this new version, go to {details_url}\n"
+"\n"
+"It is not possible to automatically upgrade your device to this new version: {explanation}.\n"
+"\n"
+"To learn how to do a manual upgrade, go to https://tails.boum.org/doc/upgrade/#manual"
+msgstr "<b>{name} {version} sürümüne el ile güncelleyebilirsiniz.</b>\n\nBu sürüm hakkında ayrıntılı bilgi almak için {details_url} adresine bakabilirsiniz\n\nAygıtınız bu sürüme otomatik olarak güncellenemez: {explanation}.\n\nEl ile güncellemenin nasıl yapılacağını öğrenmek için https://tails.boum.org/doc/upgrade/#manual adresine bakabilirsiniz"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:471
+msgid "New version available"
+msgstr "Yeni bir sürüm yayınlanmış"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:552
+msgid "Downloading upgrade"
+msgstr "Güncelleme indiriliyor"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:554
+#, perl-brace-format
+msgid "Downloading the upgrade to {name} {version}..."
+msgstr "{name} {version} güncellemesi indiriliyor..."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:591
+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:602
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:617
+msgid "Error while downloading the upgrade"
+msgstr "Güncelleme indirilirken sorun çıktı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:612
+#, perl-brace-format
+msgid ""
+"Output file '{output_file}' does not exist, but tails-iuk-get-target-file "
+"did not complain. Please report a bug."
+msgstr "'{output_file}' çıktı dosyası bulunamadı ancak tails-iuk-get-target-file uygulaması bunu bir sorun olarak bildirmedi. Lütfen bu hatayı bildirin."
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:628
+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:631
+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:655
+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:658
+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:672
+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:677
+msgid "Upgrade successfully downloaded"
+msgstr "Güncelleme indirildi"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:678
+msgid "Apply upgrade"
+msgstr "Güncellemeyi uygula"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:685
+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:690
+msgid "Restart Tails"
+msgstr "Tails Uygulamasını Yeniden Başlat"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:691
+msgid "Restart now"
+msgstr "Şimdi yeniden başlat"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:692
+msgid "Restart later"
+msgstr "Daha sonra yeniden başlat"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:702
+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:703
+msgid "Failed to restart the system"
+msgstr "Sistem yeniden başlatılamadı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:716
+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:717
+msgid "Failed to shutdown network"
+msgstr "Ağ kapatılamadı"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:723
+msgid "Upgrading the system"
+msgstr "Sistem güncelleniyor"
+
+#: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:725
+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:758
+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:768
+msgid "Error while installing the upgrade"
+msgstr "Güncelleme kurulurken sorun çıktı"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:32
+msgid "Additional Settings"
+msgstr "Ek Ayarlar"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:594
+#: 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/lib/python2.7/dist-packages/tails_installer/creator.py:138
+msgid "Extracting live image to the target device..."
+msgstr "Canlı İşletim Sistemi kalıbı hedef aygıta ayıklanıyor..."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:145
+#, python-format
+msgid "Wrote to device at %(speed)d MB/sec"
+msgstr "Aygıta %(speed)d MB/saniye hızında yazılıyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:276
+#, python-format
+msgid ""
+"There was a problem executing the following command: `%(command)s`.\n"
+"A more detailed error log has been written to '%(filename)s'."
+msgstr "Şu komut yürütülürken bir sorun çıktı: `%(command)s`.\nAyrıntılı bir hata raporu '%(filename)s' dosyasına yazıldı."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:292
+#, python-format
+msgid ""
+"Not enough free space on device.\n"
+"%(iso_size)dMB ISO + %(overlay_size)dMB overlay > %(free_space)dMB free space"
+msgstr "Aygıt üzerinde yeterli boş alan yok.\n%(iso_size)dMB ISO + %(overlay_size)dMB kaplama > %(free_space)dMB boş alan"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:301
+#, python-format
+msgid "Creating %sMB persistent overlay"
+msgstr "%sMB kalıcı depolama birimi kaplaması oluşturuluyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:351
+#, python-format
+msgid "Unable to copy %(infile)s to %(outfile)s: %(message)s"
+msgstr "%(infile)s %(outfile)s konumuna kopyalanamadı: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:365
+msgid "Removing existing Live OS"
+msgstr "Var olan Canlı İşletim Sistemi kaldırılıyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:374
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:387
+#, python-format
+msgid "Unable to chmod %(file)s: %(message)s"
+msgstr "chmod yürütülemedi %(file)s: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:380
+#, python-format
+msgid "Unable to remove file from previous LiveOS: %(message)s"
+msgstr "Önceki Canlı İşletim Sisteminden dosya silinemedi: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:394
+#, python-format
+msgid "Unable to remove directory from previous LiveOS: %(message)s"
+msgstr "Önceki Canlı İşletim Sisteminden klasör silinemedi: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:442
+#, python-format
+msgid "Cannot find device %s"
+msgstr "%s aygıtı bulunamadı"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:634
+#, python-format
+msgid "Unable to write on %(device)s, skipping."
+msgstr "%(device)s aygıtına yazılamadı, atlanıyor."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:664
+#, python-format
+msgid ""
+"Some partitions of the target device %(device)s are mounted. They will be "
+"unmounted before starting the installation process."
+msgstr "%(device)s hedef aygıtının bazı bölümleri takılmış. Kurulum başlatılmadan önce bu bölümler çıkarılacak."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:707
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:931
+msgid "Unknown filesystem. Your device may need to be reformatted."
+msgstr "Dosya sistemi bilinmiyor. Aygıtınızın yeniden biçimlendirilmesi gerekebilir."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:710
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:934
+#, python-format
+msgid "Unsupported filesystem: %s"
+msgstr "Dosya sistemi desteklenmiyor: %s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:728
+#, python-format
+msgid "Unknown GLib exception while trying to mount device: %(message)s"
+msgstr "Aygıt takılmaya çalışılırken bilinmeyen bir Glib sorunu çıktı: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:733
+#, python-format
+msgid "Unable to mount device: %(message)s"
+msgstr "Aygıt takılamadı: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:738
+msgid "No mount points found"
+msgstr "Bir takılma noktası bulunamadı"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:749
+#, python-format
+msgid "Entering unmount_device for '%(device)s'"
+msgstr "'%(device)s' için unmount_device işleniyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:759
+#, python-format
+msgid "Unmounting mounted filesystems on '%(device)s'"
+msgstr " '%(device)s' üzerindeki takılı dosya sistemleri çıkarılıyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:763
+#, python-format
+msgid "Unmounting '%(udi)s' on '%(device)s'"
+msgstr "'%(udi)s' '%(device)s' aygıtı üzerinden çıkarılıyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:774
+#, python-format
+msgid "Mount %s exists after unmounting"
+msgstr "Çıkarma işleminden sonra %s takılı"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:787
+#, python-format
+msgid "Partitioning device %(device)s"
+msgstr "%(device)s aygıtı bölümleniyor "
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:916
+#, python-format
+msgid "Unsupported device '%(device)s', please report a bug."
+msgstr "'%(device)s' aygıtı desteklenmiyor, lütfen bu sorunu bildirin."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:919
+msgid "Trying to continue anyway."
+msgstr "Yine de sürdürülmeye çalışılıyor."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:928
+msgid "Verifying filesystem..."
+msgstr "Dosya sistemi doğrulanıyor..."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:952
+#, python-format
+msgid "Unable to change volume label: %(message)s"
+msgstr "Birim etiketi değiştirişemedi: %(message)s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:958
+msgid "Installing bootloader..."
+msgstr "Başlatıcı kuruluyor..."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:965
+#, python-format
+msgid "Removing %(file)s"
+msgstr " %(file)s siliniyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:1043
+#, python-format
+msgid "%s already bootable"
+msgstr "%s zaten başlatılabilir"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:1063
+msgid "Unable to find partition"
+msgstr "Bölüm bulunamadı"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:1086
+#, python-format
+msgid "Formatting %(device)s as FAT32"
+msgstr "%(device)s FAT32 olarak biçimlendiriliyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:1149
+#, python-format
+msgid "Reading extracted MBR from %s"
+msgstr "%s üzerinden ayıklanan MBR okunuyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:1153
+#, python-format
+msgid "Could not read the extracted MBR from %(path)s"
+msgstr "%(path)s üzerinden ayıklanan MBR okunamadı"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:1166
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:1167
+#, python-format
+msgid "Resetting Master Boot Record of %s"
+msgstr "%s üzerindeki ana ön yükleme kaydı (MBR) sıfırlanıyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:1172
+msgid "Drive is a loopback, skipping MBR reset"
+msgstr "Sürücü kapalı bir çevrim. Ana ön yükleme kaydı (MBR) sıfırlaması atlanıyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/creator.py:1176
+msgid "Synchronizing data on disk..."
+msgstr "Diskteki veriler eşitleniyor..."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:150
+msgid ""
+"Error: Cannot set the label or obtain the UUID of your device. Unable to "
+"continue."
+msgstr "Hata: Etiket ayarlanamıyor ya da aygıtınızın UUID kodu alınamıyor. İşlem sürdürülemiyor."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:184
+#, python-format
+msgid "Installation complete! (%s)"
+msgstr "Kurulum tamamlandı! (%s)"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:189
+msgid "Tails installation failed!"
+msgstr "Tails kurulumu tamamlanamadı!"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:281
+#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1
+msgid "Tails Installer"
+msgstr "Tails Kurucu"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:324
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:163
+msgid "Clone the current Tails"
+msgstr "Geçerli Tails kurulumunu kopyala"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:331
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:184
+msgid "Use a downloaded Tails ISO image"
+msgstr "İndirilmiş bir Tails ISO kalıbı kullan"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:368
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:671
+msgid "Upgrade"
+msgstr "Güncelle"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:370
+msgid "Manual Upgrade Instructions"
+msgstr "El İle Güncelleme Yönergeleri"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:372
+msgid "https://tails.boum.org/upgrade/"
+msgstr "https://tails.boum.org/upgrade/"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:380
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:583
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:648
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:358
+msgid "Install"
+msgstr "Kur"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:383
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:131
+msgid "Installation Instructions"
+msgstr "Kurulum Yönergeleri"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:385
+msgid "https://tails.boum.org/install/"
+msgstr "https://tails.boum.org/install/"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:391
+#, python-format
+msgid "%(size)s %(vendor)s %(model)s device (%(device)s)"
+msgstr "%(size)s %(vendor)s %(model)s aygıt (%(device)s)"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:403
+msgid "No ISO image selected"
+msgstr "Herhangi bir ISO kalıbı seçilmemiş"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:404
+msgid "Please select a Tails ISO image."
+msgstr "Lütfen bir Tails ISO kalıbı seçin."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:446
+msgid "No device suitable to install Tails could be found"
+msgstr "Tails kurucusuna uygun bir aygıt bulunamadı"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:448
+#, python-format
+msgid "Please plug a USB flash drive or SD card of at least %0.1f GB."
+msgstr "Lütfen en az %0.1f GB kapasiteli bir USB bellek ya da SD kart takın."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:482
+#, python-format
+msgid ""
+"The USB stick \"%(pretty_name)s\" is configured as non-removable by its "
+"manufacturer and Tails will fail to start from it. Please try installing on "
+"a different model."
+msgstr "USB belleği \"%(pretty_name)s\" üreticisi tarafından çıkarılamaz olarak yapılandırılmış olduğundan Tails buradan başlatılamayacak. Lütfen farklı bir modele kurmayı deneyin."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:492
+#, python-format
+msgid ""
+"The device \"%(pretty_name)s\" is too small to install Tails (at least "
+"%(size)s GB is required)."
+msgstr "\"%(pretty_name)s\" aygıtı Tails uygulamasının kurulması için çok küçük (en az %(size)s GB gereklidir)."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:505
+#, python-format
+msgid ""
+"To upgrade device \"%(pretty_name)s\" from this Tails, you need to use a downloaded Tails ISO image:\n"
+"https://tails.boum.org/install/download"
+msgstr "\"%(pretty_name)s\" aygıtını bu Tails sürümünden güncellemek için indirilmiş Tails ISO kalıbına gerek duyacaksınız:\nhttps://tails.boum.org/install/download"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:526
+msgid "An error happened while installing Tails"
+msgstr "Tails kurulurken bir sorun çıktı"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:578
+msgid "Installation complete!"
+msgstr "Kurulum tamamlandı!"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:630
+msgid "Unable to mount device"
+msgstr "Aygıt takılamadı"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:637
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:670
+msgid "Confirm the target USB stick"
+msgstr "Hedef USB belleği onaylayın"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:638
+#, python-format
+msgid ""
+"%(size)s %(vendor)s %(model)s device (%(device)s)\n"
+"\n"
+"All data on this USB stick will be lost."
+msgstr "%(size)s %(vendor)s %(model)s aygıt (%(device)s)\n\nBu USB bellek üzerindeki tüm veriler kaybolacak."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:657
+#, python-format
+msgid "%(parent_size)s %(vendor)s %(model)s device (%(device)s)"
+msgstr "%(parent_size)s %(vendor)s %(model)s aygıt (%(device)s)"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:665
+msgid ""
+"\n"
+"\n"
+"The persistent storage on this USB stick will be preserved."
+msgstr "\n\nBu USB bellekteki kalıcı depolama birimi korunacak."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:666
+#, python-format
+msgid "%(description)s%(persistence_message)s"
+msgstr "%(description)s%(persistence_message)s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:705
+msgid ""
+"The selected file is unreadable. Please fix its permissions or select "
+"another file."
+msgstr "Seçilen dosya okunamıyor. Lütfen dosya izinlerini denetleyin ya da başka bir dosya seçin."
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:711
+msgid ""
+"Unable to use the selected file. You may have better luck if you move your "
+"ISO to the root of your drive (ie: C:\\)"
+msgstr "Seçilmiş dosya kullanılamadı. ISO kalıbını diskinizin kök klasörüne taşımanız işe yarayabilir (C:\\ gibi)"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/gui.py:717
+#, python-format
+msgid "%(filename)s selected"
+msgstr "%(filename)s seçildi"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:28
+msgid "Unable to find LiveOS on ISO"
+msgstr "ISO üzerinde Canlı İşletim Sistemi bulunamadı"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:34
+#, python-format
+msgid "Could not guess underlying block device: %s"
+msgstr "Temel blok aygıtı öngörülemedi: %s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:48
+#, python-format
+msgid ""
+"There was a problem executing `%(cmd)s`.\n"
+"%(out)s\n"
+"%(err)s"
+msgstr "`%(cmd)s` çalıştırılırken bir sorun çıktı.\n%(out)s\n%(err)s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:60
+#, python-format
+msgid "'%s' does not exist"
+msgstr "'%s' bulunamadı"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:62
+#, python-format
+msgid "'%s' is not a directory"
+msgstr "'%s' bir klasör değil"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/source.py:72
+#, python-format
+msgid "Skipping '%(filename)s'"
+msgstr "'%(filename)s' atlanıyor"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/utils.py:54
+#, python-format
+msgid ""
+"There was a problem executing `%(cmd)s`.%(out)s\n"
+"%(err)s"
+msgstr "`%(cmd)s`,%(out)s çalıştırılırken bir sorun çıktı.\n%(err)s"
+
+#: config/chroot_local-includes/usr/lib/python2.7/dist-packages/tails_installer/utils.py:134
+msgid "Could not open device for writing."
+msgstr "Aygıt yazılmak üzere açılamadı."
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:15
+#, sh-format
+msgid ""
+"<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n"
+"\n"
+"You have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n"
+"\n"
+"<i>${filename}</i>\n"
+"\n"
+"<i>KeePassXC</i> changed the default name of the database to <i>Passwords.kdbx</i>.\n"
+"\n"
+"Renaming your database to <i>Passwords.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
+msgstr "<b><big><i>KeePassXC</i> veri tabanınızı yeniden adlandırmak istiyor musunuz?</big></b>\n\n<i>Kalıcı depolama</i> klasörünüzde bir <i>KeePassXC</i> veritabanınız var:\n\n<i>${filename}</i>\n\n<i>KeePassXC</i>, veritabanının varsayılan adını şu şekilde değiştirdi: <i>Passwords.kdbx</i>\n\nVeritabanınız <i>Passwords.kdbx</i> olarak yeniden adlandırıldığında <i>KeePassXC</i> tarafından otomatik olarak açılabilir."
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:25
+msgid "Rename"
+msgstr "Yeniden Adlandır"
+
+#: config/chroot_local-includes/usr/local/bin/keepassxc:26
+msgid "Keep current name"
+msgstr "Geçerli ad korunsun"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:94
+msgid "Persistence wizard - Persistent volume creation"
+msgstr "Kalıcılık yardımcısı - Kalıcı depolama birimi oluşturma"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:97
+msgid "Choose a passphrase to protect the persistent volume"
+msgstr "Kalıcı depolama birimini korumayacak bir parola seçin"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:100
+#, perl-brace-format
+msgid ""
+"A {size} persistent volume will be created on the <b>{vendor} {model}</b> "
+"device. Data on this volume will be stored in an encrypted form protected by"
+" a passphrase."
+msgstr "<b>{vendor} {model}</b> aygıtında {size} boyutunda bir kalıcı depolama birimi oluşturulacak. Buradaki veriler parola ile şifrelenmiş olarak depolanacak."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:105
+msgid "Create"
+msgstr "Oluştur"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:148
+msgid ""
+"<b>Beware!</b> Using persistence has consequences that must be well "
+"understood. Tails can't help you if you use it wrong! See the <i>Encrypted "
+"persistence</i> page of the Tails documentation to learn more."
+msgstr "<b>Dikkat!</b> Kalıcı kullanımın iyi anlamanız gereken sonuçları vardır. Yanlış kullanırsanız Tails uygulamasının size yardımı olmaz. Ayrıntılı bilgi almak için Tails belgelerindeki <i>Şifrelenmiş kaıcılık</i> bölümüne bakabilirsiniz."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:175
+msgid "Passphrase:"
+msgstr "Parola:"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:181
+msgid "Verify Passphrase:"
+msgstr "Parola Onayı:"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:191
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:259
+msgid "Passphrase can't be empty"
+msgstr "Parola boş bırakılamaz"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:226
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:394
+msgid "Show Passphrase"
+msgstr "Parola Görüntülensin"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:250
+msgid "Passphrases do not match"
+msgstr "Parola ile onayı aynı değil"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:305
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:178
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:101
+msgid "Failed"
+msgstr "Başarısız"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:313
+msgid "Mounting Tails persistence partition."
+msgstr "Tails kalıcılık bölümü takılıyor"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:316
+msgid "The Tails persistence partition will be mounted."
+msgstr "Tails kalıcılık bölümü takılacak"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:325
+msgid "Correcting permissions of the persistent volume."
+msgstr "Kalıcı depolama birimi izinleri düzeltiliyor."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:328
+msgid "The permissions of the persistent volume will be corrected."
+msgstr "Kalıcı depolama biriminin izinleri düzeltilecek."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:336
+msgid "Creating default persistence configuration."
+msgstr "Varsayılan kalıcılık ayarları oluşturuluyor."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:339
+msgid "The default persistence configuration will be created."
+msgstr "Varsayılan kalıcılık yapılandırması oluşturulacak."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:353
+msgid "Creating..."
+msgstr "Oluşturuluyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Bootstrap.pm:355
+msgid "Creating the persistent volume..."
+msgstr "Kalıcı depolama birimi oluşturuluyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:86
+msgid "Persistence wizard - Persistent volume configuration"
+msgstr "Kalıcılık yardımcısı - Kalıcı depolama birimi yapılandırması"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:89
+msgid "Specify the files that will be saved in the persistent volume"
+msgstr "Kalıcı depolama birimine kaydedilecek dosyaları belirtin"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:92
+#, perl-brace-format
+msgid ""
+"The selected files will be stored in the encrypted partition {partition} "
+"({size}), on the <b>{vendor} {model}</b> device."
+msgstr "Seçilen dosyalar <b>{vendor} {model}</b> aygıtında bulunan şifreli {partition} ({size}) bölümüne depolanacak."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:98
+msgid "Save"
+msgstr "Kaydet"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:191
+msgid "Saving..."
+msgstr "Kaydediliyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Configure.pm:193
+msgid "Saving persistence configuration..."
+msgstr "Kalıcılık ayarları kaydediliyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:51
+msgid "Persistence wizard - Persistent volume deletion"
+msgstr "Kalıcılık yardımcısı - Kalıcı depolama birimini silme"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:54
+msgid "Your persistent data will be deleted."
+msgstr "Kalıcı depolama birimindeki verileriniz silinecek."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:58
+#, perl-brace-format
+msgid ""
+"The persistent volume {partition} ({size}), on the <b>{vendor} {model}</b> "
+"device, will be deleted."
+msgstr "<b>{vendor} {model}</b> aygıtındaki, {partition} ({size}) kalıcı depolama birimi silinecek."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:64
+msgid "Delete"
+msgstr "Sil"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:114
+msgid "Deleting..."
+msgstr "Siliniyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Step/Delete.pm:116
+msgid "Deleting the persistent volume..."
+msgstr "Kalıcı depolama birimi siliniyor..."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:53
+msgid "Personal Data"
+msgstr "Kişisel Veriler"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:55
+msgid "Keep files stored in the `Persistent' directory"
+msgstr "Dosyalar `Persistent' klasöründe depolansın"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:68
+msgid "Welcome Screen"
+msgstr "Hoş Geldiniz Ekranı"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:70
+msgid "Language, administration password, and additional settings"
+msgstr "Dil, yönetim parolası ve diğer ayarlar"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:83
+msgid "Browser Bookmarks"
+msgstr "Yer İmlerine Göz At"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:85
+msgid "Bookmarks saved in the Tor Browser"
+msgstr "Tor Browser üzerine kaydedilmiş yer imleri"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:98
+msgid "Network Connections"
+msgstr "Ağ Bağlantıları"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:100
+msgid "Configuration of network devices and connections"
+msgstr "Ağ aygıt ve bağlantılarının ayarları"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:115
+msgid "Software installed when starting Tails"
+msgstr "Tails başlatılırken kurulan uygulamalar"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:133
+msgid "Printers"
+msgstr "Yazıcılar"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:135
+msgid "Printers configuration"
+msgstr "Yazıcı ayarları"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:148
+msgid "Thunderbird"
+msgstr "Thunderbird"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:150
+msgid "Thunderbird emails, feeds, and settings"
+msgstr "Thunderbird e-postalar, akışlar ve ayarlar"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:163
+msgid "GnuPG"
+msgstr "GnuPG"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:165
+msgid "GnuPG keyrings and configuration"
+msgstr "GnuPG anahtarlık ve ayarları"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:178
+msgid "Bitcoin Client"
+msgstr "Bitcoin İstemcisi"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:180
+msgid "Electrum's bitcoin wallet and configuration"
+msgstr "Electrum bitcoin cüzdanı ve ayarları"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:193
+msgid "Pidgin"
+msgstr "Pidgin"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:195
+msgid "Pidgin profiles and OTR keyring"
+msgstr "Pidgin profilleri ve Kayıt Dışı anahtarlığı"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:208
+msgid "SSH Client"
+msgstr "SSH İstemcisi"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:210
+msgid "SSH keys, configuration and known hosts"
+msgstr "SSH anahtarları, ayarları ve bilinen sunucular"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:223
+msgid "Dotfiles"
+msgstr "Dotfiles"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Presets.pm:225
+msgid ""
+"Symlink into $HOME every file or directory found in the `dotfiles' directory"
+msgstr "`dotfiles' klasöründe bulunan tüm dosya ve klasörler için $HOME üzerinde sembolik bağlantı oluşturur"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Configuration/Setting.pm:111
+msgid "Custom"
+msgstr "Özel"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:284
+msgid "Setup Tails persistent volume"
+msgstr "Tails kalıcı depolama birimini kur"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:362
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:489
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:221
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:75
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
+msgid "Error"
+msgstr "Hata"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:388
+msgid "Device already has a persistent volume."
+msgstr "Aygıt üzerinde zaten bir kalıcı depolama birimi var."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:395
+msgid "Device has not enough unallocated space."
+msgstr "Aygıt üzerinde yeteri kadar boş alan yok."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:401
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:414
+msgid "Device has no persistent volume."
+msgstr "Aygıt üzerinde bir kalıcı depolama birimi yok."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:407
+msgid ""
+"Cannot delete the persistent volume while in use. You should restart Tails "
+"without persistence."
+msgstr "Kullanımda olduğundan kalıcı depolama birimi silinemedi. Tails yazılımını kalıcılık olmadan yeniden başlatmalısınız."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:419
+msgid "Persistence volume is not unlocked."
+msgstr "Kalıcılık biriminin kilidi açılamadı."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:423
+msgid "Persistence volume is not mounted."
+msgstr "Kalıcılık birimi takılmamış."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:428
+msgid "Persistence volume is not readable. Permissions or ownership problems?"
+msgstr "Kalıcılık birimi okunamıyor. İzin ya da sahiplik sorunları olabilir mi?"
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:433
+msgid "Persistence volume is not writable."
+msgstr "Kalıcı depolama birimi yazılabilir değil."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:442
+msgid "Tails is running from non-USB / non-SDIO device."
+msgstr "Tails, USB ya da SDIO özelliği olmayan bir aygıt üzerinden çalışıyor."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:447
+msgid "Device is optical."
+msgstr "Aygıt optik disk."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:454
+msgid "Device was not created using a USB image or Tails Installer."
+msgstr "Aygıt bir USB kalıbı ya da Tails kurucusu kullanılarak oluşturulmamış."
+
+#: config/chroot_local-includes/usr/src/persistence-setup/lib/Tails/Persistence/Setup.pm:696
+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:699
+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:223
+msgid ""
+"The device Tails is running from cannot be found. Maybe you used the 'toram'"
+" option?"
+msgstr "Tails uygulamasının çalıştığı bir aygıt bulunamadı. 'toram' seçeneğini mi kullanıyorsunuz?"
+
+#: config/chroot_local-includes/usr/src/perl5lib/lib/Tails/RunningSystem.pm:251
+msgid ""
+"The drive Tails is running from cannot be found. Maybe you used the 'toram' "
+"option?"
+msgstr "Tails uygulamasının çalıştığı bir sürücü bulunamadı. 'toram' seçeneğini mi kullanıyorsunuz?"
+
+#: config/chroot_local-includes/usr/local/lib/seahorse-tool-wrapper:42
+msgid "Import Failed"
+msgstr "İçe Aktarma Tamamlanamadı"
+
+#. Translators: Don't translate {path} or {error},
+#. they are placeholders and will be replaced.
+#: 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 biriminizden otomatik olarak kurmak için."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
+msgid "Install Every Time"
+msgstr "Her Defasında Kurulsun"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
+msgid "Install Only Once"
+msgstr "Yalnız Bir Kez Kurulsun"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:301
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:331
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:371
+msgid "The configuration of your additional software failed."
+msgstr "Ek uygulamanız yapılandırılamadı."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
+msgid ""
+"To install it automatically when starting Tails, you can create a persistent"
+" storage and activate the <b>Additional Software</b> feature."
+msgstr "Tails başlatılırken otomatik kurulum yapılması için bir kalıcı depolama birimi oluşturarak <b>Ek Uygulamalar</b> özelliğini etkinleştirebilirsiniz."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
+msgid "Create Persistent Storage"
+msgstr "Kalıcı Depolama Birimi Oluştur"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
+msgid "Creating your persistent storage failed."
+msgstr "Kalıcı depolama birimi oluşturulamadı."
+
+#. Translators: Don't translate {packages}, it's a placeholder and
+#. will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:342
+#, python-brace-format
+msgid "You could install {packages} automatically when starting Tails"
+msgstr "Tails başlatılırken otomatik olarak {packages} kurabilirsiniz"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
+msgid "To do so, you need to run Tails from a USB stick."
+msgstr "Bunun için Tails uygulamasını bir USB bellekten çalıştırmalısınız."
+
+#. Translators: Don't translate {packages}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:359
+#, python-brace-format
+msgid "Remove {packages} from your additional software?"
+msgstr "{packages} ek uygulamalarınızdan kaldırılsın mı?"
+
+#. Translators: Don't translate {packages}, it's a placeholder
+#. and will be replaced.
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:363
+#, python-brace-format
+msgid "This will stop installing {packages} automatically."
+msgstr "Bu işlem otomatik {packages} kurulumunu durduracak."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:365
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
+msgid "Remove"
+msgstr "Kaldır"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:544
+msgid "Installing your additional software from persistent storage..."
+msgstr "Ek uygulamalarınız kalıcı depolama biriminden kuruluyor..."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:546
+msgid "This can take several minutes."
+msgstr "Bu işlem bir kaç dakika sürebilir."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:559
+msgid "The installation of your additional software failed"
+msgstr "Ek uygulama kurulamadı"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:574
+msgid "Additional software installed successfully"
+msgstr "Ek uygulama kuruldu"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:594
+msgid "The check for upgrades of your additional software failed"
+msgstr "Ek uygulamalarınızın güncellemeleri denetlenemedi"
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:596
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
+msgid ""
+"Please check your network connection, restart Tails, or read the system log "
+"to understand the problem."
+msgstr "Lütfen ağ bağlantınızı denetleyin, Tails uygulamasını yeniden başlatın ya da sorunu anlamak için sistem günlüğüne bakın."
+
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:603
+msgid "The upgrade of your additional software failed"
+msgstr "Ek uygulama güncellenemedi"
+
+#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
+msgid "Documentation"
+msgstr "Belgeler"
+
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:94
+#, python-brace-format
+msgid ""
+"Remove {package} from your additional software? This will stop installing "
+"the package automatically."
+msgstr "{package} ek uygulamalarınız arasından kaldırılsın mı? Bu işlem paketin otomatik olarak kurulmasını durduracak."
+
+#. Translators: Don't translate {pkg}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
+#, python-brace-format
+msgid "Failed to remove {pkg}"
+msgstr "{pkg} kaldırılamadı"
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
+msgid "Failed to read additional software configuration"
+msgstr "Ek uygulama yapılandırması okunamadı"
+
+#. Translators: Don't translate {package}, it's a placeholder and will be
+#. replaced.
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:152
+#, python-brace-format
+msgid "Stop installing {package} automatically"
+msgstr "{package} otomatik olarak kurulmasın"
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:178
+msgid ""
+"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
+"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
+"command line</a>."
+msgstr "Bunun için <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> diğer uygulamaları kurun."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
+msgid ""
+"To do so, unlock your persistent storage when starting Tails and install "
+"some software using <a href=\"synaptic.desktop\">Synaptic Package "
+"Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command "
+"line</a>."
+msgstr "Bunun için Tails uygulamasını başlatırken kalıcı depolama biriminizin kilidini açın ve <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> diğer uygulamaları kurun."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:197
+msgid ""
+"To do so, create a persistent storage and install some software using <a "
+"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
+"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr "Bunun için, bir kalıcı depolama birimi ekleyin ve <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> diğer uygulamaları kurun."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205
+msgid ""
+"To do so, install Tails on a USB stick and create a persistent storage."
+msgstr "Bunun için Tails uygulamasını bir USB belleğe kurun ve bir kalıcı depolama birimi ekleyin."
+
+#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:251
+msgid "[package not available]"
+msgstr "[paket kullanılamıyor]"
+
+#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:51
+msgid "Synchronizing the system's clock"
+msgstr "Sistem saati eşitleniyor "
+
+#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
+msgid ""
+"Tor needs an accurate clock to work properly, especially for Onion Services."
+" Please wait..."
+msgstr "Tor uygulamasının düzgün çalışabilmesi için saatin doğru olması önemlidir, özellikle Onion Hizmetleri için. Lütfen bekleyin..."
+
+#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:86
+msgid "Failed to synchronize the clock!"
+msgstr "Saat eşitlenemedi!"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
+msgid "Lock Screen"
+msgstr "Ekranı Kilitle"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
+msgid "Screen Locker"
+msgstr "Ekran Kilitleyici"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
+msgid "Set up a password to unlock the screen."
+msgstr "Ekran kilidini açmak için bir parola ayarlayın."
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
+msgid "Password"
+msgstr "Parola"
+
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:93
+msgid "Confirm"
+msgstr "Onayla"
+
+#: config/chroot_local-includes/usr/local/bin/tails-security-check:121
+msgid "This version of Tails has known security issues:"
+msgstr "Bu Tails sürümünde bilinen bazı güvenlik sorunları var: "
+
+#: config/chroot_local-includes/usr/local/bin/tails-security-check:132
+msgid "Known security issues"
+msgstr "Bilinen güvenlik sorunları"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:56
+#, sh-format
+msgid "Network card ${nic} disabled"
+msgstr "${nic} ağ kartı devre dışı"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:57
+#, sh-format
+msgid ""
+"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
+"You might prefer to restart Tails and disable MAC spoofing."
+msgstr "${nic_name} (${nic}) ağ kartı için MAC maskelemesi başarısız bu yüzden geçici olarak devre dışı bırakıldı.\nTails'i yeniden başlatmanız ve MAC maskelemesini kapatmanız gerekebilir."
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:66
+msgid "All networking disabled"
+msgstr "Tüm ağ devre dışı"
+
+#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:67
+#, sh-format
+msgid ""
+"MAC spoofing failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\n"
+"You might prefer to restart Tails and disable MAC spoofing."
+msgstr "${nic_name} (${nic}) ağ kartı için MAC maskelemesi başarısız. Ayrıca bu hatanın kurtarılma girişimi de başarısız dolayısıyla tüm ağ devre dışı.\nTails uygulamasını yeniden başlatmanız ve MAC maskelemesini kapatmanız gerekebilir."
+
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:36
+msgid ""
+"<b>Not enough memory available to check for upgrades.</b>\n"
+"\n"
+"Make sure this system satisfies the requirements for running Tails.\n"
+"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
+"\n"
+"Try to restart Tails to check for upgrades again.\n"
+"\n"
+"Or do a manual upgrade.\n"
+"See https://tails.boum.org/doc/upgrade#manual"
+msgstr "<b>Güncellemeleri denetlemek için yeterli bellek yok.</b>\n\nBu sistemin Tails yazılımının gereksinimlerini karşıladığına emin olun.\nBilgiler: file:///usr/share/doc/tails/website/doc/about/requirements.tr.html\n\nGüncellemeleri denetlemek için Tails yazılımını yeniden başlatmayı deneyin.\n\nYa da el ile güncelleyin.\nBilgiler: https://tails.boum.org/doc/upgrade#manual"
+
+#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:74
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
+msgid "error:"
+msgstr "hata:"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:67
+msgid "Warning: virtual machine detected!"
+msgstr "Uyarı: Sanal makine algılandı!"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:70
+msgid "Warning: non-free virtual machine detected!"
+msgstr "Uyarı: Özgür olmayan sanal makine algılandı!"
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:73
+msgid ""
+"Both the host operating system and the virtualization software are able to "
+"monitor what you are doing in Tails. Only free software can be considered "
+"trustworthy, for both the host operating system and the virtualization "
+"software."
+msgstr "Sunucu işletim sistemi ve sanallaştırma uygulaması Tails üzerinde yaptığınız işlemleri izler. Sunucu işletim sistemi ve sanallaştırma uygulaması için yalnızca özgür yazılımlar güvenilir olarak düşünülebilir."
+
+#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
+msgid "Learn more"
+msgstr "Ayrıntılı bilgi alın"
+
+#: config/chroot_local-includes/usr/local/bin/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ı Depolama Biriminde Hoş Geldiniz Ekranı özelliğini açın."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
+msgid ""
+"Another Unsafe Browser is currently running, or being cleaned up. Please "
+"retry in a while."
+msgstr "Şu anda başka bir Güvenli Olmayan Tarayıcı çalışıyor ya da temizleniyor. Lütfen bir süre sonra yeniden deneyin."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:107
+msgid "Failed to setup chroot."
+msgstr "chroot kurulamadı."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:114
+msgid "Failed to configure browser."
+msgstr "Tarayıcıyı ayarlanamadı."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:120
+msgid ""
+"No DNS server was obtained through DHCP or manually configured in "
+"NetworkManager."
+msgstr "DHCP aracılığıyla bir DNS sunucusu bulunamadı ya da AğYöneticisi içinde el ile ayarlanmış."
+
+#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:131
+msgid "Failed to run browser."
+msgstr "Tarayıcıyı çalıştırılamadı."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/exceptions.py:41
+#, python-format
+msgid ""
+"The %s variable was not found in any of the configuration files "
+"/etc/whisperback/config.py, ~/.whisperback/config.py, or ./config.py"
+msgstr "%s değişkeni /etc/whisperback/config.py, ~/.whisperback/config.py ya da ./config.py ayar dosyalarının hiçbirinde bulunamadı"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:114
+msgid "Name of the affected software"
+msgstr "Etkilenen uygulamanın adı"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:116
+msgid "Exact steps to reproduce the error"
+msgstr "Hatayı yeniden oluşturmak için atılacak adımlar"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:118
+msgid "Actual result and description of the error"
+msgstr "Oluşan sonuç ve hatanın tanımı"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:120
+msgid "Desired result"
+msgstr "Beklenen sonuç"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:133
+msgid "Unable to load a valid configuration."
+msgstr "Geçerli bir ayar yüklenemedi."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:170
+msgid "Sending mail..."
+msgstr "E-posta gönderiliyor..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:171
+msgid "Sending mail"
+msgstr "E-posta gönderiliyor"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:173
+msgid "This could take a while..."
+msgstr "Bu işlem biraz zaman alabilir..."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:189
+msgid "The contact email address doesn't seem valid."
+msgstr "İletişim e-posta adresi geçerli gibi görünmüyor."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:206
+msgid "Unable to send the mail: SMTP error."
+msgstr "E-posta gönderilemedi: SMTP hatası."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:208
+msgid "Unable to connect to the server."
+msgstr "Sunucu ile bağlantı kurulamadı."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:210
+msgid "Unable to create or to send the mail."
+msgstr "E-posta oluşturulamadı ya da gönderilemedi."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:213
+msgid ""
+"\n"
+"\n"
+"The bug report could not be sent, likely due to network problems. Please try to reconnect to the network and click send again.\n"
+"\n"
+"If it does not work, you will be offered to save the bug report."
+msgstr "\n\nHata raporu ağ sorunları nedeniyle gönderilemedi. Lütfen ağ bağlantısını yeniden kurduktan sonra e-postayı yeniden göndermeyi deneyin.\n\nİşe yaramazsa hata raporunuzu kaydetmeniz önerilir."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:226
+msgid "Your message has been sent."
+msgstr "İletiniz gönderildi."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:233
+msgid "An error occured during encryption."
+msgstr "Şifreleme sırasında bir sorun çıktı."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:253
+#, python-format
+msgid "Unable to save %s."
+msgstr "%s kaydedilemedi."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:276
+#, python-format
+msgid ""
+"The bug report could not be sent, likely due to network problems.\n"
+"\n"
+"As a work-around you can save the bug report as a file on a USB drive and try to send it to us at %s from your email account using another system. Note that your bug report will not be anonymous when doing so unless you take further steps yourself (e.g. using Tor with a throw-away email account).\n"
+"\n"
+"Do you want to save the bug report to a file?"
+msgstr "Ağ sorunları nedeniyle hata raporu gönderilemedi.\n\nGeçici bir çözüm olarak, hata raporunu bir USB belleğe dosya olarak kaydedip başka bir sistem üzerinden ve kendi e-posta hesabınızdan %s adresini kullanarak bize gönderebilirsiniz. Bu işlemi yaparken kendi önlemlerinizi almazsanız anonimliğiniz ortadan kalkar (Tor uygulamasını ve tek kullanımlık bir e-posta adresini kullanmak gibi). \n\nHata raporunun dosya olarak kaydedilmesini ister misiniz?"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:338
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:280
+msgid "WhisperBack"
+msgstr "WhisperBack"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:339
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:12
+msgid "Send feedback in an encrypted mail."
+msgstr "Şifrelenmiş e-posta ile geri bildirim gönderin."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:342
+msgid "Copyright © 2009-2018 Tails developers (tails(a)boum.org)"
+msgstr "Telif Hakkı © 2009-2018 Tails Geliştiricileri (tails(a)boum.org)"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:343
+msgid "Tails developers <tails(a)boum.org>"
+msgstr "Tails geliştiricileri <tails(a)boum.org>"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:344
+msgid "translator-credits"
+msgstr "Çeviriye Katkıda Bulunanlar"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/gui.py:377
+msgid "This doesn't seem to be a valid URL or OpenPGP key."
+msgstr "Bu geçerli bir İnternet adresine ya da OpenPGP anahtarına benzemiyor."
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:63
+#, python-format
+msgid "Invalid contact email: %s"
+msgstr "İletişim e-posta adresi geçersiz: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:83
+#, python-format
+msgid "Invalid contact OpenPGP key: %s"
+msgstr "İletişim OpenPGP anahtarı geçersiz: %s"
+
+#: config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/whisperback.py:85
+msgid "Invalid contact OpenPGP public key block"
+msgstr "İletişim OpenPGP herkese açık anahtar bloğu geçersiz"
+
+#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
+msgid "Report an error"
+msgstr "Hata bildirin"
+
+#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
+#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
+msgid "Tails documentation"
+msgstr "Tails belgeleri"
+
+#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
+msgid "Root Terminal"
+msgstr "Root Uçbirimi"
+
+#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
+msgid "Opens a terminal as the root user, using gksu to ask for the password"
+msgstr "Uçbirimi root kullanıcı ile açar. Parola sormak için gksu kullanır"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
+msgid "Learn how to use Tails"
+msgstr "Tails uygulamasını nasıl kullanacağınızı öğrenin"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
+msgid "Learn more about Tails"
+msgstr "Tails hakkında ayrıntılı bilgi alın"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:2
+msgid "Install, clone, upgrade Tails"
+msgstr "Tails uygulamasını kur, kopyala, yükselt"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:1
+msgid "Delete persistent volume"
+msgstr "Kalıcı depolama birimini sil"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-delete.desktop.in.h:2
+msgid "Delete the persistent volume and its content"
+msgstr "Kalıcı depolama birimini ve içeriğini siler"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:1
+msgid "Configure persistent volume"
+msgstr "Kalıcı depolama birimini yapılandır"
+
+#: ../config/chroot_local-includes/usr/share/applications/tails-persistence-setup.desktop.in.h:2
+msgid ""
+"Configure which files and application configuration are saved between "
+"working sessions"
+msgstr "Çalışma oturumları arasında kaydedilecek dosya ve uygulama ayarlarını yapılandırır."
+
+#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
+msgid "Tor Browser"
+msgstr "Tor Browser"
+
+#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
+msgid "Anonymous Web Browser"
+msgstr "Anonim Web Tarayıcısı"
+
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
+msgid "Browse the World Wide Web without anonymity"
+msgstr "Web üzerinde anonim olmadan gez"
+
+#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
+msgid "Unsafe Web Browser"
+msgstr "Güvenli Olmayan Tarayıcı"
+
+#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
+msgid "Mount VeraCrypt encrypted file containers and devices"
+msgstr "VeraCrypt ile şifrelenmiş dosya kapsayıcı ve aygıtlarını bağla"
+
+#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
+msgid ""
+"Configure the additional software installed from your persistent storage "
+"when starting Tails"
+msgstr "Tails başlatılırken kalıcı depolama biriminizden kurulacak ek uygulamaları yapılandırın."
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:1
+msgid "WhisperBack Error Reporting"
+msgstr "WhisperBack Sorun Bildirimi"
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:2
+msgid "Send feedback via encrypted e-mail"
+msgstr "Şifreli e-posta ile geri bildirim gönderin"
+
+#: ../config/chroot_local-includes/usr/share/applications/whisperback.desktop.in.h:3
+msgid "feedback;bug;report;tails;error;"
+msgstr "geri bildirim;sorun;hara;bildirim;tails;"
+
+#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
+msgid "Tails specific tools"
+msgstr "Özel Tails araçları"
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
+msgid "To start a Root Terminal, you need to authenticate."
+msgstr "Bir Root Uç Birimi başlatmak için kimliğinizi doğrulamalısınız."
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
+msgid "Remove an additional software package"
+msgstr "Bir ek uygulama paketini kaldır"
+
+#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
+msgid ""
+"Authentication is required to remove a package from your additional software"
+" ($(command_line))"
+msgstr "Ek uygulamalarınızdan bir paket kaldırmak için kimlik doğrulaması gerekir ($(command_line))"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:18
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:56
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:693
+msgid "Administration Password"
+msgstr "Yönetici Parolası"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr "Yönetim işlemleri yapacaksanız bir yönetim parolası yazın. Yoksa güvenlik için yönetim parolası devre dışı bırakılır."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:69
+msgid "Enter an administration password"
+msgstr "Yönetim parolasını yazın"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:107
+msgid "Confirm your administration password"
+msgstr "Yönetim parolasını onaylayın"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:124
+msgid "Disable"
+msgstr "Devre Dışı Bırak"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:154
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:697
+msgid "MAC Address Spoofing"
+msgstr "MAC Adresi Yanıltması"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:170
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr "MAC adreslerini yanıltması ağ kartlarınızın (Wi-Fİ ya da kablolu) seri numarasını yerel ağlardan gizler. Bu özellik coğrafi konumunuzu gizlemenize yardımcı olacağından genellikle daha fazla güvenlik sağlar. Bununla birlikte bağlanma sorunlarına ya da şüpheli olarak algılanmanıza yol açabilir."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:212
+msgid "Spoof all MAC addresses (default)"
+msgstr "Tüm MAC adresleri yanıltılsın (varsayılan)"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:258
+msgid "Don't spoof MAC addresses"
+msgstr "MAC adresleri yanıltılmasın"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:311
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:701
+msgid "Network Configuration"
+msgstr "Ağ Yapılandırması"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:327
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr "İnternet bağlantınız sansürleniyor, süzülüyor ya da vekil sunucu kullanıyorsa, bir Tor köprüsü ya da yerel vekil sunucu yapılandırabilirsiniz. Tamamıyla çevrimdışı çalışmak için, tüm ağları devre dışı bırakabilirsiniz."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/additional_settings.ui.in:367
+msgid "Connect directly to the Tor network (default)"
+msgstr "Doğrudan Tor ağı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 biriminden yüklendi."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:168
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr "Bir ağa bağlandıktan sonra Tor köprüsü ya da yerel vekil sunucu yapılandırmasını yapacaksınız."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:220
+msgid "Welcome to Tails!"
+msgstr "Tails Uygulamasına Hoş Geldiniz!"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:254
+msgid "Language & Region"
+msgstr "Dil ve Bölge"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:290
+msgid "Default Settings"
+msgstr "Varsayılan Ayarlar"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:353
+msgid "Encrypted _Persistent Storage"
+msgstr "Şifreli _Kalıcı Depolama Birimi"
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:447
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr "Kalıcı depolama biriminin kilidini açmak için parolanızı yazın"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:495
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr "Kalıcı depolama biriminin kilidi açıldı. Yeniden kilitlemek için Tails uygulamasını yeniden başlatın."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:533
+msgid "_Additional Settings"
+msgstr "_Ek Ayarlar"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:616
+msgid "Add an additional setting"
+msgstr "Ek bir ayar ekle"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:665
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr "Çoğu durum için varsayılan ayarları kullanmak güvenlidir. Özel bir ayar eklemek için aşağıdaki \"+\" düğmesine tıklayın."
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:709
+msgid "Shutdown"
+msgstr "Kapat"
+
+#: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:720
+msgid "_Start Tails"
+msgstr "_Tails Başlat"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
+msgid "File Containers"
+msgstr "Dosya Kapsayıcıları"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
+msgid "_Add"
+msgstr "_Ekle"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
+msgid "Add a file container"
+msgstr "Bir dosya kapsayıcısı ekle"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
+msgid "Partitions and Drives"
+msgstr "Bölüm ve Sürücüler"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
+msgid ""
+"This application is not affiliated with or endorsed by the VeraCrypt project"
+" or IDRIX."
+msgstr "Bu uygulamanın VeraCrypt ya da IDRIX ile herhangi bir bağlantısı ve onlardan alınmış bir parçası yoktur."
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
+msgid "_Open"
+msgstr "_Aç"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
+msgid "Lock this volume"
+msgstr "Bu birimi kilitle"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
+msgid "_Unlock"
+msgstr "_Engellemeyi Kaldır"
+
+#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
+msgid "Detach this volume"
+msgstr "Bu birimin bağlantısını kes"
+
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:265
+msgid "Target USB stick:"
+msgstr "Hedef USB belleği:"
+
+#: ../config/chroot_local-includes/usr/share/tails-installer/tails-installer.ui.in:341
+msgid "Reinstall (delete all data)"
+msgstr "Yeniden kur (tüm verileri sil)"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:11
+msgid "Copyright © 2009-2018 tails(a)boum.org"
+msgstr "Telif Hakkı © 2009-2018 tails(a)boum.org"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:14
+msgid "https://tails.boum.org/"
+msgstr "https://tails.boum.org/"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:15
+msgid ""
+"WhisperBack - Send feedback in an encrypted mail\n"
+"Copyright (C) 2009-2018 Tails developers <tails(a)boum.org>\n"
+"\n"
+"This program is free software; you can redistribute it and/or modify\n"
+"it under the terms of the GNU General Public License as published by\n"
+"the Free Software Foundation; either version 3 of the License, or (at\n"
+"your option) any later version.\n"
+"\n"
+"This program is distributed in the hope that it will be useful, but\n"
+"WITHOUT ANY WARRANTY; without even the implied warranty of\n"
+"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n"
+"General Public License for more details.\n"
+"\n"
+"You should have received a copy of the GNU General Public License\n"
+"along with this program. If not, see <http://www.gnu.org/licenses/>.\n"
+msgstr "WhisperBack - Şifreli e-posta ile geri bildirim gönderin.\nTelif Hakkı (C) 2009-2018 Tails geliştiricileri <tails(a)boum.org>\n\nBu program özgür bir yazılımdır: Özgür Yazılım Vakfı tarafından yayımlanan\nGNU Genel Kamu Lisansı 3. sürüm ya da (isteğinize bağlı olarak) daha\nsonraki sürümlerinin hükümleri altında yeniden dağıtabilir ve/veya\ndeğiştirebilirsiniz.\n\nBu program işe yaraması umuduyla dağıtılmıştır, ancak HİÇBİR GARANTİSİ\nYOKTUR; hatta SATILABİLİRLİK ya da BİR AMACA HİZMET gibi bir garantisi de\nyoktur. Ayrıntılı bilgi almak için GNU Genel Kamu Lisansı içeriğine bakabilirsiniz.\n\nBu programın içeriğinde bir GNU Genel Kamu Lisansı kopyası da bulunmalı.\nElinizde yoksa <http://www.gnu.org/licenses/> adresine bakabilirsiniz.\n"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:122
+msgid ""
+"If you want us to encrypt messages when we respond to you, add your key ID, "
+"a link to your key, or the key as a public key block:"
+msgstr "Size yanıt verirken iletilerimizi şifrelememizi istiyorsanız, anahtarınızı, anahtar kodu, anahtarınıza yöneltilmiş bir bağlantı ya da herkese açık anahtar bloğu şeklinde ekleyin:"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:308
+msgid "Summary"
+msgstr "Özet"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:337
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:472
+msgid "Bug description"
+msgstr "Hata açıklaması"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:378
+msgid "Help:"
+msgstr "Yardım:"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:388
+msgid "Read our bug reporting guidelines."
+msgstr "Hata bildirme yönergelerini okuyun."
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:416
+msgid "Email address (if you want an answer from us)"
+msgstr "E-posta adresiniz (bizden bir yanıt almak istiyorsanız)"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:445
+msgid "optional PGP key"
+msgstr "İsteğe bağlı PGP anahtarı"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:489
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:600
+msgid "Technical details to include"
+msgstr "Katılacak teknik ayrıntılar"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:527
+msgid "headers"
+msgstr "üst bilgiler"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:575
+msgid "debugging info"
+msgstr "hata ayıklama bilgileri"
+
+#: ../config/chroot_local-includes/usr/share/whisperback/whisperback.ui.in:667
+msgid "Send"
+msgstr "Gönder"
+
+#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
+msgid "TrueCrypt/VeraCrypt container"
+msgstr "TrueCrypt/VeraCrypt kapsayıcısı"
1
0