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
April 2019
- 18 participants
- 3314 discussions

11 Apr '19
commit 62fddab153019ac7e5d7efd1d327b20aede921c3
Author: Cecylia Bocovich <cohosh(a)torproject.org>
Date: Fri Apr 5 10:40:11 2019 -0400
Moved data channel timeout to constant
---
proxy-go/snowflake.go | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/proxy-go/snowflake.go b/proxy-go/snowflake.go
index 1c24e47..50c20a5 100644
--- a/proxy-go/snowflake.go
+++ b/proxy-go/snowflake.go
@@ -26,6 +26,9 @@ const defaultBrokerURL = "https://snowflake-broker.bamsoftware.com/"
const defaultRelayURL = "wss://snowflake.bamsoftware.com/"
const defaultSTUNURL = "stun:stun.l.google.com:19302"
const pollInterval = 5 * time.Second
+//amount of time after sending an SDP answer before the proxy assumes the
+//client is not going to connect
+const dataChannelTimeout = time.Minute
var brokerURL *url.URL
var relayURL string
@@ -330,7 +333,7 @@ func makePeerConnectionFromOffer(sdp *webrtc.SessionDescription, config *webrtc.
// advanced to PeerConnectionStateConnected in this time,
// destroy the peer connection and return the token.
go func() {
- <-time.After(time.Minute)
+ <-time.After(dataChannelTimeout)
if pc.ConnectionState() != webrtc.PeerConnectionStateConnected {
log.Println("Timed out waiting for client to open data cannel.")
pc.Destroy()
1
0

[snowflake/master] Added check to see if peer connection succeeded
by cohosh@torproject.org 11 Apr '19
by cohosh@torproject.org 11 Apr '19
11 Apr '19
commit 08f5205461573bf8a6e8961540ac620865a3b45c
Author: Cecylia Bocovich <cohosh(a)torproject.org>
Date: Wed Apr 3 15:59:47 2019 -0400
Added check to see if peer connection succeeded
This is related to the proxy-go deadlock bug #25688. If a client doesn't
do anything with the SDP answer, a token will get lost. Added a timeout
after a minute that checks the PeerConnection state and destroys the
peer connection and returns a token if did not yet succeed
---
proxy-go/snowflake.go | 20 +++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/proxy-go/snowflake.go b/proxy-go/snowflake.go
index aeb9f51..1c24e47 100644
--- a/proxy-go/snowflake.go
+++ b/proxy-go/snowflake.go
@@ -307,9 +307,9 @@ func makePeerConnectionFromOffer(sdp *webrtc.SessionDescription, config *webrtc.
log.Println("Generating answer...")
answer, err := pc.CreateAnswer()
- // blocks on ICE gathering. we need to add a timeout if needed
- // not putting this in a separate go routine, because we need
- // SetLocalDescription(answer) to be called before sendAnswer
+ // blocks on ICE gathering. we need to add a timeout if needed
+ // not putting this in a separate go routine, because we need
+ // SetLocalDescription(answer) to be called before sendAnswer
if err != nil {
pc.Destroy()
return nil, err
@@ -325,6 +325,20 @@ func makePeerConnectionFromOffer(sdp *webrtc.SessionDescription, config *webrtc.
pc.Destroy()
return nil, err
}
+
+ // Set a timeout on peerconnection. If the connection state has not
+ // advanced to PeerConnectionStateConnected in this time,
+ // destroy the peer connection and return the token.
+ go func() {
+ <-time.After(time.Minute)
+ if pc.ConnectionState() != webrtc.PeerConnectionStateConnected {
+ log.Println("Timed out waiting for client to open data cannel.")
+ pc.Destroy()
+ retToken()
+ }
+
+ }()
+
return pc, nil
}
1
0

[tor-browser-build/master] Bug 28622: Update Tor Browser icon for Android
by gk@torproject.org 11 Apr '19
by gk@torproject.org 11 Apr '19
11 Apr '19
commit 300c55e5e0cf8e24f49959eababd2c7d9fc056ad
Author: Georg Koppen <gk(a)torproject.org>
Date: Wed Mar 20 11:11:39 2019 +0000
Bug 28622: Update Tor Browser icon for Android
---
projects/firefox/config | 6 +++---
projects/firefox/mozconfig-android-armv7 | 1 -
projects/firefox/mozconfig-android-x86 | 1 -
3 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/projects/firefox/config b/projects/firefox/config
index 679aaee..bd09c5f 100644
--- a/projects/firefox/config
+++ b/projects/firefox/config
@@ -12,7 +12,7 @@ var:
firefox_version: '[% c("var/firefox_platform_version") %]esr'
torbrowser_branch: 8.5
torbrowser_update_channel: alpha
- branding_directory: browser/branding/alpha
+ branding_directory: '[% IF c("var/android") %]mobile/android[% ELSE %]browser[% END %]/branding/alpha'
copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]'
deps:
- build-essential
@@ -44,14 +44,14 @@ targets:
release:
var:
torbrowser_update_channel: release
- branding_directory: browser/branding/official
+ branding_directory: '[% IF c("var/android") %]mobile/android[% ELSE %]browser[% END %]/branding/official'
nightly:
git_hash: 'tor-browser-[% c("var/firefox_version") %]-[% c("var/torbrowser_branch") %]-1'
tag_gpg_id: 0
var:
torbrowser_update_channel: default
- branding_directory: browser/branding/nightly
+ branding_directory: '[% IF c("var/android") %]mobile/android[% ELSE %]browser[% END %]/branding/nightly'
android:
var:
diff --git a/projects/firefox/mozconfig-android-armv7 b/projects/firefox/mozconfig-android-armv7
index 8cfcc60..dfa3aaf 100644
--- a/projects/firefox/mozconfig-android-armv7
+++ b/projects/firefox/mozconfig-android-armv7
@@ -11,7 +11,6 @@ ac_add_options --with-android-ndk=/var/tmp/dist/android-toolchain/android-ndk
ac_add_options --with-android-sdk=/var/tmp/dist/android-toolchain/android-sdk-linux
ac_add_options --with-gradle=/var/tmp/dist/android-toolchain/gradle/gradle-4.1/bin/gradle
ac_add_options --with-android-version=16
-ac_add_options --with-branding=mobile/android/branding/torbrowser
# Android NDK does not contain llvm-config so set clang path in options
ac_add_options --with-libclang-path=/var/tmp/dist/android-toolchain/android-ndk/arm/lib64
diff --git a/projects/firefox/mozconfig-android-x86 b/projects/firefox/mozconfig-android-x86
index 1fe0b93..defe5c3 100644
--- a/projects/firefox/mozconfig-android-x86
+++ b/projects/firefox/mozconfig-android-x86
@@ -11,7 +11,6 @@ ac_add_options --with-android-ndk=/var/tmp/dist/android-toolchain/android-ndk
ac_add_options --with-android-sdk=/var/tmp/dist/android-toolchain/android-sdk-linux
ac_add_options --with-gradle=/var/tmp/dist/android-toolchain/gradle/gradle-4.1/bin/gradle
ac_add_options --with-android-version=16
-ac_add_options --with-branding=mobile/android/branding/torbrowser
# Android NDK does not contain llvm-config so set clang path in options
ac_add_options --with-libclang-path=/var/tmp/dist/android-toolchain/android-ndk/x86/lib64
1
0
commit bfc677fcd93dc80c062a0dfe3e93115808f09480
Merge: 3ba2100 300c55e
Author: Georg Koppen <gk(a)torproject.org>
Date: Thu Apr 11 13:57:29 2019 +0000
Merge branch 'bug_28622_v2'
projects/firefox/config | 6 +++---
projects/firefox/mozconfig-android-armv7 | 1 -
projects/firefox/mozconfig-android-x86 | 1 -
3 files changed, 3 insertions(+), 5 deletions(-)
1
0

[tor-browser/tor-browser-60.6.1esr-8.5-1] Bug 28622: Update Tor Browser icon for mobile
by gk@torproject.org 11 Apr '19
by gk@torproject.org 11 Apr '19
11 Apr '19
commit 099b6fcae28c60e96e7c24fd54ca7da14b00510f
Author: Georg Koppen <gk(a)torproject.org>
Date: Thu Mar 28 15:12:37 2019 +0000
Bug 28622: Update Tor Browser icon for mobile
We follow the desktop layout by providing icons for stable, alpha, and
nightly versions in the official, alpha, and nightly branding
directories, replacing related Firefox icons.
Moreover, this patch adjusts the displayed app name as well according
to the respective Tor Browser flavor being used.
There is no drawable-mdpi directory in Fennec anymore. Thus, we won't
ship new icons for that either and we remove the old torbrowser branding
directory and contents as those are not needed for the new layout.
At some point we could do a proper clean-up of icons we actually don't
need. For instance, right now we still need to ship the
firstrun_welcome.png icon from Fennec's onboarding because otherwise
compilation breaks, even though we have our own, Fennec unrelated
onboarding. But that's part of a different ticket.
---
.../branding/{torbrowser => alpha}/configure.sh | 2 +-
mobile/android/branding/alpha/content/about.png | Bin 0 -> 30131 bytes
mobile/android/branding/alpha/content/favicon32.png | Bin 0 -> 1761 bytes
mobile/android/branding/alpha/content/favicon64.png | Bin 0 -> 4950 bytes
.../branding/{torbrowser => alpha}/content/jar.mn | 2 +-
.../{torbrowser/locales => alpha/content}/moz.build | 4 ++--
.../{torbrowser => alpha}/locales/en-US/brand.dtd | 8 ++++----
.../locales/en-US/brand.properties} | 3 ++-
.../branding/{torbrowser => alpha}/locales/jar.mn | 2 +-
.../{torbrowser/content => alpha/locales}/moz.build | 4 ++--
.../branding/{torbrowser => alpha}/moz.build | 2 +-
.../branding/alpha/res/drawable-hdpi/icon.png | Bin 0 -> 6007 bytes
.../branding/alpha/res/drawable-hdpi/large_icon.png | Bin 0 -> 15169 bytes
.../res/drawable-nodpi/figure_experience.png | Bin
.../res/drawable-nodpi/figure_network.png | Bin
.../res/drawable-nodpi/figure_onion.png | Bin
.../res/drawable-nodpi/figure_privacy.png | Bin
.../res/drawable-nodpi/figure_security.png | Bin
.../res/drawable-nodpi/figure_welcome.png | Bin
.../alpha/res/drawable-nodpi/firstrun_welcome.png | Bin 0 -> 50140 bytes
.../drawable-nodpi/home_tab_menu_strip_tor.9.png | Bin
.../branding/alpha/res/drawable-xhdpi/icon.png | Bin 0 -> 8778 bytes
.../alpha/res/drawable-xhdpi/large_icon.png | Bin 0 -> 22987 bytes
.../branding/alpha/res/drawable-xxhdpi/icon.png | Bin 0 -> 16140 bytes
.../alpha/res/drawable-xxhdpi/large_icon.png | Bin 0 -> 41886 bytes
.../branding/alpha/res/drawable-xxxhdpi/icon.png | Bin 0 -> 24683 bytes
mobile/android/branding/nightly/configure.sh | 10 ++++------
.../android/branding/nightly/content/favicon32.png | Bin 2020 -> 1928 bytes
.../android/branding/nightly/content/favicon64.png | Bin 5152 -> 5398 bytes
.../branding/nightly/res/drawable-hdpi/icon.png | Bin 6307 -> 6578 bytes
.../nightly/res/drawable-hdpi/large_icon.png | Bin 14582 -> 17085 bytes
.../res/drawable-nodpi/figure_experience.png | Bin 0 -> 44299 bytes
.../nightly/res/drawable-nodpi/figure_network.png | Bin 0 -> 70302 bytes
.../nightly/res/drawable-nodpi/figure_onion.png | Bin 0 -> 139952 bytes
.../nightly/res/drawable-nodpi/figure_privacy.png | Bin 0 -> 61696 bytes
.../nightly/res/drawable-nodpi/figure_security.png | Bin 0 -> 52021 bytes
.../nightly/res/drawable-nodpi/figure_welcome.png | Bin 0 -> 83798 bytes
.../drawable-nodpi/home_tab_menu_strip_tor.9.png | Bin 0 -> 126 bytes
.../branding/nightly/res/drawable-xhdpi/icon.png | Bin 9490 -> 9884 bytes
.../nightly/res/drawable-xhdpi/large_icon.png | Bin 20843 -> 26206 bytes
.../branding/nightly/res/drawable-xxhdpi/icon.png | Bin 16480 -> 18335 bytes
.../nightly/res/drawable-xxhdpi/large_icon.png | Bin 36066 -> 49974 bytes
.../branding/nightly/res/drawable-xxxhdpi/icon.png | Bin 24541 -> 28434 bytes
mobile/android/branding/official/configure.sh | 7 ++-----
.../android/branding/official/content/favicon32.png | Bin 2240 -> 2018 bytes
.../android/branding/official/content/favicon64.png | Bin 5324 -> 5527 bytes
.../branding/official/res/drawable-hdpi/icon.png | Bin 6136 -> 6634 bytes
.../official/res/drawable-hdpi/large_icon.png | Bin 14818 -> 17467 bytes
.../res/drawable-nodpi/figure_experience.png | Bin 0 -> 44299 bytes
.../official/res/drawable-nodpi/figure_network.png | Bin 0 -> 70302 bytes
.../official/res/drawable-nodpi/figure_onion.png | Bin 0 -> 139952 bytes
.../official/res/drawable-nodpi/figure_privacy.png | Bin 0 -> 61696 bytes
.../official/res/drawable-nodpi/figure_security.png | Bin 0 -> 52021 bytes
.../official/res/drawable-nodpi/figure_welcome.png | Bin 0 -> 83798 bytes
.../res/drawable-nodpi/firstrun_welcome.png | Bin 48391 -> 50140 bytes
.../drawable-nodpi/home_tab_menu_strip_tor.9.png | Bin 0 -> 126 bytes
.../branding/official/res/drawable-xhdpi/icon.png | Bin 8877 -> 9814 bytes
.../official/res/drawable-xhdpi/large_icon.png | Bin 21192 -> 26333 bytes
.../branding/official/res/drawable-xxhdpi/icon.png | Bin 14818 -> 17467 bytes
.../official/res/drawable-xxhdpi/large_icon.png | Bin 34638 -> 46598 bytes
.../branding/official/res/drawable-xxxhdpi/icon.png | Bin 21192 -> 26333 bytes
.../android/branding/torbrowser/content/about.png | Bin 16858 -> 0 bytes
.../branding/torbrowser/content/favicon32.png | Bin 1797 -> 0 bytes
.../branding/torbrowser/content/favicon64.png | Bin 3993 -> 0 bytes
mobile/android/branding/torbrowser/ic_launcher.zip | Bin 96525 -> 0 bytes
mobile/android/branding/torbrowser/icon.png | Bin 36456 -> 0 bytes
.../torbrowser/locales/en-US/brand.properties | 7 -------
.../branding/torbrowser/res/drawable-hdpi/icon.png | Bin 3549 -> 0 bytes
.../torbrowser/res/drawable-hdpi/large_icon.png | Bin 9558 -> 0 bytes
.../res/drawable-hdpi/launcher_widget.png | Bin 14001 -> 0 bytes
.../branding/torbrowser/res/drawable-mdpi/icon.png | Bin 2577 -> 0 bytes
.../torbrowser/res/drawable-mdpi/large_icon.png | Bin 5878 -> 0 bytes
.../res/drawable-mdpi/launcher_widget.png | Bin 7661 -> 0 bytes
.../res/drawable-nodpi/firstrun_welcome.png | Bin 48391 -> 0 bytes
.../branding/torbrowser/res/drawable-xhdpi/icon.png | Bin 5878 -> 0 bytes
.../torbrowser/res/drawable-xhdpi/large_icon.png | Bin 13553 -> 0 bytes
.../res/drawable-xhdpi/launcher_widget.png | Bin 21223 -> 0 bytes
.../torbrowser/res/drawable-xhdpi/widget_icon.png | Bin 4381 -> 0 bytes
.../torbrowser/res/drawable-xxhdpi/icon.png | Bin 9558 -> 0 bytes
.../torbrowser/res/drawable-xxhdpi/large_icon.png | Bin 13553 -> 0 bytes
.../res/drawable-xxhdpi/launcher_widget.png | Bin 32686 -> 0 bytes
.../torbrowser/res/drawable-xxxhdpi/icon.png | Bin 13553 -> 0 bytes
mobile/android/branding/torbrowser/torbrowser.png | Bin 55962 -> 0 bytes
mobile/android/branding/torbrowser/torbrowser.xcf | Bin 267775 -> 0 bytes
84 files changed, 20 insertions(+), 31 deletions(-)
diff --git a/mobile/android/branding/torbrowser/configure.sh b/mobile/android/branding/alpha/configure.sh
similarity index 100%
rename from mobile/android/branding/torbrowser/configure.sh
rename to mobile/android/branding/alpha/configure.sh
index 5e2dbfc15cf9..1fd6385c5a06 100644
--- a/mobile/android/branding/torbrowser/configure.sh
+++ b/mobile/android/branding/alpha/configure.sh
@@ -2,7 +2,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-ANDROID_PACKAGE_NAME=org.torproject.torbrowser_alpha
MOZ_APP_DISPLAYNAME="Tor Browser for Android (Alpha)"
+ANDROID_PACKAGE_NAME=org.torproject.torbrowser_alpha
MOZ_UPDATER=
MOZ_ANDROID_ANR_REPORTER=
diff --git a/mobile/android/branding/alpha/content/about.png b/mobile/android/branding/alpha/content/about.png
new file mode 100644
index 000000000000..2ca32a355fcd
Binary files /dev/null and b/mobile/android/branding/alpha/content/about.png differ
diff --git a/mobile/android/branding/alpha/content/favicon32.png b/mobile/android/branding/alpha/content/favicon32.png
new file mode 100644
index 000000000000..f3183767da37
Binary files /dev/null and b/mobile/android/branding/alpha/content/favicon32.png differ
diff --git a/mobile/android/branding/alpha/content/favicon64.png b/mobile/android/branding/alpha/content/favicon64.png
new file mode 100644
index 000000000000..56831e8ad596
Binary files /dev/null and b/mobile/android/branding/alpha/content/favicon64.png differ
diff --git a/mobile/android/branding/torbrowser/content/jar.mn b/mobile/android/branding/alpha/content/jar.mn
similarity index 87%
rename from mobile/android/branding/torbrowser/content/jar.mn
rename to mobile/android/branding/alpha/content/jar.mn
index f934ed5e4634..e49cc40416a0 100644
--- a/mobile/android/branding/torbrowser/content/jar.mn
+++ b/mobile/android/branding/alpha/content/jar.mn
@@ -3,7 +3,7 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
chrome.jar:
-% content branding %content/branding/
+% content branding %content/branding/ contentaccessible=yes
content/branding/about.png (about.png)
content/branding/favicon32.png (favicon32.png)
content/branding/favicon64.png (favicon64.png)
diff --git a/mobile/android/branding/torbrowser/locales/moz.build b/mobile/android/branding/alpha/content/moz.build
similarity index 67%
rename from mobile/android/branding/torbrowser/locales/moz.build
rename to mobile/android/branding/alpha/content/moz.build
index 3bbe6729759c..eb4454d28f88 100644
--- a/mobile/android/branding/torbrowser/locales/moz.build
+++ b/mobile/android/branding/alpha/content/moz.build
@@ -1,7 +1,7 @@
-# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-JAR_MANIFESTS += ['jar.mn']
+JAR_MANIFESTS += ['jar.mn']
\ No newline at end of file
diff --git a/mobile/android/branding/torbrowser/locales/en-US/brand.dtd b/mobile/android/branding/alpha/locales/en-US/brand.dtd
similarity index 55%
rename from mobile/android/branding/torbrowser/locales/en-US/brand.dtd
rename to mobile/android/branding/alpha/locales/en-US/brand.dtd
index 01346be36a7c..c92ea3503046 100644
--- a/mobile/android/branding/torbrowser/locales/en-US/brand.dtd
+++ b/mobile/android/branding/alpha/locales/en-US/brand.dtd
@@ -2,8 +2,8 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<!ENTITY brandShortName "Tor Browser">
-<!ENTITY brandFullName "Tor Browser for Android">
-<!ENTITY vendorShortName "The Tor Project">
+<!ENTITY brandShortName "Nightly">
+<!ENTITY brandFullName "Mozilla Nightly">
+<!ENTITY vendorShortName "Mozilla">
-<!ENTITY brandPocket "">
+<!ENTITY brandPocket "Pocket">
diff --git a/mobile/android/branding/torbrowser/locales/Makefile.in b/mobile/android/branding/alpha/locales/en-US/brand.properties
similarity index 79%
rename from mobile/android/branding/torbrowser/locales/Makefile.in
rename to mobile/android/branding/alpha/locales/en-US/brand.properties
index 82f614ecea29..d06053614729 100644
--- a/mobile/android/branding/torbrowser/locales/Makefile.in
+++ b/mobile/android/branding/alpha/locales/en-US/brand.properties
@@ -2,4 +2,5 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-DEFINES += -DAB_CD=$(AB_CD)
+brandShortName=Nightly
+brandFullName=Mozilla Nightly
diff --git a/mobile/android/branding/torbrowser/locales/jar.mn b/mobile/android/branding/alpha/locales/jar.mn
similarity index 86%
rename from mobile/android/branding/torbrowser/locales/jar.mn
rename to mobile/android/branding/alpha/locales/jar.mn
index 825dabbfb470..5a77695c91aa 100644
--- a/mobile/android/branding/torbrowser/locales/jar.mn
+++ b/mobile/android/branding/alpha/locales/jar.mn
@@ -8,4 +8,4 @@
% locale branding @AB_CD@ %locale/branding/
# Nightly branding only exists in en-US
locale/branding/brand.dtd (en-US/brand.dtd)
-* locale/branding/brand.properties (en-US/brand.properties)
+ locale/branding/brand.properties (en-US/brand.properties)
diff --git a/mobile/android/branding/torbrowser/content/moz.build b/mobile/android/branding/alpha/locales/moz.build
similarity index 67%
rename from mobile/android/branding/torbrowser/content/moz.build
rename to mobile/android/branding/alpha/locales/moz.build
index 3bbe6729759c..eb4454d28f88 100644
--- a/mobile/android/branding/torbrowser/content/moz.build
+++ b/mobile/android/branding/alpha/locales/moz.build
@@ -1,7 +1,7 @@
-# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-JAR_MANIFESTS += ['jar.mn']
+JAR_MANIFESTS += ['jar.mn']
\ No newline at end of file
diff --git a/mobile/android/branding/torbrowser/moz.build b/mobile/android/branding/alpha/moz.build
similarity index 76%
rename from mobile/android/branding/torbrowser/moz.build
rename to mobile/android/branding/alpha/moz.build
index 8f320daeae90..04084b1ace0f 100644
--- a/mobile/android/branding/torbrowser/moz.build
+++ b/mobile/android/branding/alpha/moz.build
@@ -1,4 +1,4 @@
-# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
+# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
diff --git a/mobile/android/branding/alpha/res/drawable-hdpi/icon.png b/mobile/android/branding/alpha/res/drawable-hdpi/icon.png
new file mode 100644
index 000000000000..4b8a5d2e48b6
Binary files /dev/null and b/mobile/android/branding/alpha/res/drawable-hdpi/icon.png differ
diff --git a/mobile/android/branding/alpha/res/drawable-hdpi/large_icon.png b/mobile/android/branding/alpha/res/drawable-hdpi/large_icon.png
new file mode 100644
index 000000000000..50f8777fc058
Binary files /dev/null and b/mobile/android/branding/alpha/res/drawable-hdpi/large_icon.png differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-nodpi/figure_experience.png b/mobile/android/branding/alpha/res/drawable-nodpi/figure_experience.png
similarity index 100%
rename from mobile/android/branding/torbrowser/res/drawable-nodpi/figure_experience.png
rename to mobile/android/branding/alpha/res/drawable-nodpi/figure_experience.png
diff --git a/mobile/android/branding/torbrowser/res/drawable-nodpi/figure_network.png b/mobile/android/branding/alpha/res/drawable-nodpi/figure_network.png
similarity index 100%
rename from mobile/android/branding/torbrowser/res/drawable-nodpi/figure_network.png
rename to mobile/android/branding/alpha/res/drawable-nodpi/figure_network.png
diff --git a/mobile/android/branding/torbrowser/res/drawable-nodpi/figure_onion.png b/mobile/android/branding/alpha/res/drawable-nodpi/figure_onion.png
similarity index 100%
rename from mobile/android/branding/torbrowser/res/drawable-nodpi/figure_onion.png
rename to mobile/android/branding/alpha/res/drawable-nodpi/figure_onion.png
diff --git a/mobile/android/branding/torbrowser/res/drawable-nodpi/figure_privacy.png b/mobile/android/branding/alpha/res/drawable-nodpi/figure_privacy.png
similarity index 100%
rename from mobile/android/branding/torbrowser/res/drawable-nodpi/figure_privacy.png
rename to mobile/android/branding/alpha/res/drawable-nodpi/figure_privacy.png
diff --git a/mobile/android/branding/torbrowser/res/drawable-nodpi/figure_security.png b/mobile/android/branding/alpha/res/drawable-nodpi/figure_security.png
similarity index 100%
rename from mobile/android/branding/torbrowser/res/drawable-nodpi/figure_security.png
rename to mobile/android/branding/alpha/res/drawable-nodpi/figure_security.png
diff --git a/mobile/android/branding/torbrowser/res/drawable-nodpi/figure_welcome.png b/mobile/android/branding/alpha/res/drawable-nodpi/figure_welcome.png
similarity index 100%
rename from mobile/android/branding/torbrowser/res/drawable-nodpi/figure_welcome.png
rename to mobile/android/branding/alpha/res/drawable-nodpi/figure_welcome.png
diff --git a/mobile/android/branding/alpha/res/drawable-nodpi/firstrun_welcome.png b/mobile/android/branding/alpha/res/drawable-nodpi/firstrun_welcome.png
new file mode 100644
index 000000000000..5c9093331cff
Binary files /dev/null and b/mobile/android/branding/alpha/res/drawable-nodpi/firstrun_welcome.png differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-nodpi/home_tab_menu_strip_tor.9.png b/mobile/android/branding/alpha/res/drawable-nodpi/home_tab_menu_strip_tor.9.png
similarity index 100%
rename from mobile/android/branding/torbrowser/res/drawable-nodpi/home_tab_menu_strip_tor.9.png
rename to mobile/android/branding/alpha/res/drawable-nodpi/home_tab_menu_strip_tor.9.png
diff --git a/mobile/android/branding/alpha/res/drawable-xhdpi/icon.png b/mobile/android/branding/alpha/res/drawable-xhdpi/icon.png
new file mode 100644
index 000000000000..1bae7fa5fe70
Binary files /dev/null and b/mobile/android/branding/alpha/res/drawable-xhdpi/icon.png differ
diff --git a/mobile/android/branding/alpha/res/drawable-xhdpi/large_icon.png b/mobile/android/branding/alpha/res/drawable-xhdpi/large_icon.png
new file mode 100644
index 000000000000..371a1734d87c
Binary files /dev/null and b/mobile/android/branding/alpha/res/drawable-xhdpi/large_icon.png differ
diff --git a/mobile/android/branding/alpha/res/drawable-xxhdpi/icon.png b/mobile/android/branding/alpha/res/drawable-xxhdpi/icon.png
new file mode 100644
index 000000000000..df944c11d700
Binary files /dev/null and b/mobile/android/branding/alpha/res/drawable-xxhdpi/icon.png differ
diff --git a/mobile/android/branding/alpha/res/drawable-xxhdpi/large_icon.png b/mobile/android/branding/alpha/res/drawable-xxhdpi/large_icon.png
new file mode 100644
index 000000000000..5e9bc0036a0d
Binary files /dev/null and b/mobile/android/branding/alpha/res/drawable-xxhdpi/large_icon.png differ
diff --git a/mobile/android/branding/alpha/res/drawable-xxxhdpi/icon.png b/mobile/android/branding/alpha/res/drawable-xxxhdpi/icon.png
new file mode 100644
index 000000000000..88005f727968
Binary files /dev/null and b/mobile/android/branding/alpha/res/drawable-xxxhdpi/icon.png differ
diff --git a/mobile/android/branding/nightly/configure.sh b/mobile/android/branding/nightly/configure.sh
index 69ef1f6b00d0..47761caf31f4 100644
--- a/mobile/android/branding/nightly/configure.sh
+++ b/mobile/android/branding/nightly/configure.sh
@@ -2,9 +2,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-MOZ_APP_DISPLAYNAME="Firefox Nightly"
-MOZ_UPDATER=1
-MOZ_ANDROID_ANR_REPORTER=1
-MOZ_ANDROID_SHARED_ID=org.mozilla.fennec.sharedID
-MOZ_ANDROID_GCM_SENDERID=965234145045
-MOZ_MMA_GCM_SENDERID=242693410970
\ No newline at end of file
+MOZ_APP_DISPLAYNAME="Tor Browser for Android (Nightly)"
+ANDROID_PACKAGE_NAME=org.torproject.torbrowser_nightly
+MOZ_UPDATER=
+MOZ_ANDROID_ANR_REPORTER=
diff --git a/mobile/android/branding/nightly/content/favicon32.png b/mobile/android/branding/nightly/content/favicon32.png
index 23830c03fcd5..1331164c81f0 100644
Binary files a/mobile/android/branding/nightly/content/favicon32.png and b/mobile/android/branding/nightly/content/favicon32.png differ
diff --git a/mobile/android/branding/nightly/content/favicon64.png b/mobile/android/branding/nightly/content/favicon64.png
index d2214dcefe9a..eae8d730594e 100644
Binary files a/mobile/android/branding/nightly/content/favicon64.png and b/mobile/android/branding/nightly/content/favicon64.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-hdpi/icon.png b/mobile/android/branding/nightly/res/drawable-hdpi/icon.png
index 68e024ad268a..756d37856e19 100644
Binary files a/mobile/android/branding/nightly/res/drawable-hdpi/icon.png and b/mobile/android/branding/nightly/res/drawable-hdpi/icon.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-hdpi/large_icon.png b/mobile/android/branding/nightly/res/drawable-hdpi/large_icon.png
index 2ffc0ca909b9..6ce99c3a2124 100644
Binary files a/mobile/android/branding/nightly/res/drawable-hdpi/large_icon.png and b/mobile/android/branding/nightly/res/drawable-hdpi/large_icon.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-nodpi/figure_experience.png b/mobile/android/branding/nightly/res/drawable-nodpi/figure_experience.png
new file mode 100644
index 000000000000..2eeeb1ccbd7d
Binary files /dev/null and b/mobile/android/branding/nightly/res/drawable-nodpi/figure_experience.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-nodpi/figure_network.png b/mobile/android/branding/nightly/res/drawable-nodpi/figure_network.png
new file mode 100644
index 000000000000..62bf5e2d144d
Binary files /dev/null and b/mobile/android/branding/nightly/res/drawable-nodpi/figure_network.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-nodpi/figure_onion.png b/mobile/android/branding/nightly/res/drawable-nodpi/figure_onion.png
new file mode 100644
index 000000000000..cbd8236f82e9
Binary files /dev/null and b/mobile/android/branding/nightly/res/drawable-nodpi/figure_onion.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-nodpi/figure_privacy.png b/mobile/android/branding/nightly/res/drawable-nodpi/figure_privacy.png
new file mode 100644
index 000000000000..d9d56229aa8a
Binary files /dev/null and b/mobile/android/branding/nightly/res/drawable-nodpi/figure_privacy.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-nodpi/figure_security.png b/mobile/android/branding/nightly/res/drawable-nodpi/figure_security.png
new file mode 100644
index 000000000000..0a0d47f75370
Binary files /dev/null and b/mobile/android/branding/nightly/res/drawable-nodpi/figure_security.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-nodpi/figure_welcome.png b/mobile/android/branding/nightly/res/drawable-nodpi/figure_welcome.png
new file mode 100644
index 000000000000..274dea5c31a6
Binary files /dev/null and b/mobile/android/branding/nightly/res/drawable-nodpi/figure_welcome.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-nodpi/home_tab_menu_strip_tor.9.png b/mobile/android/branding/nightly/res/drawable-nodpi/home_tab_menu_strip_tor.9.png
new file mode 100644
index 000000000000..a92420d11b8e
Binary files /dev/null and b/mobile/android/branding/nightly/res/drawable-nodpi/home_tab_menu_strip_tor.9.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-xhdpi/icon.png b/mobile/android/branding/nightly/res/drawable-xhdpi/icon.png
index 0b5e1a175255..03fe48da2707 100644
Binary files a/mobile/android/branding/nightly/res/drawable-xhdpi/icon.png and b/mobile/android/branding/nightly/res/drawable-xhdpi/icon.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-xhdpi/large_icon.png b/mobile/android/branding/nightly/res/drawable-xhdpi/large_icon.png
index 12f87594365c..f54c241c56eb 100644
Binary files a/mobile/android/branding/nightly/res/drawable-xhdpi/large_icon.png and b/mobile/android/branding/nightly/res/drawable-xhdpi/large_icon.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-xxhdpi/icon.png b/mobile/android/branding/nightly/res/drawable-xxhdpi/icon.png
index 1ee12f2419eb..1288d3f106b0 100644
Binary files a/mobile/android/branding/nightly/res/drawable-xxhdpi/icon.png and b/mobile/android/branding/nightly/res/drawable-xxhdpi/icon.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-xxhdpi/large_icon.png b/mobile/android/branding/nightly/res/drawable-xxhdpi/large_icon.png
index 37ac9d067e92..f5ffff4cd6b1 100644
Binary files a/mobile/android/branding/nightly/res/drawable-xxhdpi/large_icon.png and b/mobile/android/branding/nightly/res/drawable-xxhdpi/large_icon.png differ
diff --git a/mobile/android/branding/nightly/res/drawable-xxxhdpi/icon.png b/mobile/android/branding/nightly/res/drawable-xxxhdpi/icon.png
index 9128552b390e..d7d3f99c1d2c 100644
Binary files a/mobile/android/branding/nightly/res/drawable-xxxhdpi/icon.png and b/mobile/android/branding/nightly/res/drawable-xxxhdpi/icon.png differ
diff --git a/mobile/android/branding/official/configure.sh b/mobile/android/branding/official/configure.sh
index 5687537d358e..aa8b56336ccc 100644
--- a/mobile/android/branding/official/configure.sh
+++ b/mobile/android/branding/official/configure.sh
@@ -2,10 +2,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-MOZ_APP_DISPLAYNAME=Firefox
-ANDROID_PACKAGE_NAME=org.mozilla.firefox
+MOZ_APP_DISPLAYNAME="Tor Browser for Android"
+ANDROID_PACKAGE_NAME=org.torproject.torbrowser
MOZ_UPDATER=
MOZ_ANDROID_ANR_REPORTER=
-MOZ_ANDROID_SHARED_ID=org.mozilla.firefox.sharedID
-MOZ_ANDROID_GCM_SENDERID=965234145045
-MOZ_MMA_GCM_SENDERID=242693410970
\ No newline at end of file
diff --git a/mobile/android/branding/official/content/favicon32.png b/mobile/android/branding/official/content/favicon32.png
index b6eb66068725..06992a00bc3e 100644
Binary files a/mobile/android/branding/official/content/favicon32.png and b/mobile/android/branding/official/content/favicon32.png differ
diff --git a/mobile/android/branding/official/content/favicon64.png b/mobile/android/branding/official/content/favicon64.png
index 1a8fc1ad0a65..4ef62a9617df 100644
Binary files a/mobile/android/branding/official/content/favicon64.png and b/mobile/android/branding/official/content/favicon64.png differ
diff --git a/mobile/android/branding/official/res/drawable-hdpi/icon.png b/mobile/android/branding/official/res/drawable-hdpi/icon.png
index 370202c13fc7..8211871aae67 100644
Binary files a/mobile/android/branding/official/res/drawable-hdpi/icon.png and b/mobile/android/branding/official/res/drawable-hdpi/icon.png differ
diff --git a/mobile/android/branding/official/res/drawable-hdpi/large_icon.png b/mobile/android/branding/official/res/drawable-hdpi/large_icon.png
index 1815e0cabea9..bb81f8772b6d 100644
Binary files a/mobile/android/branding/official/res/drawable-hdpi/large_icon.png and b/mobile/android/branding/official/res/drawable-hdpi/large_icon.png differ
diff --git a/mobile/android/branding/official/res/drawable-nodpi/figure_experience.png b/mobile/android/branding/official/res/drawable-nodpi/figure_experience.png
new file mode 100644
index 000000000000..2eeeb1ccbd7d
Binary files /dev/null and b/mobile/android/branding/official/res/drawable-nodpi/figure_experience.png differ
diff --git a/mobile/android/branding/official/res/drawable-nodpi/figure_network.png b/mobile/android/branding/official/res/drawable-nodpi/figure_network.png
new file mode 100644
index 000000000000..62bf5e2d144d
Binary files /dev/null and b/mobile/android/branding/official/res/drawable-nodpi/figure_network.png differ
diff --git a/mobile/android/branding/official/res/drawable-nodpi/figure_onion.png b/mobile/android/branding/official/res/drawable-nodpi/figure_onion.png
new file mode 100644
index 000000000000..cbd8236f82e9
Binary files /dev/null and b/mobile/android/branding/official/res/drawable-nodpi/figure_onion.png differ
diff --git a/mobile/android/branding/official/res/drawable-nodpi/figure_privacy.png b/mobile/android/branding/official/res/drawable-nodpi/figure_privacy.png
new file mode 100644
index 000000000000..d9d56229aa8a
Binary files /dev/null and b/mobile/android/branding/official/res/drawable-nodpi/figure_privacy.png differ
diff --git a/mobile/android/branding/official/res/drawable-nodpi/figure_security.png b/mobile/android/branding/official/res/drawable-nodpi/figure_security.png
new file mode 100644
index 000000000000..0a0d47f75370
Binary files /dev/null and b/mobile/android/branding/official/res/drawable-nodpi/figure_security.png differ
diff --git a/mobile/android/branding/official/res/drawable-nodpi/figure_welcome.png b/mobile/android/branding/official/res/drawable-nodpi/figure_welcome.png
new file mode 100644
index 000000000000..274dea5c31a6
Binary files /dev/null and b/mobile/android/branding/official/res/drawable-nodpi/figure_welcome.png differ
diff --git a/mobile/android/branding/official/res/drawable-nodpi/firstrun_welcome.png b/mobile/android/branding/official/res/drawable-nodpi/firstrun_welcome.png
index e4e84187e891..5c9093331cff 100644
Binary files a/mobile/android/branding/official/res/drawable-nodpi/firstrun_welcome.png and b/mobile/android/branding/official/res/drawable-nodpi/firstrun_welcome.png differ
diff --git a/mobile/android/branding/official/res/drawable-nodpi/home_tab_menu_strip_tor.9.png b/mobile/android/branding/official/res/drawable-nodpi/home_tab_menu_strip_tor.9.png
new file mode 100644
index 000000000000..a92420d11b8e
Binary files /dev/null and b/mobile/android/branding/official/res/drawable-nodpi/home_tab_menu_strip_tor.9.png differ
diff --git a/mobile/android/branding/official/res/drawable-xhdpi/icon.png b/mobile/android/branding/official/res/drawable-xhdpi/icon.png
index 6da9415761f0..39195e143042 100644
Binary files a/mobile/android/branding/official/res/drawable-xhdpi/icon.png and b/mobile/android/branding/official/res/drawable-xhdpi/icon.png differ
diff --git a/mobile/android/branding/official/res/drawable-xhdpi/large_icon.png b/mobile/android/branding/official/res/drawable-xhdpi/large_icon.png
index 3094479498bb..25d490e2fc0e 100644
Binary files a/mobile/android/branding/official/res/drawable-xhdpi/large_icon.png and b/mobile/android/branding/official/res/drawable-xhdpi/large_icon.png differ
diff --git a/mobile/android/branding/official/res/drawable-xxhdpi/icon.png b/mobile/android/branding/official/res/drawable-xxhdpi/icon.png
index 1815e0cabea9..bb81f8772b6d 100644
Binary files a/mobile/android/branding/official/res/drawable-xxhdpi/icon.png and b/mobile/android/branding/official/res/drawable-xxhdpi/icon.png differ
diff --git a/mobile/android/branding/official/res/drawable-xxhdpi/large_icon.png b/mobile/android/branding/official/res/drawable-xxhdpi/large_icon.png
index 0e2f73cb2ad4..d03e22132ffb 100644
Binary files a/mobile/android/branding/official/res/drawable-xxhdpi/large_icon.png and b/mobile/android/branding/official/res/drawable-xxhdpi/large_icon.png differ
diff --git a/mobile/android/branding/official/res/drawable-xxxhdpi/icon.png b/mobile/android/branding/official/res/drawable-xxxhdpi/icon.png
index 3094479498bb..25d490e2fc0e 100644
Binary files a/mobile/android/branding/official/res/drawable-xxxhdpi/icon.png and b/mobile/android/branding/official/res/drawable-xxxhdpi/icon.png differ
diff --git a/mobile/android/branding/torbrowser/content/about.png b/mobile/android/branding/torbrowser/content/about.png
deleted file mode 100644
index 3819f6337a17..000000000000
Binary files a/mobile/android/branding/torbrowser/content/about.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/content/favicon32.png b/mobile/android/branding/torbrowser/content/favicon32.png
deleted file mode 100644
index 0c414d6ca46b..000000000000
Binary files a/mobile/android/branding/torbrowser/content/favicon32.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/content/favicon64.png b/mobile/android/branding/torbrowser/content/favicon64.png
deleted file mode 100644
index bfc9e05538c6..000000000000
Binary files a/mobile/android/branding/torbrowser/content/favicon64.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/ic_launcher.zip b/mobile/android/branding/torbrowser/ic_launcher.zip
deleted file mode 100644
index 69601344519e..000000000000
Binary files a/mobile/android/branding/torbrowser/ic_launcher.zip and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/icon.png b/mobile/android/branding/torbrowser/icon.png
deleted file mode 100644
index 6e0051b95a32..000000000000
Binary files a/mobile/android/branding/torbrowser/icon.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/locales/en-US/brand.properties b/mobile/android/branding/torbrowser/locales/en-US/brand.properties
deleted file mode 100644
index 3015d2376518..000000000000
--- a/mobile/android/branding/torbrowser/locales/en-US/brand.properties
+++ /dev/null
@@ -1,7 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-#filter
-brandShortName=Tor Browser
-brandFullName=Tor Browser for Android
diff --git a/mobile/android/branding/torbrowser/res/drawable-hdpi/icon.png b/mobile/android/branding/torbrowser/res/drawable-hdpi/icon.png
deleted file mode 100644
index 2a1dc9aea83d..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-hdpi/icon.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-hdpi/large_icon.png b/mobile/android/branding/torbrowser/res/drawable-hdpi/large_icon.png
deleted file mode 100644
index 946e03e42d0b..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-hdpi/large_icon.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-hdpi/launcher_widget.png b/mobile/android/branding/torbrowser/res/drawable-hdpi/launcher_widget.png
deleted file mode 100644
index 4d7dc659a565..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-hdpi/launcher_widget.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-mdpi/icon.png b/mobile/android/branding/torbrowser/res/drawable-mdpi/icon.png
deleted file mode 100644
index 78ace1c9b6d3..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-mdpi/icon.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-mdpi/large_icon.png b/mobile/android/branding/torbrowser/res/drawable-mdpi/large_icon.png
deleted file mode 100644
index 8e45a100870b..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-mdpi/large_icon.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-mdpi/launcher_widget.png b/mobile/android/branding/torbrowser/res/drawable-mdpi/launcher_widget.png
deleted file mode 100644
index 23d966478fdf..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-mdpi/launcher_widget.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-nodpi/firstrun_welcome.png b/mobile/android/branding/torbrowser/res/drawable-nodpi/firstrun_welcome.png
deleted file mode 100644
index e4e84187e891..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-nodpi/firstrun_welcome.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-xhdpi/icon.png b/mobile/android/branding/torbrowser/res/drawable-xhdpi/icon.png
deleted file mode 100644
index 8e45a100870b..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-xhdpi/icon.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-xhdpi/large_icon.png b/mobile/android/branding/torbrowser/res/drawable-xhdpi/large_icon.png
deleted file mode 100644
index d3a4929e7503..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-xhdpi/large_icon.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-xhdpi/launcher_widget.png b/mobile/android/branding/torbrowser/res/drawable-xhdpi/launcher_widget.png
deleted file mode 100644
index beff04f1fc1d..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-xhdpi/launcher_widget.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-xhdpi/widget_icon.png b/mobile/android/branding/torbrowser/res/drawable-xhdpi/widget_icon.png
deleted file mode 100644
index ef76eb342035..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-xhdpi/widget_icon.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-xxhdpi/icon.png b/mobile/android/branding/torbrowser/res/drawable-xxhdpi/icon.png
deleted file mode 100644
index 946e03e42d0b..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-xxhdpi/icon.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-xxhdpi/large_icon.png b/mobile/android/branding/torbrowser/res/drawable-xxhdpi/large_icon.png
deleted file mode 100644
index d3a4929e7503..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-xxhdpi/large_icon.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-xxhdpi/launcher_widget.png b/mobile/android/branding/torbrowser/res/drawable-xxhdpi/launcher_widget.png
deleted file mode 100644
index 279af3fff38b..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-xxhdpi/launcher_widget.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/res/drawable-xxxhdpi/icon.png b/mobile/android/branding/torbrowser/res/drawable-xxxhdpi/icon.png
deleted file mode 100644
index d3a4929e7503..000000000000
Binary files a/mobile/android/branding/torbrowser/res/drawable-xxxhdpi/icon.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/torbrowser.png b/mobile/android/branding/torbrowser/torbrowser.png
deleted file mode 100644
index 6c6d906aa044..000000000000
Binary files a/mobile/android/branding/torbrowser/torbrowser.png and /dev/null differ
diff --git a/mobile/android/branding/torbrowser/torbrowser.xcf b/mobile/android/branding/torbrowser/torbrowser.xcf
deleted file mode 100644
index 2a8f829c3c34..000000000000
Binary files a/mobile/android/branding/torbrowser/torbrowser.xcf and /dev/null differ
1
0

[tor-browser/tor-browser-60.6.1esr-8.5-1] fixup! Bug 28622: Update Tor Browser icon for mobile
by gk@torproject.org 11 Apr '19
by gk@torproject.org 11 Apr '19
11 Apr '19
commit 80e82b14804f677dd89a63a79d42f420ab9ccb7d
Author: Georg Koppen <gk(a)torproject.org>
Date: Wed Apr 10 20:29:15 2019 +0000
fixup! Bug 28622: Update Tor Browser icon for mobile
---
mobile/android/branding/alpha/locales/en-US/brand.dtd | 8 ++++----
mobile/android/branding/alpha/locales/en-US/brand.properties | 4 ++--
mobile/android/branding/nightly/locales/en-US/brand.dtd | 8 ++++----
mobile/android/branding/nightly/locales/en-US/brand.properties | 4 ++--
mobile/android/branding/official/locales/en-US/brand.dtd | 8 ++++----
mobile/android/branding/official/locales/en-US/brand.properties | 4 ++--
6 files changed, 18 insertions(+), 18 deletions(-)
diff --git a/mobile/android/branding/alpha/locales/en-US/brand.dtd b/mobile/android/branding/alpha/locales/en-US/brand.dtd
index c92ea3503046..01346be36a7c 100644
--- a/mobile/android/branding/alpha/locales/en-US/brand.dtd
+++ b/mobile/android/branding/alpha/locales/en-US/brand.dtd
@@ -2,8 +2,8 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<!ENTITY brandShortName "Nightly">
-<!ENTITY brandFullName "Mozilla Nightly">
-<!ENTITY vendorShortName "Mozilla">
+<!ENTITY brandShortName "Tor Browser">
+<!ENTITY brandFullName "Tor Browser for Android">
+<!ENTITY vendorShortName "The Tor Project">
-<!ENTITY brandPocket "Pocket">
+<!ENTITY brandPocket "">
diff --git a/mobile/android/branding/alpha/locales/en-US/brand.properties b/mobile/android/branding/alpha/locales/en-US/brand.properties
index d06053614729..12ebf8a5d205 100644
--- a/mobile/android/branding/alpha/locales/en-US/brand.properties
+++ b/mobile/android/branding/alpha/locales/en-US/brand.properties
@@ -2,5 +2,5 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-brandShortName=Nightly
-brandFullName=Mozilla Nightly
+brandShortName=Tor Browser
+brandFullName=Tor Browser for Android
diff --git a/mobile/android/branding/nightly/locales/en-US/brand.dtd b/mobile/android/branding/nightly/locales/en-US/brand.dtd
index c92ea3503046..01346be36a7c 100644
--- a/mobile/android/branding/nightly/locales/en-US/brand.dtd
+++ b/mobile/android/branding/nightly/locales/en-US/brand.dtd
@@ -2,8 +2,8 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<!ENTITY brandShortName "Nightly">
-<!ENTITY brandFullName "Mozilla Nightly">
-<!ENTITY vendorShortName "Mozilla">
+<!ENTITY brandShortName "Tor Browser">
+<!ENTITY brandFullName "Tor Browser for Android">
+<!ENTITY vendorShortName "The Tor Project">
-<!ENTITY brandPocket "Pocket">
+<!ENTITY brandPocket "">
diff --git a/mobile/android/branding/nightly/locales/en-US/brand.properties b/mobile/android/branding/nightly/locales/en-US/brand.properties
index d06053614729..12ebf8a5d205 100644
--- a/mobile/android/branding/nightly/locales/en-US/brand.properties
+++ b/mobile/android/branding/nightly/locales/en-US/brand.properties
@@ -2,5 +2,5 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-brandShortName=Nightly
-brandFullName=Mozilla Nightly
+brandShortName=Tor Browser
+brandFullName=Tor Browser for Android
diff --git a/mobile/android/branding/official/locales/en-US/brand.dtd b/mobile/android/branding/official/locales/en-US/brand.dtd
index 59009128a273..01346be36a7c 100644
--- a/mobile/android/branding/official/locales/en-US/brand.dtd
+++ b/mobile/android/branding/official/locales/en-US/brand.dtd
@@ -2,8 +2,8 @@
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
-<!ENTITY brandShortName "Firefox">
-<!ENTITY brandFullName "Mozilla Firefox">
-<!ENTITY vendorShortName "Mozilla">
+<!ENTITY brandShortName "Tor Browser">
+<!ENTITY brandFullName "Tor Browser for Android">
+<!ENTITY vendorShortName "The Tor Project">
-<!ENTITY brandPocket "Pocket">
+<!ENTITY brandPocket "">
diff --git a/mobile/android/branding/official/locales/en-US/brand.properties b/mobile/android/branding/official/locales/en-US/brand.properties
index d0203e35a492..12ebf8a5d205 100644
--- a/mobile/android/branding/official/locales/en-US/brand.properties
+++ b/mobile/android/branding/official/locales/en-US/brand.properties
@@ -2,5 +2,5 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-brandShortName=Firefox
-brandFullName=Mozilla Firefox
+brandShortName=Tor Browser
+brandFullName=Tor Browser for Android
1
0

[tor-browser/tor-browser-60.6.1esr-8.5-1] Bug 29238 - Prevent crash on Android after update
by gk@torproject.org 11 Apr '19
by gk@torproject.org 11 Apr '19
11 Apr '19
commit bfa54eb8ac5dc923527f07e48d0a390314991fd3
Author: Matthew Finkel <Matthew.Finkel(a)gmail.com>
Date: Fri Mar 22 16:24:09 2019 +0000
Bug 29238 - Prevent crash on Android after update
---
mobile/android/base/AndroidManifest.xml.in | 8 --------
1 file changed, 8 deletions(-)
diff --git a/mobile/android/base/AndroidManifest.xml.in b/mobile/android/base/AndroidManifest.xml.in
index 01b23d22a19b..c9a65da1ea1f 100644
--- a/mobile/android/base/AndroidManifest.xml.in
+++ b/mobile/android/base/AndroidManifest.xml.in
@@ -415,14 +415,6 @@
android:name="org.mozilla.gecko.cleanup.FileCleanupService">
</service>
- <receiver
- android:name="org.mozilla.gecko.PackageReplacedReceiver"
- android:exported="false">
- <intent-filter>
- <action android:name="android.intent.action.MY_PACKAGE_REPLACED"></action>
- </intent-filter>
- </receiver>
-
<service
android:name="org.mozilla.gecko.telemetry.TelemetryUploadService"
android:exported="false"/>
1
0

[translation/support-portal] Update translations for support-portal
by translation@torproject.org 11 Apr '19
by translation@torproject.org 11 Apr '19
11 Apr '19
commit bf44af86672752ff7c10ab2a4635cd5c51775e89
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Apr 11 13:50:58 2019 +0000
Update translations for support-portal
---
contents+el.po | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/contents+el.po b/contents+el.po
index 876ec3c07..dccf4b474 100644
--- a/contents+el.po
+++ b/contents+el.po
@@ -1096,6 +1096,8 @@ msgid ""
"If you need other bridges, you can get them at our [Bridges "
"website](https://bridges.torproject.org/)."
msgstr ""
+"Αν χρειάζεστε άλλες γέφυρες, μπορείτε να τις αποκτήσετε στην [Ιστοσελίδα "
+"Γεφύρων](https://bridges.torproject.org/) μας."
#: https//support.torproject.org/tbb/tbb-19/
#: (content/tbb/tbb-19/contents+en.lrquestion.description)
@@ -1190,6 +1192,9 @@ msgid ""
"If this doesn't fix the problem, see the Troubleshooting page on the [Tor "
"Browser manual](https://tb-manual.torproject.org/en-US/troubleshooting)."
msgstr ""
+"Αν αυτό δεν διορθώσει το πρόβλημα, ανατρέξτε στη σελίδα αντιμετώπισης "
+"προβλημάτων στο [εγχειρίδιο του Tor Browser](https://tb-"
+"manual.torproject.org/el/troubleshooting)"
#: https//support.torproject.org/tbb/tbb-21/
#: (content/tbb/tbb-21/contents+en.lrquestion.title)
1
0

[translation/support-portal] Update translations for support-portal
by translation@torproject.org 11 Apr '19
by translation@torproject.org 11 Apr '19
11 Apr '19
commit e3fa1cc67099fa4fb8574cc794710f3a82f6f116
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Apr 11 13:20:52 2019 +0000
Update translations for support-portal
---
contents+el.po | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/contents+el.po b/contents+el.po
index 55e968354..876ec3c07 100644
--- a/contents+el.po
+++ b/contents+el.po
@@ -148,6 +148,10 @@ msgid ""
"Browser](https://www.torproject.org/download) and then using it to navigate "
"to the blocked site will allow access."
msgstr ""
+"Τις περισσότερες φορές, απλώς κατεβάζοντας το [Tor "
+"Browser](https://www.torproject.org/download) και χρησιμοποιώντας το για να "
+"επισκεφτούν την μπλοκαρισμένη ιστοσελίδα θα τους επιτρέψει να έχουν "
+"πρόσβαση."
#: https//support.torproject.org/faq/faq-2/
#: (content/faq/faq-2/contents+en.lrquestion.description)
@@ -440,7 +444,7 @@ msgstr ""
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid "gpg.exe --fingerprint 0x4E2C6E8793298290"
-msgstr ""
+msgstr "gpg.exe --fingerprint 0x4E2C6E8793298290"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -617,11 +621,12 @@ msgstr ""
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid "gpg --keyserver pool.sks-keyservers.net --recv-keys 0x4E2C6E8793298290"
msgstr ""
+"gpg --keyserver pool.sks-keyservers.net --recv-keys 0x4E2C6E8793298290"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
msgid "gpg --fingerprint 0x4E2C6E8793298290"
-msgstr ""
+msgstr "gpg --fingerprint 0x4E2C6E8793298290"
#: https//support.torproject.org/tbb/how-to-verify-signature/
#: (content/tbb/how-to-verify-signature/contents+en.lrquestion.description)
@@ -1100,6 +1105,8 @@ msgid ""
"For more information about bridges, see the [Tor Browser manual](https://tb-"
"manual.torproject.org/bridges)"
msgstr ""
+"Για περισσότερες πληροφορίες σχετικά με τις γέφυρες, δείτε το [εγχειρίδιο "
+"του Tor Browser](https://tb-manual.torproject.org/bridges)."
#: https//support.torproject.org/tbb/tbb-2/
#: (content/tbb/tbb-2/contents+en.lrquestion.title)
1
0

[translation/donatepages-messagespot_completed] Update translations for donatepages-messagespot_completed
by translation@torproject.org 11 Apr '19
by translation@torproject.org 11 Apr '19
11 Apr '19
commit 638977b474160c2c5eecd01361bd496e8d045bdd
Author: Translation commit bot <translation(a)torproject.org>
Date: Thu Apr 11 13:15:44 2019 +0000
Update translations for donatepages-messagespot_completed
---
locale/ka/LC_MESSAGES/messages.po | 1527 +++++++++++++++++++++----------------
1 file changed, 865 insertions(+), 662 deletions(-)
diff --git a/locale/ka/LC_MESSAGES/messages.po b/locale/ka/LC_MESSAGES/messages.po
index 3ef19b4a6..8834cc519 100644
--- a/locale/ka/LC_MESSAGES/messages.po
+++ b/locale/ka/LC_MESSAGES/messages.po
@@ -1,7 +1,7 @@
# Translators:
# IDRASSI Mounir <mounir.idrassi(a)idrix.fr>, 2018
-# Giovanni Pellerano <giovanni.pellerano(a)evilaliv3.org>, 2018
# erinm, 2018
+# Giovanni Pellerano <giovanni.pellerano(a)evilaliv3.org>, 2019
# Georgianization, 2019
#
msgid ""
@@ -11,22 +11,406 @@ msgstr ""
"Language: ka\n"
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:34
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:35
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:35
+#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:35
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:35
+msgid "Support the Tor Project Today!"
+msgstr "მხარი დაუჭირეთ Tor-პროექტს დღესვე!"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:48
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:71
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:162
+#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:25
+#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:48
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:48
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:71
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:647
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:476
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:602
+#: tmp/cache_locale/03/03963079e40d8bba608baf2120533e119d90cb2cfc82fee9e293708eb548373f.php:75
+msgid "Tor: Strength in Numbers"
+msgstr "Tor: სიძლიერე ციფრებშია"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:52
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:75
+#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:29
+#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:52
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:52
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:75
+msgid "Donate to the Tor Project and protect the privacy of millions."
+msgstr ""
+"გაიღეთ შემოწირულობა Tor-პროექტისთვის და უზრუნველყავით მილიონობით ადამიანის "
+"პირადი მონაცემების უსაფრთხოება."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:54
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:77
+#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:31
+#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:54
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:54
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:77
+msgid "Anonymity loves company."
+msgstr "ვინაობის გამჟღავნებისგან დაცვა საჭიროებს ხალხის სიმრავლეს."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:63
+#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:40
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:63
+msgid "summary_large_image"
+msgstr "შეჯამება_დიდი_სურათი"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:67
+#: tmp/cache_locale/eb/eba664d7c34b5e9dc599e5803f583f25e99c16ec96f31536baeeabb9c42131a3.php:44
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:67
+msgid "@torproject"
+msgstr "@torproject"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:101
+msgid ""
+"We need monthly donors - Defenders of Privacy - to remain vigilant in our "
+"mission to provide tools that protect peoples privacy and identity online. "
+"Defenders of Privacy pledge a modest amount each month - creating a steady, "
+"reliable source of funds to help us be nimble in an ever-changing privacy "
+"landscape."
+msgstr ""
+"ჩვენ მეტად ვსაჭიროებთ ყოველთვიურად შემომწირველებს – პირადულობის გუშაგებს – "
+"რომ მუდამ ფხიზლად ვიყოთ ჩვენი მიზნის, ხალხისთვის სათანადო საშუალებების "
+"მიწოდებისთვის, პირადი მონაცემებისა და ვინაობის გაუმჟღავნებლობისგან "
+"დასაცავად. პირადულობის გუშაგები, ყოველთვიური მოკრძალებული შენატანებით, "
+"ქმნიან მტკიცე, საიმედო შემოსავლის წყაროს, რომელიც გვეხმარება სწრაფად ავუწყოთ"
+" ფეხი ცვლილებებს, პირადი მონაცემების დაცვის საკითხებში."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:105
+msgid ""
+"You can cancel or change your monthly gift at any time simply by notifying "
+"us at giving(a)torproject.org. Because the regular support of our Defenders of"
+" Privacy is so closely linked to our success, we send our Defenders special "
+"tokens of our appreciation, and we no longer send them additional requests "
+"for donations throughout the year."
+msgstr ""
+"ნებისმიერ დროს შეგიძლიათ გააუქმოთ ან შეცვალოთ თქვენი ყოველთვიურად გაღებული "
+"თანხის ოდენობა მარტივად, giving(a)torproject.org მისამართზე შეტყობინებით. "
+"ვინაიდან, მუდმივი მხარდაჭერა ჩვენი პირადულობის გუშაგებისგან, მეტადაა "
+"დაკავშირებული ჩვენს წარმატებასთან, მათ ვუგზავნით საგანგებო სახსოვარს "
+"მადლიერების ნიშნად და ამასთან, ისინი აღარ იღებენ შემოწირულობის შესახებ "
+"თხოვნებს, წლის განმავლობაში."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:109
+msgid ""
+"With your help, we will make the Tor network accessible to everyone. "
+"Together, we will stand up for the universal right to privacy. Please make "
+"your monthly donation now and stand with the Tor Project at this critical "
+"time."
+msgstr ""
+"თქვენი მხარდაჭერით, ჩვენ უზრუნველვყოფთ Tor-ქსელის ხელმისაწვდომობას "
+"მომხმარებლებისთვის. ერთად, ჩვენ ვდგავართ ადამიანის საყოველთაო უფლებების "
+"სადარაჯოზე, პირადი მონაცემების ხელშეუხებლობის დასაცავად. გთხოვთ, გაიღოთ "
+"ყოველთვიური შემოწირულობები ახლავე და დაუდგეთ გვერდით Tor-პროექტს, ამ "
+"გადამწყვეტ დროს."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:115
+msgid "Want to make a one time donation instead?"
+msgstr "ერთჯერადი შემოწირულობის გაკეთება გირჩევნიათ?"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:122
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:102
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:62
+msgid ""
+"This page requires Javascript to do PayPal or credit card\n"
+" donations, but it appears you have Javascript disabled."
+msgstr ""
+"გვერდი Javascript-ს საჭიროებს PayPal-ით ან საკრედიტო ბარათით\n"
+" თანხის შესატანად, მაგრამ როგორც ჩანს, Javascript გათიშული გაქვთ."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:126
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:106
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:66
+msgid ""
+"If you wish to donate without enabling Javascript, please take a look at our"
+" <a href=\"https://www.torproject.org/donate/donate-options.html.en\">other "
+"donations options page</a>."
+msgstr ""
+"თუ გსურთ თანხის შემოწირვა Javascript-ის ჩართვის გარეშე, გთხოვთ იხილოთ <a "
+"href=\"https://www.torproject.org/donate/donate-"
+"options.html.en\">შემოწირულობის სხვა გზები</a>."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:134
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:448
+msgid "Gift Selected"
+msgstr "საჩუქარი შერჩეულია"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:138
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:452
+msgid "No Gift Selected"
+msgstr "საჩუქარი არაა შერჩეული"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:142
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:456
+msgid "Sticker Pack"
+msgstr "მისაწეპებლების ნაკრები"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:146
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:441
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:493
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:395
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:460
+msgid "Choose your size and fit."
+msgstr "შეარჩიეთ თქვენი ზომა და შეკერვის სახე"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:150
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:497
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:464
+msgid "T-Shirt"
+msgstr "მაისური"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:154
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:501
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:468
+msgid "Choose your size and fit for each shirt."
+msgstr "შეარჩიეთ თქვენი ზომები თითოეული პერანგისთვის"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:158
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:472
+msgid "T-Shirt Pack"
+msgstr "მაისურების ნაკრები"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:166
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:513
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:480
+msgid "Choose your size."
+msgstr "მიუთითეთ თქვენი ზომა."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:170
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:517
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:484
+msgid "Sweatshirt"
+msgstr "მოსაცმელი"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:174
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:521
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:488
+msgid "A required field is missing from the form."
+msgstr "აუცილებელი ველები შესავსებია."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:176
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:523
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:490
+msgid "Please reload the page and try again."
+msgstr "გთხოვთ ხელახლა გახსნათ გვერდი კვლავ სცადოთ."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:180
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:527
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:494
+msgid "There was a problem submitting your request to the server:<br>"
+msgstr "ხარვეზი წარმოიქმნა მოთხოვნის სერვერზე გადაგზავნისას: <br>"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:184
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:531
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:498
+msgid "validation failed"
+msgstr "დამოწმება ვერ მოხერხდა"
+
+#. notes: __field_name__ will be replaced with the field name in the
+#. javascript.
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:190
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:537
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:504
+msgid "__field_name__ must be filled out."
+msgstr "__ველის_სახელი__ უნდა შეივსოს."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:195
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:542
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:509
+msgid "This field is required"
+msgstr "ველი აუცილებელია"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:199
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:546
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:513
+msgid "Invalid email address."
+msgstr "არამართებული ელფოსტა."
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:203
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:550
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:517
+msgid "per month"
+msgstr "ყოველთვიურად"
+
+#: tmp/cache_locale/f1/f1c758a0a2b3397f444e81463a5afc68c251bdbcd430c9979e3044b79d32dffc.php:284
+msgid "Monthly giving"
+msgstr "ყოველთვიური შემოწირულობა"
+
+#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:34
+msgid "Processing Donation - Tor"
+msgstr "შემოწირულობა მუშავდება – Tor"
+
+#: tmp/cache_locale/e1/e1e12763540d9524f8871157240d5a8fbf2ea77ace1c46527b3031db68943acc.php:44
+msgid "Processing Donation. Please Wait..."
+msgstr "შემოწირულობა მუშავდება. გთხოვთ, მოითმინოთ..."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:34
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:34
+msgid "Tor Thanks You"
+msgstr "Tor მადლიერია თქვენი"
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:44
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:44
+msgid "Thank you!"
+msgstr "გმადლობთ!"
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:51
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:51
+msgid "Thank you for supporting Tor's Strength in Numbers campaign."
+msgstr "გმადლობთ Tor-ის „სიძლიერე ციფრებშია“ კამპანიის მხარდაჭერისთვის."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:53
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:53
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:63
+msgid "You should receive an email receipt shortly."
+msgstr "მალე ელფოსტაზე მიიღებთ ქვითარს."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:55
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:55
+msgid ""
+"With your support and the generous matching funds from Mozilla, we'll be "
+"able to tackle ambitious projects, such as developing a more secure, "
+"privacy-enhancing browser for mobile devices and making it easier for third-"
+"party developers to integrate Tor into their applications."
+msgstr ""
+"თქვენი მხარდაჭერითა და შესაბამისი თანხების მოზიდვით Mozilla-სგან, ჩვენ "
+"შეგვეძლება შევეჭიდოთ ისეთ მნიშვნელოვან გამოწვევებს, როგორიცაა უფრო მეტად "
+"დაცული, პირადი მონაცემების ხელშეუხებლობის უზრუნველმყოფი ბრაუზერის შექმნა "
+"მობილური მოწყობილობებისთვის და ცალკეული შემმუშავებლებისთვის, Tor-ის თავიანთ "
+"პროგრამებში მარტივად ჩაშენების შესაძლებლობის მიცემა."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:61
+msgid "Thank you for standing up for privacy and freedom online."
+msgstr ""
+"გმადლობთ, რომ მხარს უჭერთ პირადი მონაცემების დაცვასა და თავისუფლებას "
+"ინტერნეტში."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:63
+msgid ""
+"With your gift of cryptocurrency, you're helping the Tor Project give "
+"millions of people private access to the open web."
+msgstr ""
+"თქვენი საჩუქარი კრიპტოვალუტის სახით, დაეხმარება Tor-პროექტს მილიონობით "
+"ადამიანისთვის უზრუნველყოს ინტერნეტთან გახსნილი და უსაფრთხო წვდომა."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:65
+msgid ""
+"Your contribution helps make Tor an even stronger tool against authoritarian"
+" governments and privacy-invading corporations."
+msgstr ""
+"თქვენი შემოწირულობა კიდევ უფრო გააძლიერებს Tor-ს, ავტორიტარული მთავრობებისა "
+"და პირადი მონაცემების ხელმყოფი დიდი კომპანიების წინააღმდეგ ბრძოლაში."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:71
+msgid "For your convenience, our wallet addresses are listed below."
+msgstr ""
+"სიმარტივისთვის, ჩვენი საფულეების მისამართები ქვემოთ იქნება ჩამოწერილი."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:73
+msgid ""
+"Please make sure to copy the wallet addresses exactly when making your "
+"donation, as we are unable to recover funds sent to the wrong wallet."
+msgstr ""
+"გთხოვთ, სწორად აიღოთ საფულის მისამართის ასლი შემოწირულობის გაკეთებისას, "
+"ვინაიდან საჭიროების შემთხვევაში ვერ შევძლებთ უკან დაბრუნებას არასწორი "
+"საფულიდან."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:77
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:77
+msgid "SHARE THE TOR PROJECT"
+msgstr "გააზიარეთ Tor-პროექტი"
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:145
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:115
+msgid "Got Skills?"
+msgstr "გაქვთ საჭირო უნარები?"
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:151
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:121
+msgid "The Tor network depends on volunteers."
+msgstr "Tor-ქსელი სრულადაა დამოკიდებული მოხალისეებზე."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:157
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:127
+msgid ""
+"We need people to run relays, write code, organize the community and spread "
+"the word about our good work."
+msgstr ""
+"ჩვენ გვესაჭიროება ხალხი, რომლებიც გაუშვებენ ქსელს გადამცემებით, დაწერენ "
+"კოდს, შექმნიან ერთობას და გაავრცელებენ ინფორმაციას ჩვენი სასარგებლო "
+"საქმიანობის შესახებ."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:159
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:129
+msgid "Learn how you can help."
+msgstr "იხილეთ, თუ როგორ შეგიძლიათ დახმარება."
+
+#: tmp/cache_locale/df/df997ca3aa3a1f02bff7d4f32e59f3fbfbe5d29a77fa6348a08ff96869ac914c.php:167
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:137
+msgid "I Want To Volunteer"
+msgstr "მინდა ვიყო მოხალისე"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:24
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:352
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:306
+msgid "Your Info"
+msgstr "თქვენი მონაცემები"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:29
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:361
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:315
+msgid "First Name"
+msgstr "სახელი"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:33
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:365
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:319
+msgid "Last Name"
+msgstr "გვარი"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:41
+msgid "Estimated Donation Date:"
+msgstr "გადახდის მიახლოებითი თარიღი:"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:46
+msgid "Email"
+msgstr "ელ-ფოსტის გაგზავნა"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:51
+msgid "Choose a Currency"
+msgstr "ვალუტის არჩევა"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:73
+msgid "Currency Amount"
+msgstr "თანხის ოდენობა"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:80
+msgid "Report Donation"
+msgstr "მოხსენება შემოწირულობის თაობაზე"
+
+#: tmp/cache_locale/ce/cec5a6fe643ad38144e0af02cadfaaf024540f1f46db44998f6c033630795bef.php:87
+msgid "Wallet Addresses"
+msgstr "საფულის მისამართები"
+
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:34
msgid "Tor Privacy Policy"
msgstr "Tor-ის პირადი მონაცემების დაცვის დებულება"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:44
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:44
msgid "Donor privacy policy"
msgstr "შემომწირველის პირადი მონაცემების დაცვის დებულება"
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:58
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:58
msgid ""
"The Tor Project respects donor privacy and welcomes anonymous donations."
msgstr ""
"Tor-პროექტი პატივს სცემს შემომწირველის პირადი მონაცემების ხელშეუხებლობას და "
"მიესალმება თანხის შემოტანას ვინაობის გაუმხელელად."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:60
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:60
msgid ""
"If being anonymous is important to you, the best way to preserve your "
"anonymity is by donating using a method that doesn't disclose your personal "
@@ -36,7 +420,7 @@ msgstr ""
"ისეთი საშუალებების გამოყენებაა თანხის შემოსაწირად, რომელიც არ ამჟღავნებს "
"თქვენს პირად მონაცემებს."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:65
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:65
msgid ""
"If you provide personal information as part of the donation process, it may "
"be collected and retained by third-party service providers and/or the Tor "
@@ -46,7 +430,7 @@ msgstr ""
"აღრიცხოს და შეინახოს მომსახურების მესამე მხარის მომწოდებლებმა და/ან Tor-"
"პროექტმა, როგორც ქვემოთაა აღნიშნული."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:67
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:67
msgid ""
"The Tor Project has very little influence over how third-party service "
"providers, such as PayPal, may collect and use your information."
@@ -55,7 +439,7 @@ msgstr ""
"მომწოდებლებმთან, როგორიცაა თუნდაც PayPal, რომელიც შესაძლოა აღრიცხავდეს და "
"იყენებდეს თქვენს მონაცემებს."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:69
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:69
msgid ""
"We recommend you familiarize yourself with their <a class=\"hyperlinks "
"links\" target=\"_blank\" href=\"https://www.paypal.com/webapps/mpp/ua"
@@ -66,7 +450,7 @@ msgstr ""
"/privacy-full\">დებულებებს</a>, განსაკუთრებით პირადი მონაცემების დაცვის "
"საკითხებზე."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:74
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:74
msgid ""
"When you donate to the Tor Project, depending what mechanism you use, we may"
" learn your name, the amount you donated, your email address, phone number "
@@ -77,7 +461,7 @@ msgstr ""
"შეტანილი წვლილის ოდენობა, თქვენი ელფოსტის მისამართი, ტელეფონის ნომერი და/ან "
"ფოსტის მისამართი, ასევე სხვა სახის ინფორმაცია, რასაც მოგვაწვდით."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:76
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:76
msgid ""
"We may also learn incidental data such as the date and time of your "
"donation."
@@ -85,7 +469,7 @@ msgstr ""
"ჩვენ ასევე შეიძლება გარკვეული შემთხვევითი მონაცემებიც დავურთოთ, როგორიცაა "
"შეტანის თარიღი."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:78
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:78
msgid ""
"The Tor Project will never have access to your financial data, such as your "
"credit card information.We aim to be careful with your information."
@@ -94,7 +478,7 @@ msgstr ""
" თქვენი საკრედიტო ბარათის მონაცემები. ჩვენ სიფრთხილით ვეკიდებით თქვენს "
"მონაცემებს."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:83
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:83
msgid ""
"If you have provided your email address, we will email you once to thank you"
" and give you a receipt."
@@ -102,436 +486,187 @@ msgstr ""
"თუ თქვენ მოგვაწვდით ელფოსტის მისამართს, ჩვენ მხოლოდ ერთხელ გამოგიგზავნით "
"მადლობას და გადმოგცემთ ქვითარს."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:85
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:85
msgid ""
"If you opt in during the donation process, we may email you again in future."
msgstr ""
"თუ გაწევრიანდებით შემოწირულობის დროს, შესაძლოა კიდევ ერთხელ მოგწეროთ "
"ელფოსტაზე მომავალში."
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:87
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:87
msgid ""
"If you donate more than $5,000 and we know your name and address, we are "
"required to disclose it to the IRS in <a class=\"hyperlinks links\" "
"target=\"_blank\" href=\"https://www.irs.gov/pub/irs-"
-"pdf/f990ezb.pdf\">Schedule B of the Form 990</a>."
-msgstr ""
-"თუ თქვენი შენატანი გადააჭარბებს $5,000 დოლარს და ჩვენ გვეცოდინება თქვენი "
-"სახელი და მისამართი, მაშინ მოგვიწევს წარვადგინოთ ანგარიში შემოსავლების "
-"სამსახურში (IRS) <a class=\"hyperlinks links\" target=\"_blank\" "
-"href=\"https://www.irs.gov/pub/irs-pdf/f990ezb.pdf\">დანართში B ფორმა "
-"990-ით</a>."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:89
-msgid ""
-"But, that information is redacted from the publicly-available version of our"
-" Form 990."
-msgstr ""
-"თუმცა, ეს ინფორმაცია წარმოადგენს შეცვლილ ვარიანტს ჩვენი ფორმა 900-ის საჯაროდ"
-" ხელმისაწვდომი ვერსიის."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:91
-msgid ""
-"We will never publicly identify you as a donor without your permission."
-msgstr ""
-"ჩვენ უნებართვოდ არასდროს გავასაჯაროებთ თქვენს ვინაობას, როგორც "
-"შემომწირველის."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:96
-msgid "We do not publish, sell, trade, or rent any information about you."
-msgstr ""
-"ჩვენ არ გავასაჯაროებთ, გავყიდით, ვივაჭრებთ ან გავცემთ თქვენს შესახებ რამე "
-"სახის ინფორმაციას."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:98
-msgid ""
-"For our records, we retain your name, the amount of your donation, the date "
-"of the donation, and your contact information."
-msgstr ""
-"ჩანაწერებისთვის, ჩვენ შევინახავთ თქვენს სახელს, შემოწირულობის ოდენობას, "
-"შეტანის თარიღსა და ინფორმაციას დასაკავშირებლად."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:100
-msgid ""
-"Access to that information is restricted inside the Tor Project to people "
-"who need it to do their work, for example by thanking you or mailing you a "
-"t-shirt."
-msgstr ""
-"ამ მონაცემებთან წვდომა შეზღუდული იქნება Tor-პროქტის შიგნით და მხოლოდ მათ "
-"შეეძლებათ, ვისაც თავისი მოვალეობის შესასრულებლად დასჭირდებათ, მაგალითად "
-"მადლობის ან მაისურის ფოსტით გამოსაგზავნად."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:105
-msgid ""
-"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
-"Thank you for supporting Tor</span>."
-msgstr ""
-"<span class=\"bold\">Tor-პროექტი მეტად აფასებს თითოეულ შემომწირველს. "
-"გმადლობთ, Tor-ის მხარდაჭერისთვის</span>."
-
-#: tmp/cache_locale/fa/fadd8d2107638a3de94449a9eddfca4e8f010bb26f3f6a71e2d875cb910cc5f1.php:113
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:656
-msgid "Back to Donate Page"
-msgstr "შემოწირულობის გვერდზე დაბრუნება"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:35
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:35
-msgid "Support the Tor Project Today!"
-msgstr "მხარი დაუჭირეთ Tor-პროექტს დღესვე!"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:48
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:71
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:48
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:71
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:516
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:642
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:75
-msgid "Tor: Strength in Numbers"
-msgstr "Tor: სიძლიერე ციფრებშია"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:52
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:75
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:52
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:75
-msgid "Donate to the Tor Project and protect the privacy of millions."
-msgstr ""
-"გაიღეთ შემოწირულობა Tor-პროექტისთვის და უზრუნველყავით მილიონობით ადამიანის "
-"პირადი მონაცემების უსაფრთხოება."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:54
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:77
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:54
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:77
-msgid "Anonymity loves company."
-msgstr "ვინაობის გამჟღავნებისგან დაცვა საჭიროებს ხალხის სიმრავლეს."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:63
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:63
-msgid "summary_large_image"
-msgstr "შეჯამება_დიდი_სურათი"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:67
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:67
-msgid "@torproject"
-msgstr "@torproject"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:101
-msgid "Want to donate by credit card or PayPal?"
-msgstr "გსურთ შემოწირულობის გაღება საკრედიტო ბარათით ან PayPal-ით?"
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:110
-msgid ""
-"Thanks for your interest in donating cryptocurrency to the Tor Project."
-msgstr "გმადლობთ, კრიპტოვალუტის შემოწირვის სურვილისთვის Tor-პროექტში."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:117
-msgid ""
-"Please fill out this form and then send your coins to the appropriate "
-"wallet."
-msgstr ""
-"გთხოვთ, შეავსოთ მოცემული ველები და შემდეგ გამოგვიგზავნოთ მონეტები შესაბამის "
-"საფულეში."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:119
-msgid ""
-"Filling out the form is not necessary, but doing so will notify us about "
-"your donation quickly, allow us to send you an acknowledgement, and let us "
-"know your communication preferences."
-msgstr ""
-"ველების შევსება სავალდებულო არაა, თუმცა მისი საშუალებით, მყისიერად შევიტყობთ"
-" თქვენი შემოწირულობის შესახებ და საშუალებას მოგვცემს გაცნობოთ მიღების "
-"დადასტურება ან გამოგეხმაუროთ."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:125
-msgid ""
-"Below you will find the cryptocurrencies we accept and our wallet addresses."
-msgstr ""
-"ქვემოთ იხილავთ კრიპტოვალუტებს, რომლებსაც ვიღებთ და შესაბამისი საფულეების "
-"მისამართებსაც."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:127
-msgid ""
-"The wallet addresses will be displayed again after you complete the form."
-msgstr "საფულეების მისამართები კვლავ გამოჩნდება ველების შევსების შემდეგ."
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:129
-msgid ""
-"Please make sure to copy the wallet addresses exactly when making your "
-"donation, as we cannot recover funds sent to the wrong wallet."
-msgstr ""
-"გთხოვთ, სწორად აიღოთ საფულის მისამართის ასლი შემოწირულობის გაკეთებისას, "
-"ვინაიდან საჭიროების შემთხვევაში ვერ შევძლებთ უკან დაბრუნებას არასწორი "
-"საფულიდან. "
-
-#: tmp/cache_locale/ef/ef5649de7f8cead2eb5ba30c5d2afbe4e1ea84df12773fd2513ca8f8823e3fbc.php:135
-msgid ""
-"If you have any questions, or would like to donate a cryptocurrency not "
-"listed above, please email us at giving(a)torproject.org."
-msgstr ""
-"კითხვების არსებობის შემთხვევაში, ან იმ კრიპტოვალუტით შემოწირულობის "
-"გასაკეთებლად, რომელიც სიაში არაა, გთხოვთ მოგვწეროთ ელფოსტაზე "
-"giving(a)torproject.org."
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:29
-msgid ""
-"The European shirt fits run a little small so you might want to consider "
-"sizing up."
-msgstr ""
-"პერანგის ევროპული ზომები ოდნავ მცირეა, ასე რომ აჯობებს შეარჩიოთ უფრო დიდი "
-"ზომის."
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:36
-msgid "Fit"
-msgstr "შეკერვის სახე"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:40
-msgid "Select Fit"
-msgstr "მიუთითეთ შეკერვის სახე"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:44
-msgid "Slim"
-msgstr "ტანზე მომდგარი"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:48
-msgid "Classic"
-msgstr "კლასიკური"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:56
-msgid "European"
-msgstr "ევროპული"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:66
-msgid "Size"
-msgstr "ზომა"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:70
-msgid "Select Size"
-msgstr "ზომის შერჩევა"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:74
-msgid "S"
-msgstr "S"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:78
-msgid "M"
-msgstr "M"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:82
-msgid "L"
-msgstr "L"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:86
-msgid "XL"
-msgstr "XL"
-
-#: tmp/cache_locale/ce/ce708c1cd991748e8c1c29f932e6ddbd1be5be1b4cc2c5b49b607cae1df80432.php:90
-msgid "XXL"
-msgstr "XXL"
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:34
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:34
-msgid "Tor Thanks You"
-msgstr "Tor მადლიერია თქვენი"
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:44
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:44
-msgid "Thank you!"
-msgstr "გმადლობთ!"
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:51
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:51
-msgid "Thank you for supporting Tor's Strength in Numbers campaign."
-msgstr "გმადლობთ Tor-ის „სიძლიერე ციფრებშია“ კამპანიის მხარდაჭერისთვის."
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:53
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:53
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:63
-msgid "You should receive an email receipt shortly."
-msgstr "მალე ელფოსტაზე მიიღებთ ქვითარს."
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:55
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:55
-msgid ""
-"With your support and the generous matching funds from Mozilla, we'll be "
-"able to tackle ambitious projects, such as developing a more secure, "
-"privacy-enhancing browser for mobile devices and making it easier for third-"
-"party developers to integrate Tor into their applications."
-msgstr ""
-"თქვენი მხარდაჭერითა და შესაბამისი თანხების მოზიდვით Mozilla-სგან, ჩვენ "
-"შეგვეძლება შევეჭიდოთ ისეთ მნიშვნელოვან გამოწვევებს, როგორიცაა უფრო მეტად "
-"დაცული, პირადი მონაცემების ხელშეუხებლობის უზრუნველმყოფი ბრაუზერის შექმნა "
-"მობილური მოწყობილობებისთვის და ცალკეული შემმუშავებლებისთვის, Tor-ის თავიანთ "
-"პროგრამებში მარტივად ჩაშენების შესაძლებლობის მიცემა."
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:61
-msgid "Thank you for standing up for privacy and freedom online."
+"pdf/f990ezb.pdf\">Schedule B of the Form 990</a>."
msgstr ""
-"გმადლობთ, რომ მხარს უჭერთ პირადი მონაცემების დაცვასა და თავისუფლებას "
-"ინტერნეტში."
+"თუ თქვენი შენატანი გადააჭარბებს $5,000 დოლარს და ჩვენ გვეცოდინება თქვენი "
+"სახელი და მისამართი, მაშინ მოგვიწევს წარვადგინოთ ანგარიში შემოსავლების "
+"სამსახურში (IRS) <a class=\"hyperlinks links\" target=\"_blank\" "
+"href=\"https://www.irs.gov/pub/irs-pdf/f990ezb.pdf\">დანართში B ფორმა "
+"990-ით</a>."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:63
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:89
msgid ""
-"With your gift of cryptocurrency, you're helping the Tor Project give "
-"millions of people private access to the open web."
+"But, that information is redacted from the publicly-available version of our"
+" Form 990."
msgstr ""
-"თქვენი საჩუქარი კრიპტოვალუტის სახით, დაეხმარება Tor-პროექტს მილიონობით "
-"ადამიანისთვის უზრუნველყოს ინტერნეტთან გახსნილი და უსაფრთხო წვდომა."
+"თუმცა, ეს ინფორმაცია წარმოადგენს შეცვლილ ვარიანტს ჩვენი ფორმა 900-ის საჯაროდ"
+" ხელმისაწვდომი ვერსიის."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:65
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:91
msgid ""
-"Your contribution helps make Tor an even stronger tool against authoritarian"
-" governments and privacy-invading corporations."
+"We will never publicly identify you as a donor without your permission."
msgstr ""
-"თქვენი შემოწირულობა კიდევ უფრო გააძლიერებს Tor-ს, ავტორიტარული მთავრობებისა "
-"და პირადი მონაცემების ხელმყოფი დიდი კომპანიების წინააღმდეგ ბრძოლაში."
+"ჩვენ უნებართვოდ არასდროს გავასაჯაროებთ თქვენს ვინაობას, როგორც "
+"შემომწირველის."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:71
-msgid "For your convenience, our wallet addresses are listed below."
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:96
+msgid "We do not publish, sell, trade, or rent any information about you."
msgstr ""
-"სიმარტივისთვის, ჩვენი საფულეების მისამართები ქვემოთ იქნება ჩამოწერილი."
+"ჩვენ არ გავასაჯაროებთ, გავყიდით, ვივაჭრებთ ან გავცემთ თქვენს შესახებ რამე "
+"სახის ინფორმაციას."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:73
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:98
msgid ""
-"Please make sure to copy the wallet addresses exactly when making your "
-"donation, as we are unable to recover funds sent to the wrong wallet."
+"For our records, we retain your name, the amount of your donation, the date "
+"of the donation, and your contact information."
msgstr ""
-"გთხოვთ, სწორად აიღოთ საფულის მისამართის ასლი შემოწირულობის გაკეთებისას, "
-"ვინაიდან საჭიროების შემთხვევაში ვერ შევძლებთ უკან დაბრუნებას არასწორი "
-"საფულიდან."
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:77
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:77
-msgid "SHARE THE TOR PROJECT"
-msgstr "გააზიარეთ Tor-პროექტი"
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:145
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:115
-msgid "Got Skills?"
-msgstr "გაქვთ საჭირო უნარები?"
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:151
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:121
-msgid "The Tor network depends on volunteers."
-msgstr "Tor-ქსელი სრულადაა დამოკიდებული მოხალისეებზე."
+"ჩანაწერებისთვის, ჩვენ შევინახავთ თქვენს სახელს, შემოწირულობის ოდენობას, "
+"შეტანის თარიღსა და ინფორმაციას დასაკავშირებლად."
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:157
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:127
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:100
msgid ""
-"We need people to run relays, write code, organize the community and spread "
-"the word about our good work."
+"Access to that information is restricted inside the Tor Project to people "
+"who need it to do their work, for example by thanking you or mailing you a "
+"t-shirt."
msgstr ""
-"ჩვენ გვესაჭიროება ხალხი, რომლებიც გაუშვებენ ქსელს გადამცემებით, დაწერენ "
-"კოდს, შექმნიან ერთობას და გაავრცელებენ ინფორმაციას ჩვენი სასარგებლო "
-"საქმიანობის შესახებ."
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:159
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:129
-msgid "Learn how you can help."
-msgstr "იხილეთ, თუ როგორ შეგიძლიათ დახმარება."
-
-#: tmp/cache_locale/ca/ca1cd152d40544030a642d8d074e6afb769c3bf80a1b2b61c380f1466e3a03a4.php:167
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:137
-msgid "I Want To Volunteer"
-msgstr "მინდა ვიყო მოხალისე"
+"ამ მონაცემებთან წვდომა შეზღუდული იქნება Tor-პროქტის შიგნით და მხოლოდ მათ "
+"შეეძლებათ, ვისაც თავისი მოვალეობის შესასრულებლად დასჭირდებათ, მაგალითად "
+"მადლობის ან მაისურის ფოსტით გამოსაგზავნად."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:102
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:105
msgid ""
-"This page requires Javascript to do PayPal or credit card\n"
-" donations, but it appears you have Javascript disabled."
+"<span class=\"bold\">The Tor Project very much appreciates all its donors. "
+"Thank you for supporting Tor</span>."
msgstr ""
-"გვერდი Javascript-ს საჭიროებს PayPal-ით ან საკრედიტო ბარათით\n"
-" თანხის შესატანად, მაგრამ როგორც ჩანს, Javascript გათიშული გაქვთ."
+"<span class=\"bold\">Tor-პროექტი მეტად აფასებს თითოეულ შემომწირველს. "
+"გმადლობთ, Tor-ის მხარდაჭერისთვის</span>."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:106
-msgid ""
-"If you wish to donate without enabling Javascript, please take a look at our"
-" <a href=\"https://www.torproject.org/donate/donate-options.html.en\">other "
-"donations options page</a>."
-msgstr ""
-"თუ გსურთ თანხის შემოწირვა Javascript-ის ჩართვის გარეშე, გთხოვთ იხილოთ <a "
-"href=\"https://www.torproject.org/donate/donate-"
-"options.html.en\">შემოწირულობის სხვა გზები</a>."
+#: tmp/cache_locale/ad/ad05838d90eae883761f0bcec6c27d77959c6e2884e8abf6c4aec89d7a741ea9.php:113
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:656
+msgid "Back to Donate Page"
+msgstr "შემოწირულობის გვერდზე დაბრუნება"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:127
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:127
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:87
msgid "Number of Donations"
msgstr "შემოწირულობების რაოდენობა"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:143
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:143
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:103
msgid "Total Donated"
msgstr "შემოწირულობები სულ"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:159
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:159
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:119
msgid "Total Raised with Mozilla's Match"
msgstr "Mozilla-ს დახმარებით გაორმაგებული სულ"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:170
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:176
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:170
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:176
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:130
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:136
msgid "donate"
msgstr "შემოწირვა"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:172
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:172
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:132
msgid "once"
msgstr "ერთჯერადი"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:178
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:178
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:138
msgid "monthly"
msgstr "ყოველთვიური"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:185
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:339
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:185
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:345
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:145
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:299
msgid "Want to donate Bitcoin, Stock, or via snail mail?"
msgstr ""
"გსურთ თანხის შემოწირვა Bitcoin, Stock, ან ჩვეულებრივი ფოსტის მეშვეობით?"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:201
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:201
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:161
msgid "invalid amount"
msgstr "არამართებული ოდენობა"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:205
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:205
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:165
msgid "$2 minimum donation"
msgstr "შენატანი უნდა იყოს სულ მცირე $2"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:209
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:209
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:169
msgid "$ other"
msgstr "$ მითითება"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:216
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:216
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:176
msgid "Choose your gift as a token of our thanks."
msgstr "შეარჩიეთ საჩუქარი ჩვენი მადლობის ნიშნად."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:223
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:223
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:183
msgid "No thanks, I don't want a gift."
msgstr "არა გმადლობთ, არ მსურს საჩუქარი."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:225
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:225
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:185
#, php-format
msgid "I would prefer 100% of my donation to go to the Tor Project's work."
msgstr "მირჩევნია რომ ჩემ მიერ შეტანილი თანხის 100% მოხმარდეს Tor-პროექტს."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:236
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:236
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:196
msgid "sticker Pack"
msgstr "მისაწეპებლების ნაკრები"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:243
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:243
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:203
msgid ""
"A collection of our favorite logo stickers for decorating your stuff and "
"covering your cams."
msgstr ""
"ჩვენი რჩეული ლოგოების ნაკრები თქვენი ნივთებისა და კამერების გასაფორმებლად."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:253
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:253
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:213
msgid "t-shirt"
msgstr "მაისური"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:261
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:259
+msgid "$15"
+msgstr "$15"
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:261
+msgid "OFF"
+msgstr "გამორთ."
+
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:267
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:221
msgid "Get our limited edition Tor: Strength in Numbers shirt."
msgstr "მიიღეთ შეზღუდული გამოშვების Tor: სიძლიერე ციფრებშია მაისური."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:272
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:278
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:232
msgid "t-shirt pack"
msgstr "მაისურების ნაკრები"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:282
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:288
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:242
msgid ""
"Our Tor: Strength in Numbers t-shirt, plus one of either our Tor: Powering "
"the Digital Resistance, Open Observatory of Network Interference (OONI), or "
@@ -541,213 +676,258 @@ msgstr ""
"Powering the Digital Resistance, Open Observatory of Network Interference "
"(OONI) ან Tor at the Heart of Internet Freedom მაისურებიდან."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:288
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:294
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:248
msgid "Tor at the Heart of Internet Freedom"
msgstr "Tor ინტერნეტის თავისუფლების შუაგულში"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:292
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:298
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:252
msgid "Powering the Digital Resistance"
msgstr "ციფრული სამყაროს მდგრადობის გაძლიერება"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:296
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:302
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:256
msgid "Open Observatory of Network Interference"
msgstr "Open Observatory ქსელის ზედამხედველობის დამდგენი"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:307
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:313
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:267
msgid "sweatshirt"
msgstr "მოსაცმელი"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:314
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:320
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:274
msgid "Your generous support of Tor gets you this high-quality zip hoodie."
msgstr ""
"თქვენი გულუხვი მხარდაჭერისთვის Tor-ისადმი მიიღებთ მაღალი ხარისხის "
"ელვაშესაკრავიან მოსაცმელს."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:324
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:330
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:284
msgid "how do you want to <span class=\"green\">DONATE</span>?"
msgstr ""
"აირჩიეთ, თუ რითი გსურთ გააკეთოთ <span class=\"green\">შემოწირულობა</span>?"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:330
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:336
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:290
msgid "Credit Card"
msgstr "საკრედიტო ბარათი"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:346
-msgid "Your Info"
-msgstr "თქვენი მონაცემები"
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:350
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:356
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:310
msgid "* required fields"
msgstr "* აუცილებელი ველები"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:355
-msgid "First Name"
-msgstr "სახელი"
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:359
-msgid "Last Name"
-msgstr "გვარი"
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:365
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:371
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:325
msgid "Street Address"
msgstr "მისამართი"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:369
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:375
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:329
msgid "Apt."
msgstr "ბინა"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:379
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:385
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:339
msgid "City"
msgstr "ქალაქი"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:383
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:389
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:343
msgid "State"
msgstr "რეგიონი"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:388
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:394
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:348
msgid "Zip"
msgstr "Zip-კოდი"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:394
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:400
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:354
msgid "Enter email"
msgstr "მიუთითეთ ელფოსტა"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:398
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:404
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:358
msgid "We‘ll email you your receipt"
msgstr "ჩვენ ელფოსტით გამოგიგზავნით ქვითარს"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:405
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:411
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:365
msgid "Start sending me email updates about the Tor Project!"
msgstr "გამომიგზავნეთ ელფოსტაზე სიახლეები Tor-პროექტის შესახებ!"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:412
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:418
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:372
msgid "Card Number"
msgstr "ბარათის ნომერი"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:419
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:425
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:379
msgid "MM"
msgstr "MM"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:423
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:429
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:383
msgid "YY"
msgstr "YY"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:427
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:433
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:387
msgid "CVC"
msgstr "CVC"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:435
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:500
-msgid "Choose your size and fit."
-msgstr "შეარჩიეთ თქვენი ზომა და შეკერვის სახე"
-
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:440
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:448
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:446
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:454
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:400
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:408
msgid "T-shirt:"
msgstr "მაისური:"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:458
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:462
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:464
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:464
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:468
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:470
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:418
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:422
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:424
msgid "Comments"
msgstr "კომენტარები"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:470
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:476
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:430
msgid "Donating:"
msgstr "შემოწირულობა:"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:478
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:483
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:438
msgid "Donate"
msgstr "გაიღეთ შემოწირულობა"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:488
-msgid "Gift Selected"
-msgstr "საჩუქარი შერჩეულია"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:505
+msgid ""
+"Tor at the Heart of Internet, Powering Digital Resistance or Open "
+"Observvatory of Network Interference (OONI) T-Shirt"
+msgstr ""
+"Tor at the Heart of Internet, Powering Digital Resistance ან Open "
+"Observvatory of Network Interference (OONI) მაისური"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:492
-msgid "No Gift Selected"
-msgstr "საჩუქარი არაა შერჩეული"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:509
+msgid "Strength in Numbers T-Shirt"
+msgstr "სიძლიერე ციფრებშია მაისური"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:496
-msgid "Sticker Pack"
-msgstr "მისაწეპებლების ნაკრები"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:564
+msgid "One moment while we shovel coal into our servers."
+msgstr "გთხოვთ მოითმინოთ, სანამ საწვავს მივაწვდით ჩვენს სერვერებს."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:504
-msgid "T-Shirt"
-msgstr "მაისური"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:654
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:662
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:609
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:617
+#: tmp/cache_locale/03/03963079e40d8bba608baf2120533e119d90cb2cfc82fee9e293708eb548373f.php:82
+#: tmp/cache_locale/03/03963079e40d8bba608baf2120533e119d90cb2cfc82fee9e293708eb548373f.php:90
+msgid ""
+"Stand up for the universal human rights to privacy and freedom and help keep"
+" Tor robust and secure."
+msgstr ""
+"მხარი დაუჭირეთ ადამიანის ძირითადი უფლებების ხელშეუხებლობას, როგორიცაა პირადი"
+" მონაცემების დაცულობა და თავისუფლება და დაგვეხმარეთ Tor-ის უსაფრთხოების "
+"განმტკიცებაში."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:508
-msgid "Choose your size and fit for each shirt."
-msgstr "შეარჩიეთ თქვენი ზომები თითოეული პერანგისთვის"
+#: tmp/cache_locale/93/936f5ca9f26662b60293a725343573df95cb28c99d7c3f12b1c94ed37a453012.php:656
+#: tmp/cache_locale/04/0421bb9119a5b92b0e2e4a49c25d718283ccfa1495534b2a08ff967a0f4fd06a.php:611
+#: tmp/cache_locale/03/03963079e40d8bba608baf2120533e119d90cb2cfc82fee9e293708eb548373f.php:84
+msgid "Mozilla will match your gift and double your impact."
+msgstr "Mozilla გაიღებს ზუსტად იმავე თანხას და გააორმაგებს თქვენს წვლილს."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:512
-msgid "T-Shirt Pack"
-msgstr "მაისურების ნაკრები"
+#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:61
+msgid "Want to donate by credit card or PayPal?"
+msgstr "გსურთ შემოწირულობის გაღება საკრედიტო ბარათით ან PayPal-ით?"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:520
-msgid "Choose your size."
-msgstr "მიუთითეთ თქვენი ზომა."
+#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:70
+msgid ""
+"Thanks for your interest in donating cryptocurrency to the Tor Project."
+msgstr "გმადლობთ, კრიპტოვალუტის შემოწირვის სურვილისთვის Tor-პროექტში."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:524
-msgid "Sweatshirt"
-msgstr "მოსაცმელი"
+#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:77
+msgid ""
+"Please fill out this form and then send your coins to the appropriate "
+"wallet."
+msgstr ""
+"გთხოვთ, შეავსოთ მოცემული ველები და შემდეგ გამოგვიგზავნოთ მონეტები შესაბამის "
+"საფულეში."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:528
-msgid "A required field is missing from the form."
-msgstr "აუცილებელი ველები შესავსებია."
+#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:79
+msgid ""
+"Filling out the form is not necessary, but doing so will notify us about "
+"your donation quickly, allow us to send you an acknowledgement, and let us "
+"know your communication preferences."
+msgstr ""
+"ველების შევსება სავალდებულო არაა, თუმცა მისი საშუალებით, მყისიერად შევიტყობთ"
+" თქვენი შემოწირულობის შესახებ და საშუალებას მოგვცემს გაცნობოთ მიღების "
+"დადასტურება ან გამოგეხმაუროთ."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:530
-msgid "Please reload the page and try again."
-msgstr "გთხოვთ ხელახლა გახსნათ გვერდი კვლავ სცადოთ."
+#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:85
+msgid ""
+"Below you will find the cryptocurrencies we accept and our wallet addresses."
+msgstr ""
+"ქვემოთ იხილავთ კრიპტოვალუტებს, რომლებსაც ვიღებთ და შესაბამისი საფულეების "
+"მისამართებსაც."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:534
-msgid "There was a problem submitting your request to the server:<br>"
-msgstr "ხარვეზი წარმოიქმნა მოთხოვნის სერვერზე გადაგზავნისას: <br>"
+#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:87
+msgid ""
+"The wallet addresses will be displayed again after you complete the form."
+msgstr "საფულეების მისამართები კვლავ გამოჩნდება ველების შევსების შემდეგ."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:538
-msgid "validation failed"
-msgstr "დამოწმება ვერ მოხერხდა"
+#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:89
+msgid ""
+"Please make sure to copy the wallet addresses exactly when making your "
+"donation, as we cannot recover funds sent to the wrong wallet."
+msgstr ""
+"გთხოვთ, სწორად აიღოთ საფულის მისამართის ასლი შემოწირულობის გაკეთებისას, "
+"ვინაიდან საჭიროების შემთხვევაში ვერ შევძლებთ უკან დაბრუნებას არასწორი "
+"საფულიდან. "
-#. notes: __field_name__ will be replaced with the field name in the
-#. javascript.
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:544
-msgid "__field_name__ must be filled out."
-msgstr "__ველის_სახელი__ უნდა შეივსოს."
+#: tmp/cache_locale/70/70a3de9c7fb70a68cae132efaa24457b72f71189189cd4c8c492f3cd459b6483.php:95
+msgid ""
+"If you have any questions, or would like to donate a cryptocurrency not "
+"listed below, please email us at giving(a)torproject.org."
+msgstr ""
+"კითხვების არსებობის შემთხვევაში, ან იმ კრიპტოვალუტით შემოწირულობის "
+"გასაკეთებლად, რომელიც მოცემულ სიაში არაა, გთხოვთ მოგვწეროთ ელფოსტაზე "
+"giving(a)torproject.org."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:549
-msgid "This field is required"
-msgstr "ველი აუცილებელია"
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:22
+msgid "See if your employer offers employee gift matching"
+msgstr ""
+"ნახეთ, თქვენი დამქირავებელი უზრუნველყოფს თუ არა შემოწირულობის გაორმაგებას."
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:553
-msgid "Invalid email address."
-msgstr "არამართებული ელფოსტა."
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:52
+msgid "Company"
+msgstr "დაწესებულება"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:557
-msgid "per month"
-msgstr "ყოველთვიურად"
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:60
+msgid "Matching Conditions"
+msgstr "გაორმაგების პირობები"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:649
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:657
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:82
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:90
-msgid ""
-"Stand up for the universal human rights to privacy and freedom and help keep"
-" Tor robust and secure."
-msgstr ""
-"მხარი დაუჭირეთ ადამიანის ძირითადი უფლებების ხელშეუხებლობას, როგორიცაა პირადი"
-" მონაცემების დაცულობა და თავისუფლება და დაგვეხმარეთ Tor-ის უსაფრთხოების "
-"განმტკიცებაში."
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:68
+msgid "Contact Information"
+msgstr "საკონტაქტო ინფორმაცია"
-#: tmp/cache_locale/c7/c763c19bb6abb9330294c550c8241bb3874e3b4e17fb6e7b15db26c60df8d5fe.php:651
-#: tmp/cache_locale/9f/9f870858aaf6c5a7c94ea6a959618fbe485cbfd16174993d34a8e370a4567526.php:84
-msgid "Mozilla will match your gift and double your impact."
-msgstr "Mozilla გაიღებს ზუსტად იმავე თანხას და გააორმაგებს თქვენს წვლილს."
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:76
+msgid "Additional Notes"
+msgstr "დამატებითი შენიშვნები"
+
+#: tmp/cache_locale/6f/6f67db0a5268c67c9254c73517aaaea60c8c65a268f9242703a3299173f14b74.php:84
+msgid "Procedure"
+msgstr "პროცედურა"
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:61
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:61
msgid "Thank you for your support of the Tor Project."
msgstr "გმადლობთ თქვენი მხარდაჭერისთვის, Tor-პროექტის მიმართ."
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:65
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:65
msgid ""
"With your support, we'll be able to tackle ambitious projects, such as "
"developing a more secure, privacy-enhancing browser for mobile devices and "
@@ -760,7 +940,7 @@ msgstr ""
"შემმუშავებლებისთვის, Tor-ის თავიანთ პროგრამებში მარტივად ჩაშენების "
"შესაძლებლობის მიცემა."
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:71
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:71
msgid ""
"It's an incredible time to stand up for world-leading security and privacy "
"software."
@@ -768,7 +948,7 @@ msgstr ""
"საუკეთესო დროა მხარში ამოუდგეთ მსოფლიოში წამყვან პროგრამას, უსაფრთხოებისა და"
" პირადი მონაცემების დაცვის კუთხით."
-#: tmp/cache_locale/af/afda2fbd22ed389453e63ca9acc074a25ce820b5bc97120edfd975cf8f46634a.php:73
+#: tmp/cache_locale/54/5420828d7720daccac45a05e74a0bdde5ef138020bd4901a7e81ad8817d3f8e8.php:73
msgid ""
"Tell family, friends, and colleagues that you're supporting privacy and "
"security with Tor!"
@@ -776,15 +956,7 @@ msgstr ""
"აცნობეთ ოჯახს, მეგობრებსა და თანამშრომლებს, რომ პირადი მონაცემების "
"ხელშეუხებლობას და უსაფრთხოებას უზრუნველყოფთ Tor-ით!"
-#: tmp/cache_locale/92/9248b30ecfc0bb3509fc7e1db98f98ec86e72399ad551da3d5abe54c7cd987af.php:34
-msgid "Processing Donation - Tor"
-msgstr "შემოწირულობა მუშავდება – Tor"
-
-#: tmp/cache_locale/92/9248b30ecfc0bb3509fc7e1db98f98ec86e72399ad551da3d5abe54c7cd987af.php:44
-msgid "Processing Donation. Please Wait..."
-msgstr "შემოწირულობა მუშავდება. გთხოვთ, მოითმინოთ..."
-
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:25
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:25
msgid ""
"The Tor Project is a US 501(c)(3) non-profit organization advancing human "
"rights and freedoms by creating and deploying free and open source anonymity"
@@ -798,29 +970,29 @@ msgstr ""
"გამოყენების უზრუნველყოფით, შემდგომი კვლევებითა და მუშაობით, საზოგადოების "
"ცნობიერების დონის ასამაღლებლად."
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:31
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:31
msgid "Subscribe to Our Newsletter"
msgstr "გამოიწერეთ ჩვენი სიახლეების ცნობარი"
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:35
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:35
msgid "Get monthly updates and opportunities from the Tor Project."
msgstr ""
"გაეცანით ყოველთვიურად Tor-პროექტთან დაკავშირებულ ახალ ამბებსა და ახალ "
"შესაძლებლობებს."
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:39
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:39
msgid "Sign Up"
msgstr "ხელმოწერა"
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:47
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:47
msgid "Donate FAQs"
msgstr "შემოწირულობის ხ.დ.კ."
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:51
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:51
msgid "Privacy Policy"
msgstr "პირადი მონაცემების დაცვის დებულება"
-#: tmp/cache_locale/2d/2d5f07aeb16acd7bb0a8dd355b13f59678a1f0ba6ea2b3d9dec8d2b5dcfbfde5.php:67
+#: tmp/cache_locale/50/50777d283fdd4725b4b51b066a1fa065079d875050e04874af7ad8d37f823d3f.php:67
msgid ""
"Designed and built by <span class=\"stamp-bold\"><a "
"href=\"https://www.giantrabbit.com/\" class=\"stamp-bold\" "
@@ -830,15 +1002,15 @@ msgstr ""
"href=\"https://www.giantrabbit.com/\" class=\"stamp-bold\" "
"target=\"_blank\">Giant Rabbit</a></span>"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:34
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:34
msgid "Tor Donor FAQ"
msgstr "Tor-ის შემოწირულობის ხ.დ.კ."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:44
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:44
msgid "Questions?"
msgstr "კითხვები გაქვთ?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:59
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:59
msgid ""
"If your question isn’t answered below, email <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span> with general Tor "
@@ -851,11 +1023,11 @@ msgstr ""
"class=\"email\">giving(at)torproject.org</span> მისამართზე, შემოწირულობებთან"
" დაკავშირებულ საკითხებზე."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:66
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:66
msgid "What is the Tor Project and what does it do?"
msgstr "რას წარმოადგენს Tor-პროექტი და რისთვის გამოიყენება?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:70
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:70
msgid ""
"The Tor Project’s mission is to advance human rights and freedoms by "
"creating and deploying free and open anonymity and privacy technologies, "
@@ -869,7 +1041,7 @@ msgstr ""
" კი მათთან დაკავშირებით, მეცნიერული გაგებისა და საზოგადოების ცნობიერების "
"დონის ამაღლებით."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:72
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:72
msgid ""
"The main product of the Tor Project is <a "
"href=\"https://www.torproject.org/download/download-easy.html.en\">Tor "
@@ -879,7 +1051,7 @@ msgstr ""
"/download-easy.html.en\">Tor-ბრაუზერი</a>, რომელიც საშუალებას აძლევს ხალხს "
"გამოიყენონ ინტერნეტი ვინაობის გაუმხელელად."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:74
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:74
msgid ""
"The Tor Project is a 501(c)3 tax-exempt non-profit organization based in "
"Boston, Massachusetts."
@@ -887,15 +1059,15 @@ msgstr ""
"Tor-პროექტი წარმოადგენს 501(c)(3) გადასახადებისგან თავისუფალ არამომგებიან "
"დაწესებულებას, რომელიც დაარსებულია ბოსტონში, მასაჩუსეტსში."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:76
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:76
msgid "It was founded in 2006."
msgstr "შეიქმნა 2006 წელს."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:82
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:82
msgid "Who works for the Tor Project, and what do they do?"
msgstr "ვინ მუშაობს Tor-პროექტზე და რა სახის საქმიანობას ეწევიან?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:86
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:86
msgid ""
"Thousands of people around the world actively support the work of the Tor "
"Project, including developers, designers, relay operators, researchers, "
@@ -908,14 +1080,14 @@ msgstr ""
"პირადი მონაცემების ხელშეუხებლობის დამცველები, ყოველგვარი ანაზღაურების "
"გარეშე, Tor-პროექტისგან."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:88
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:88
msgid ""
"The paid staff of the Tor Project is very small: about 47 people in total."
msgstr ""
"ანაზღაურების მქონე თანამშრომელი Tor-პროქტში მხოლოდ მცირე რაოდენობითაა: ჯამში"
" დაახლოებით 47 ადამიანი."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:90
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:90
msgid ""
"You can read about the core contributors to the Tor Project on our <a "
"class=\"hyperlinks\" target=\"_blank\" "
@@ -927,11 +1099,11 @@ msgstr ""
"href=\"https://www.torproject.org/about/corepeople.html.en\"><span "
"class=\"links\">ძირითადი მონაწილეების გვერდი</span></a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:95
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:95
msgid "Who uses Tor?"
msgstr "ვინ იყენებს Tor-ს?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:99
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:99
msgid ""
"The vast majority of Tor users are ordinary people who want control of their"
" privacy online or people whose internet use is censored."
@@ -940,7 +1112,7 @@ msgstr ""
"სურთ, საკუთარი პირადი მონაცემები თავადვე განკარგონ ინტერნეტში ან ის ხალხი, "
"რომელთა ინტერნეტიც ცენზურის ქვეშაა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:101
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:101
msgid ""
"Other Tor users are journalists, human rights defenders, domestic violence "
"survivors, policymakers, diplomats, and academic and research institutions."
@@ -949,15 +1121,15 @@ msgstr ""
"დამცველები, ოჯახური ძალადობის მსხვერპლნი, პოლიტიკოსები, დიპლომატები და "
"აკადემიური და სამეცნიერო დაწესებულებები."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:107
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:107
msgid "Can anyone use Tor?"
msgstr "ყველას შეუძლია გამოიყენოს Tor?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:111
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:111
msgid "Yes! Tor is free, and anyone can use it."
msgstr "დიახ! Tor არის უფასო, ღია და საყოველთაოდ ხელმისაწვდომი."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:113
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:113
msgid ""
"To get started, you will need to <a class=\"hyperlinks\" target=\"_blank\" "
"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span "
@@ -967,7 +1139,7 @@ msgstr ""
"href=\"https://www.torproject.org/projects/torbrowser.html.en\"><span "
"class=\"links\">ჩამოტვირთოთ Tor-ბრაუზერი</span></a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:115
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:115
msgid ""
"We offer instructions on how to download for <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -986,15 +1158,15 @@ msgstr ""
"href=\"https://www.torproject.org/projects/torbrowser.html.en#linux\">Linux</a>-ის"
" სისტემებზე."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:121
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:121
msgid "What kinds of people support Tor?"
msgstr "როგორი ხალხი უჭერს მხარს Tor-ს?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:125
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:125
msgid "All kinds of people."
msgstr "განურჩევლად ყველა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:127
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:127
msgid ""
"Thousands of individuals have donated to support the Tor Project, and we "
"have also received funding from a wide range of organizations including "
@@ -1012,7 +1184,7 @@ msgstr ""
"Germany, U.S. Naval Research Laboratory, Omidyar Network, SRI International "
"და Radio Free Asia."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:129
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:129
msgid ""
"People also support Tor in non-financial ways, for example by running Tor "
"relays to help carry traffic for other users."
@@ -1020,7 +1192,7 @@ msgstr ""
"ხალხის მხარს უჭერს Tor არაფინანსური საშუალებებითაც, მაგალითად Tor-ის "
"გადამცემების გაშვებით და სხვა მომხმარელების მონაცემების გატარებით."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:131
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:131
msgid ""
"In addition, everybody who uses Tor is helping to keep other users safe and "
"anonymous, because the more people using Tor, the harder it is to identify "
@@ -1030,11 +1202,11 @@ msgstr ""
"ვინაობის გაუმხელად ინტერნეტით სარგებლობაში, ვინაიდან რაც უფრო მეტი ადამიანი "
"გამოიყენებს Tor-ს, მით უფრო გართულდება ცალკეული პირების ამოცნობა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:137
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:137
msgid "How does the Tor software work to protect people's anonymity?"
msgstr "როგორ მუშაობს Tor ხალხის ვინაობის გამჟღავნებისგან დასაცავად?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:141
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:141
msgid ""
"Tor protects you by bouncing your communications around the Tor network, "
"which is a distributed network of relays run by volunteers all around the "
@@ -1044,7 +1216,7 @@ msgstr ""
"მრავალი ცალკეული დამოუკიდებელი გადამცემი წერტილისგან, უზრუნველყოფილი "
"მოხალისეების მიერ, მთელი მსოფლიოდან."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:143
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:143
msgid ""
"If someone is watching your internet connection, Tor prevents them from "
"finding out what sites you are visiting."
@@ -1052,14 +1224,14 @@ msgstr ""
"თუ ვინმე თვალყურს ადევნებს თქვენს ინტერნეტკავშირს, Tor არ მისცემს მას "
"საშუალებას დაადგინოს, რომელ საიტებს ეწვევით."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:145
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:145
msgid ""
"It also prevents sites you visit from finding out where you're located."
msgstr ""
"იგი, ასევე არ აძლევს საშუალებას იმ საიტებს, რომელთაც ეწვევით დაადგინოს, თუ "
"სად იმყოფებით."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:147
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:147
msgid ""
"You can read more about how Tor works on our <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -1070,7 +1242,7 @@ msgstr ""
"href=\"https://www.torproject.org/about/overview.html.en\">მიმოხილვის "
"გვერდი."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:154
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:154
msgid ""
"I would like to know more about how Tor works, what onion services are, or "
"how to run a relay."
@@ -1078,7 +1250,7 @@ msgstr ""
"მსურს ვიხილო უფრო ვრცლად, როგორ მუშაობს Tor, რას წარმოადგენს onion-"
"მომსახურებები ან როგორ ხდება გადამცემის გაშვება."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:158
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:158
msgid ""
"<a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/docs/faq.html.en\">This Tor Project "
@@ -1088,11 +1260,11 @@ msgstr ""
"href=\"https://www.torproject.org/docs/faq.html.en\">Tor-პროექტის ხ.დ.კ.</a>"
" გაგცემთ ყველა ამ კითხვაზე პასუხს და კიდევ მეტზეც."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:164
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:164
msgid "Does the Tor software work?"
msgstr "ასრულებს Tor თავის მოვალეობას სათანადოდ?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:168
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:168
msgid ""
"We believe Tor is the best solution available today, and we know that it "
"does a better job of keeping you safely anonymous than other options such as"
@@ -1103,7 +1275,7 @@ msgstr ""
"ვიდრე სხვა საშუალებები, როგორიცაა VPN-მომსახურებები, Proxy-კავშირები ან "
"ბრაუზერის „პირადი თვალიერების“ რეჟიმები."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:170
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:170
msgid ""
"We know that both the Russian government and the NSA have tried in the past "
"to crack Tor, and failed."
@@ -1111,7 +1283,7 @@ msgstr ""
"ვიცით, რომ როგორც რუსეთის მთავრობა ასევე ამერიკის ეროვნული უსაფრთხოების "
"სააგენტო რამდენჯერმე უკვე შეეცადა გაეტეხა Tor, თუმცა უშედეგოდ."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:172
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:172
msgid ""
"The Electronic Frontier Foundation says that Tor offers <a "
"class=\"hyperlinks links\" target=\"_blank\" "
@@ -1128,13 +1300,13 @@ msgstr ""
"უსაფრთხოების ცნობილი სპეციალისტი ბრიუს შნაიერი აღნიშნავს, რომ „დღესდღეობით, "
"საუკეთესო საშუალება ინტერნეტში ვინაობის გამჟღავნებისგან დასაცავად არის Tor“."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:178
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:178
msgid "Is what Tor does legal? Can I get in trouble for using it?"
msgstr ""
"Tor-ის გამოყენება კანონიერია? შეიძლება მისით სარგებლობის შედეგად რამე "
"უსიამოვნება შემემთხვას?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:182
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:182
msgid ""
"Downloading Tor Browser or using the Tor network is legal in nearly every "
"country."
@@ -1142,7 +1314,7 @@ msgstr ""
"Tor-ბრაუზერის ჩამოტვირთვა და გამოყენება თითქმის ყველა ქვეყანაში "
"სამართლებრივად დაშვებულია."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:184
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:184
msgid ""
"A few web sites occasionally block Tor, but that doesn't mean you're doing "
"anything wrong."
@@ -1150,7 +1322,7 @@ msgstr ""
"საიტების ნაწილი ზოგჯერ ზღუდავს Tor-ს, თუმცა ეს არ ნიშნავს, რომ რამე არასწორს"
" აკეთებთ."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:186
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:186
msgid ""
"Usually it means that site has had difficulties with visitors who've been "
"using Tor in the past, or that they misunderstand what Tor is and how it "
@@ -1161,7 +1333,7 @@ msgstr ""
" მნიშვნელობა და მისი მუშაობის საფუძველი (ჩვენ არ ვიშურებთ ძალისხმევას ამ "
"ყველაფრის შესაცვლელად)."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:188
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:188
msgid ""
"But it is not illegal to use Tor, and you shouldn't get in trouble for doing"
" it."
@@ -1169,7 +1341,7 @@ msgstr ""
"მაგრამ Tor-ის გამოყენება არაა უკანონობა და ამის გამო არანაირ უსიამოვნებას არ"
" გადააწყდებით."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:190
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:190
msgid ""
"You can find more information about Tor's legal status on the <a "
"class=\"hyperlinks links\" target=\"_blank\" "
@@ -1179,7 +1351,7 @@ msgstr ""
"class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.eff.org/torchallenge/faq.html\">EFF-ს საიტი</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:196
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:196
msgid ""
"Where can I find out more about the Tor Project, especially financial "
"information?"
@@ -1187,7 +1359,7 @@ msgstr ""
"სად შემიძლია უფრო ვრცლად ინფორმაციის მოძიება Tor-ის შესახებ, განსაკუთრებით "
"ფინანსური მონაცემების?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:200
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:200
msgid ""
"Here are the Tor Project's <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/about/financials.html.en\">financial "
@@ -1198,11 +1370,11 @@ msgstr ""
"href=\"https://www.torproject.org/about/financials.html.en\">ფინანსური "
"საბუთები და მისი ფორმა 990</a>"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:206
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:206
msgid "Where does the Tor Project's money come from?"
msgstr "საიდან აქვს Tor-პროექტს შემოსავალი?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:210
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:210
msgid ""
"Tor is supported by United States government funding agencies, NGOs, private"
" foundations, research institutions, private companies, and over 20,000 "
@@ -1212,7 +1384,7 @@ msgstr ""
"და კერძო ფონდები, კვლევითი და კერძო დაწესებულებები, აგრეთვე 20,000 ისეთივე "
"რიგითი შემომწირველი, როგორიც თქვენ ბრძანდებით."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:212
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:212
msgid ""
"(See <a class=\"hyperlinks links single-link\" target=\"_blank\" "
"href=\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject.org/about/sponsors</a>"
@@ -1222,7 +1394,7 @@ msgstr ""
"href=\"https://www.torproject.org/about/sponsors.html.en\">https://www.torproject.org/about/sponsors</a>"
" ვრცლად.)"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:214
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:214
msgid ""
"While we are grateful for this funding, we don't want the Tor Project to "
"become too dependent on any single source."
@@ -1230,7 +1402,7 @@ msgstr ""
"რამდენადაც მადლიერნი ვართ ამ შემონატანით, იმდენადვე არ გვსურს Tor-პროექტი "
"გახდეს მეტად დამოკიდებული დაფინანსების რომელიმე ცალკეულ წყაროზე."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:216
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:216
msgid ""
"Crowdfunding allows us to diversify our donor base and is unrestricted -- it"
" allows us to spend the money on the projects we think are most important "
@@ -1241,7 +1413,7 @@ msgstr ""
"შეგვეძლება თანხები მივმართოთ იმ პროექტებისკენ, რომლებიც მეტად მნიშვნელოვნად "
"მიგვაჩნია და სწრაფად შევძლოთ გარემო პირობების ცვლილებებთან შეგუება."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:218
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:218
msgid ""
"And so, we are asking you to help financially support us, to increase the "
"Tor Project's independence and ensure the sustainability of the products and"
@@ -1251,16 +1423,16 @@ msgstr ""
"პროექტის დამოუკიდებლობა და უზრუნველვყოთ მოწოდებული პროდუქტისა და "
"მომსახურების მდგრადი განვითარება."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:224
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:224
msgid ""
"How much money does the Tor Project spend annually, and what is it used for?"
msgstr "რა ოდენობის თანხას ხარჯავს Tor-პროექტი ყოველწლიურად და რა მიზნით?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:228
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:228
msgid "The Tor Project spends about $4 million annually."
msgstr "Tor-პროექტი საჭიროებს დაახლოებით $4 მილიონს ყოველწლიურად."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:230
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:230
#, php-format
msgid ""
"About 80% of the Tor Project's spending goes to staffing, mostly software "
@@ -1269,7 +1441,7 @@ msgstr ""
"დაახლოებით 80% იხარჯება Tor-პროექტის თანამშრომლების ხელფასებზე, უმეტესად "
"პროგრამული უზრუნველყოფის სპეციალისტების."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:232
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:232
msgid ""
"About 10% goes towards administrative costs such as accounting and legal "
"costs and bank fees."
@@ -1278,7 +1450,7 @@ msgstr ""
"ანგარიშების მომზადება, სამართლებრივი საკითხების მოგვარება და საბანკო "
"მომსახურებები."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:234
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:234
msgid ""
"The remaining 10% is spent on travel, meetings and conferences, which are "
"important for Tor because the Tor community is global."
@@ -1287,11 +1459,11 @@ msgstr ""
"მოსაწყობად, რაც მეტად მნიშვნელოვანია, ვინაიდან Tor წარმოადგენს საერთაშორისო "
"ერთობას."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:240
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:240
msgid "Is my donation tax-deductible?"
msgstr "ჩემი შემოწირულობა გადასახადებისგან თავისუფალია?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:244
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:244
msgid ""
"If you pay taxes in the United States, your donation to Tor is tax "
"deductible to the full extent required by law."
@@ -1299,11 +1471,11 @@ msgstr ""
" თუ შეერთებულ შტატებში იხდით გადასახადებს, თქვენი შემოწირულობა Tor-ში სრულად"
" გათავისუფლდება კანონით განსაზღვრული ოდენობის პირობებში."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:246
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:246
msgid "Following is information you may need for reporting purposes:"
msgstr "შემდეგი ინფორმაცია შეიძლება გამოგადგეთ ანგარიშის წარსადგენად:"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:251
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:251
msgid ""
"<b>Tor Project Tax ID Number (EIN #):</b> 20-8096820<br>\n"
" <b>Address:</b><br>\n"
@@ -1321,16 +1493,16 @@ msgstr ""
" <b>სატელეფონო ნომერი:</b> 206-420-3136<br>\n"
" <b>საკონტაქტო პირი:</b> Isabela Bagueros, Executive Director<br>"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:264
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:264
msgid "If I am not in the United States, can I still donate?"
msgstr ""
"თუ არ ვიმყოფები შეერთებულ შტატებში, მაინც შემეძლება შემოწირულობის გაღება?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:268
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:268
msgid "Yes, definitely."
msgstr "დიახ, რასაკვირველია."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:270
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:270
msgid ""
"Your donation probably isn't tax-deductible (unless you pay taxes on U.S. "
"income) but we would very much appreciate your support."
@@ -1339,7 +1511,7 @@ msgstr ""
" შეერთებულ შტატებში), თუმცა თქვენი მხარდაჭერა ჩვენთვის მეტად მნიშვნელოვანი "
"და ფასეულია."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:276
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:276
msgid ""
"Can I donate to a specific project, or restrict my donation to a particular "
"purpose?"
@@ -1347,12 +1519,12 @@ msgstr ""
"შემიძლია თანხის შეტანა ცალკეული პროექტებისთვის ან ჩემი შენატანის, ცალკეული "
"დანიშნულებისთვის განსაზღვრა?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:280
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:560
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:280
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:560
msgid "No, sorry."
msgstr "არა, სამწუხაროდ."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:282
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:282
msgid ""
"If we accept a donation from someone who has specified how they want it "
"used, we're required by the IRS to track and report separately on that "
@@ -1363,7 +1535,7 @@ msgstr ""
"სამსახურში თითოეული შემონატანისთვის წარვადგინოთ ცალკეული აღრიცხვები და "
"მოხსენებები, სათანადოდ დაიხარჯა თუ არა თანხა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:284
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:284
msgid ""
"That would be a big administrative burden for a small organization, and we "
"don't think it's a good idea for us."
@@ -1371,7 +1543,7 @@ msgstr ""
"ეს კი მძიმე საგადასახადო ტვირთი იქნება ჩვენნაირი მცირე დაწესებულებისთვის და "
"არ მიგვაჩნია გამართლებულად."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:286
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:286
msgid ""
"However, we would be very happy to hear your ideas and feedback about our "
"work."
@@ -1379,7 +1551,7 @@ msgstr ""
"თუმცა, მოხარულნი ვიქნებით თუ გაგვიზიაროთ თქვენს აზრს და მივიღებთ "
"გამოხმაურებებს ჩვენი საქმიანობის თაობაზე."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:288
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:288
msgid ""
"If you're donating using a mechanism that allows for comments, feel free to "
"send your thoughts that way."
@@ -1388,15 +1560,15 @@ msgstr ""
"დართვის საშუალებას, თავისუფლად შეგიძლიათ ამ გზით მოგვაწოდოთ თქვენი "
"მოსაზრებები."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:294
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:294
msgid "Can I donate while using Tor Browser?"
msgstr "შემიძლია თანხის შემოტანა Tor-ბრაუზერის გამოყენებით?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:298
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:298
msgid "Yes! In our testing, donation works via Tor Browser."
msgstr "დიახ! შემოწირულობის გაღება Tor-ბრაუზერის საშუალებითაც შესაძლებელია."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:300
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:300
msgid ""
"If you run into problems, please contact <span "
"class=\"email\">giving(at)torproject.org</span>."
@@ -1404,7 +1576,7 @@ msgstr ""
"ხარვეზების არსებობის შემთხვევაში, დაგვიკავშირდით ელფოსტაზე <span "
"class=\"email\">giving(at)torproject.org</span>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:304
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:304
msgid ""
"For users logging in to Paypal: some people had no problem donating via "
"PayPal while using Tor Browser."
@@ -1413,7 +1585,7 @@ msgstr ""
"იყენებს Tor-ბრაუზერით, არანაირი დაბრკოლება არ შექმნია შემოწირულობის "
"გაკეთებისას."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:306
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:306
msgid ""
"In past years, some people couldn't complete the donation process, and one "
"person had their PayPal account temporarily frozen."
@@ -1421,17 +1593,17 @@ msgstr ""
"წლების წინ, ზოგიერთმა ვერ შეძლო თანხის შეტანის დასრულება, ერთ მომხმარებელს "
"კი PayPal-ის ანგარიში დროებით გაეყინა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:308
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:308
msgid "If you run into any problems donating via PayPal, please let us know."
msgstr ""
"თუ რამე ხარვეზს გადააწყდებით PayPal-ის შემოწირულობის გაკეთებისას, გთხოვთ "
"გვაცნობოთ."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:314
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:314
msgid "How can I donate via debit or credit card?"
msgstr "როგორ შემოვიტანო თანხა სადებეტო ან საკრედიტო ბარათით?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:318
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:318
msgid ""
"To donate using a major credit card or debit card (VISA, MasterCard, "
"Discover or American Express) or via PayPal, please visit our <a "
@@ -1442,11 +1614,11 @@ msgstr ""
"გთხოვთ ეწვიოთ ჩვენს <a href=\"https://donate.torproject.org\">შემოწირულობის "
"გვერდს</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:324
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:324
msgid "Why do you ask for my address and similar information?"
msgstr "რისთვის ითხოვთ ჩემს მისამართსა და მსგავს მონაცემებს?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:328
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:328
msgid ""
"If you donate by credit card, you will be asked for some information that's "
"required to process your credit card payment, including your billing "
@@ -1456,7 +1628,7 @@ msgstr ""
"რომლებიც საჭიროა საკრედიტო ბარათით გადახდის შესასრულებლად, მათ შორისაა "
"თქვენი ანგარიშის მისამართი."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:330
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:330
msgid ""
"This allows our payment processor to verify your identity, process your "
"payment, and prevent fraudulent charges to your credit card."
@@ -1464,18 +1636,18 @@ msgstr ""
"მისი საშუალებით, გადახდის შემსრულებელს საშუალება ექნება დაამოწმოს თქვენი "
"ვინაობა, გადახდის მართებულობა და თაღლითური დანახარჯებისგან დაცვა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:332
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:332
msgid ""
"We don't ask for information beyond what's required by the payment "
"processor."
msgstr ""
"ჩვენ არ ვითხოვთ იმაზე მეტ მონაცემს, რაც გადახდის შემსრულებელს ესაჭიროება."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:338
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:338
msgid "Why is there a minimum donation?"
msgstr "რატომ არის შესატანი თანხის უმცირესი ოდენობა განსაზღვრული?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:342
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:342
msgid ""
"People who have stolen credit card information often donate to nonprofits as"
" a way of testing whether the card works."
@@ -1483,7 +1655,7 @@ msgstr ""
"ხალხი, ვინც იპარავს საკრედიტო ბარათის მონაცემებს, ხშირად სწორედ "
"შემოწირულობების შეტანით ცდილობს დაადგინოს, მუშაობს თუ არა ბარათი."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:344
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:344
msgid ""
"These people typically use a very small amount for their testing, and we've "
"found that setting a $1 minimum donation seems to deter them."
@@ -1491,11 +1663,11 @@ msgstr ""
"ასეთი ხალხი ჩვეულებრივ ძალიან მცირე ოდენობის თანხას იყენებს შემოწმებისთვის "
"და როგორ გამოვარკვიეთ, უმცირეს თანხად $1 დოლარის მითითება ზღუდავს მათ."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:350
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:350
msgid "Is there a maximum donation?"
msgstr "არსებობს შესატანი თანხის ზედა ზღვარი?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:354
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:354
msgid ""
"No, no, no! More funding from you means we can do more things we are excited"
" to do, like hire a person to monitor the Tor network full time, or "
@@ -1508,11 +1680,11 @@ msgstr ""
"შემოწმებებისა და იმ სიახლეების დასანერგად, რომლებიც მეტად გააძლიერებს Tor-"
"ქსელს."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:360
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:360
msgid "Can I donate via bitcoin?"
msgstr "შემიძლია ბიტკოინის შემოწირვა?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:364
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:364
msgid ""
"Yes! We accept <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/donate/donate-options.html.en\">bitcoin "
@@ -1522,7 +1694,7 @@ msgstr ""
"href=\"https://www.torproject.org/donate/donate-options.html.en\">ბიტკოინებს"
" BitPay-ით</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:370
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:370
msgid ""
"If I want my donation to be anonymous, what is the best way for me to "
"donate?"
@@ -1530,7 +1702,7 @@ msgstr ""
"თუ მსურს თანხის შემოტანა ვინაობის გაუმხელელად, რა არის ამისთვის საუკეთესო "
"გზა?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:374
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:374
msgid ""
"You can donate by <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/donate/donate-"
@@ -1540,7 +1712,7 @@ msgstr ""
"href=\"https://www.torproject.org/donate/donate-options.html.en#cash\">ჩეკი "
"ფოსტის საშუალებით</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:376
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:376
msgid ""
"You can donate via bitcoin if you have bitcoin set up in a way that "
"preserves your anonymity."
@@ -1548,11 +1720,11 @@ msgstr ""
"ასევე შეგიძლიათ ბიტკოინის შემოტანაც, თუ ისე გაქვთ გამართული, რომ ვინაობის "
"გამჟღავნებისგან დაცვა უზრუნველყოფილია."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:378
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:378
msgid "You can buy cash gift cards and mail them to us."
msgstr "ასევე შეგიძლიათ სასაჩუქრე ბარათების ყიდვა და ფოსტით გამოგზავნა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:380
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:380
msgid ""
"There are probably other ways to donate anonymously that we haven't thought "
"of-- maybe you will :)"
@@ -1560,7 +1732,7 @@ msgstr ""
"შესაძლოა კიდევ იყოს სხვა გზები ვინაობის გაუმხელელად შემოწირულობისთვის, "
"რომლებზეც არ გვიფიქრია -- მაგრამ თქვენ მოიფიქროთ :)"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:387
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:387
msgid ""
"Is the Tor Project required to identify me as a donor to the United States "
"government, or to any other authority?"
@@ -1568,7 +1740,7 @@ msgstr ""
"ვალდებულია Tor-პროექტი წარუდგინოს ჩემი ვინაობა შემომწირველის სახით "
"შეერთებული შტატების მთავრობას ან სხვა უფლებამოსილ მხარეს?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:391
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:391
msgid ""
"If you donate $5,000 or more to the Tor Project in a single year, we are "
"required to report the donation amount and your name and address (if we have"
@@ -1579,7 +1751,7 @@ msgstr ""
"მიღებული თანხის ოდენობის, თქვენი სახელისა და მისამართის მითითბით (თუ "
"გვეცოდინება) დანართში B ფორმა 990-ით, რომელიც ყოველწლიურად ივსება."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:393
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:393
msgid ""
"However, it's normal for nonprofits to redact individual donor information "
"from the copy of the 990 that's made publicly-available, and that's what we "
@@ -1589,7 +1761,7 @@ msgstr ""
"შემომწირველების მონაცემების შეცვლა 990-ის საჯაროდ ხელმისაწვდომ ასლში, რასაც "
"ჩვენც ვაკეთებთ."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:395
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:395
msgid ""
"We are not required to identify donors to any other organization or "
"authority, and we do not."
@@ -1597,7 +1769,7 @@ msgstr ""
"ჩვენ არ ვართ ვალდებულნი შემომწირველების ვინაობა სხვა დაწესებულებებს ან "
"უფლებამოსილ მხარეს წარვუდგინოთ და ასეც ვიქცევით."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:397
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:397
msgid ""
"(Also, if you wanted, you could give us $4,999 in late 2018 and $4,999 in "
"early 2019.)"
@@ -1605,7 +1777,7 @@ msgstr ""
"(ასევე, სურვილის შემთხვევაში შეგიძლიათ $4,999 შეიტანოთ 2018 წლის ბოლოსკენ და"
" 2019 წლის დასაწყისშიც კვლავ $4,999.)"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:403
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:403
msgid ""
"In your privacy policy, you say you will never publicly identify me as a "
"donor without my permission."
@@ -1613,15 +1785,15 @@ msgstr ""
" თქვენს პირადი მონაცემების დებულებაში, შეგიძლიათ მიუთითოთ რომ გსურთ არასდროს"
" გაასაჯაროონ თქვენი ვინაობა შემომწირველის სახით, თქვენი ნებართვის გარეშე."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:405
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:405
msgid "What does that mean?"
msgstr "ეს რას ნიშნავს?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:409
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:409
msgid "Yes, that's right."
msgstr "დიახ, სწორია."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:411
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:411
msgid ""
"If you donate to the Tor Project, there will be some people at the Tor "
"Project who know about your donation."
@@ -1629,7 +1801,7 @@ msgstr ""
"Tor-პროექტში თანხის შეტანისას, ხალხის ნაწილს თავად Tor-პროექტში ეცოდინებათ "
"თქვენი შემოწირულობის შესახებ."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:413
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:413
msgid ""
"However, we will never publicly identify you as a donor, unless you have "
"given us permission to do so."
@@ -1637,7 +1809,7 @@ msgstr ""
"თუმცა, ჩვენ არასდროს გავასაჯაროებთ თქვენს ვინაობას შემომწირველის სახით, "
"თქვენი ნებართვის გარეშე."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:415
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:415
msgid ""
"That means we won't post your name on our website, thank you on Twitter, or "
"do anything else that would publicly identify you as someone who has "
@@ -1647,7 +1819,7 @@ msgstr ""
"სამადლობელ წერილს Twitter-ზე ან ნებისმიერ სხვა მოქმედებას, სადაც თქვენი "
"ვინაობა გამოჩნდება, როგორც შემომწირველის."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:417
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:417
msgid ""
"If we decide we would like to publicly name you as a donor, we will ask you "
"first, and will not do it until and unless you say it's okay."
@@ -1655,7 +1827,7 @@ msgstr ""
"თუ ჩვენ გადავწყვეტთ თქვენს საჯაროდ მოხსენიებას შემომწირველის სახით, წინასწარ"
" შეგეკითხებით და არაფერს მოვიმოქმედებთ თქვენი სურვილის საწინააღმდეგო."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:423
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:423
msgid ""
"It's important to me that my donation be tax-deductible, but I don't pay "
"taxes in the United States."
@@ -1663,7 +1835,7 @@ msgstr ""
"ჩემთვის მნიშვნელოვანია რომ შემოწირულობა იყოს გადასახადებისგან თავისუფალი, "
"მაგრამ არ ვიხდი გადასახადებს შეერთებულ შტატებში."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:427
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:427
msgid ""
"Right now, we can only offer tax-deductibility to donors who pay taxes in "
"the United States."
@@ -1671,7 +1843,7 @@ msgstr ""
"ამჟამად, ჩვენ გადასახადებისგან თავისუფალი შემოწირულობა მხოლოდ შეგვიძლია "
"შევთავაზოთ შეერთებული შტატების გადასახადების გადამხდელებს."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:429
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:429
msgid ""
"If it's important to you that your donations be tax-deductible in a "
"different country, let us know and we will try to offer tax-deductibility in"
@@ -1681,7 +1853,7 @@ msgstr ""
"სხვა ქვეყანაში, გვაცნობეთ და შევეცდებით მომავალში თქვენი ქვეყნისთვისაც "
"შემოგთავაზოთ გადასახადებისგან გათავისუფლება."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:431
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:431
msgid ""
"Or, if you are in Germany, France or Sweden, <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -1695,7 +1867,7 @@ msgstr ""
"დაწესებულებები მხარს უჭერენ Tor-ქსელს</a> და შესაძლოა შემოგთავაზონ "
"გადასახადებისგან თავისუფალი შემოწირულობის გაკეთების შესაძლებლობა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:437
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:437
msgid ""
"What if I don't want to use credit card or PayPal? Is there another way I "
"can donate?"
@@ -1703,7 +1875,7 @@ msgstr ""
"თუ არ მსურს საკრედიტო ბარათის ან PayPal-ის გამოყენება? არის სხვა გზები "
"შემოწირულობის გასაკეთებლად?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:441
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:441
msgid ""
"Yes! Here is a list of <a href=\"https://www.torproject.org/donate/donate-"
"options.html.en\" class=\"hyperlinks links\" target=\"_blank\">other ways "
@@ -1713,11 +1885,11 @@ msgstr ""
"options.html.en\" class=\"hyperlinks links\" target=\"_blank\">სხვა "
"საშუალებები შემოწირულობის გასაკეთებლად.</a>"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:448
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:448
msgid "What is your donor privacy policy?"
msgstr "რა არის თქვენი შემომწირველის პირადი მონაცემების დაცვის დებულება?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:452
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:452
msgid ""
"Here is the Tor Project <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"/%langcode%/privacy-policy\">donor privacy policy</a>."
@@ -1726,11 +1898,11 @@ msgstr ""
"target=\"_blank\" href=\"/%langcode%/privacy-policy\">შემომწირველის პირადი "
"მონაცემების დებულება</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:458
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:458
msgid "What is your refund policy?"
msgstr "რა არის თქვენი ანაზღაურების დებულება?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:462
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:462
msgid ""
"If you want your donation refunded, please tell us by emailing <span "
"class=\"email\">giving(at)torproject.org</span>."
@@ -1738,7 +1910,7 @@ msgstr ""
"თუ გსურთ შემოწირული თანხის ანაზღაურება, გთხოვთ გვაცნობოთ ელფოსტაზე <span "
"class=\"email\">giving(at)torproject.org</span>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:464
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:464
msgid ""
"To process your refund we'll need to know the date of your donation, the "
"amount you donated, your full name, the payment method you used and your "
@@ -1747,11 +1919,11 @@ msgstr ""
"თანხის ანაზღაურებისთვის, დაგვჭირდება თქვენი შეტანის თარიღი, თანხის ოდენობა, "
"სრული სახელი, გადახდის საშუალება თანხის წარმომავლობის ქვეყანა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:466
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:466
msgid "Please also tell us why you're asking for a refund."
msgstr "გთხოვთ გვაცნობოთ, თუ რატომ ითხოვთ თანხის დაბრუნებას."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:468
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:468
msgid ""
"Please note that some payment methods won't support refunds, or require them"
" to be made in a specific way, so we may need additional information from "
@@ -1761,16 +1933,16 @@ msgstr ""
"ანაზღაურების შესაძლებლობა ან რამე საგანგებო გზებს საჭიროებს, ასე რომ "
"დამატებითი ინფორმაცია გვესაჭიროება თქვენი მოთხოვნის შესასრულებლად."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:474
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:474
msgid "Can I donate by mail?"
msgstr "შემიძლია თანხის შემოწირვა ფოსტით?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:478
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:584
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:478
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:584
msgid "Yes."
msgstr "დიახ."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:480
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:480
msgid ""
"Our mailing address is The Tor Project, 217 First Avenue South #4903, "
"Seattle WA 98194, USA"
@@ -1778,19 +1950,19 @@ msgstr ""
"ჩვენი საფოსტო მონაცემებია The Tor Project, 217 First Avenue South #4903, "
"Seattle WA 98194, USA"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:486
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:486
msgid "Do you accept cash donations?"
msgstr "იღებთ ნაღდი ფულით შემოწირულობებს?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:490
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:490
msgid "Yes"
msgstr "დიახ"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:496
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:496
msgid "Does Tor Project accept matching donations?"
msgstr "Tor-პროექტისთვის მისაღებია შემოწირულობების გაორმაგება?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:500
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:500
msgid ""
"Yes! Many companies --such as Google, Microsoft, eBay, PayPal, Apple, "
"Verizon, Red Hat, many universities, and others-- will match donations made "
@@ -1800,7 +1972,7 @@ msgstr ""
"Apple, Verizon, Red Hat, ბევრი სასწავლებელი და სხვები -- აორმაგებს თავიანთი "
"თანამშრომლების შენატანებს."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:502
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:502
msgid ""
"The fastest way to find out if your company matches donations is usually by "
"checking with your HR department, or you can search for your company name at"
@@ -1813,7 +1985,7 @@ msgstr ""
"class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.matchinggifts.com/rit/\">https://www.matchinggifts.com/rit/</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:504
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:504
msgid ""
"If your company isn't currently set up to match donations to the Tor "
"Project, we would be happy to help with the paperwork."
@@ -1822,7 +1994,7 @@ msgstr ""
"გაორმაგების შესაძლებლობა Tor-პროექტისთვის, მადლიერნი ვიქნებით თუ მხარს "
"დაგვიჭერთ წერილობითი სახით."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:506
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:506
msgid ""
"If you want help figuring out the process, write us at <span "
"class=\"email\">giving(at)torproject.org</a>."
@@ -1830,11 +2002,11 @@ msgstr ""
"თუ გსურთ გაერკვეთ არსებულ ვითარებაში, მოგვწერეთ მისამართზე <span "
"class=\"email\">giving(at)torproject.org</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:512
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:512
msgid "Can I become a Tor Project member?"
msgstr "შემიძლია გავხდე Tor-პროექტის წევრი?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:516
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:516
msgid ""
"Right now, we don't have a membership program, but we may set one up in the "
"future."
@@ -1842,7 +2014,7 @@ msgstr ""
"ამჟამად, ჩვენ არ გაგვაჩნია გაწევრიანების პროგრამა, თუმცა მომავალში შესაძლოა "
"გავაკეთოთ."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:518
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:518
msgid ""
"If you want to get involved with the Tor Project, <a class=\"hyperlinks "
"links\" target=\"_blank\" "
@@ -1854,11 +2026,11 @@ msgstr ""
"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">ესაა "
"საუკეთესო ადგილი დასაწყისისთვის</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:524
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:524
msgid "How can I get a Tor t-shirt or stickers?"
msgstr "როგორ შემიძლია მაისურის ან მისაწებებლების მიღება?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:528
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:528
msgid ""
"A variety of thank-you gifts for donors, including t-shirts, hoodies and "
"stickers, are presented on our main <a "
@@ -1868,7 +2040,7 @@ msgstr ""
"მაისურები, მოსაცმელები და სამახსოვრო მისაწეპებლები წარმოდგენილი ჩვენს <a "
"href=\"https://donate.torproject.org\">შემოწირულობის გვერდზე</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:534
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:534
msgid ""
"If I want to stay in touch with the Tor Project, what's the best way for me "
"to do that?"
@@ -1876,7 +2048,7 @@ msgstr ""
"თუ მსურს დარჩეთ კავშირზე Tor-პროექტის სიახლეების შესახებ, რა არის ამისთვის "
"საუკეთესო გზა?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:538
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:538
msgid ""
"You can sign up to receive <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://newsletter.torproject.org/\">Tor News</a>, read the <a "
@@ -1892,17 +2064,17 @@ msgstr ""
"class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://twitter.com/torproject\">გამოგვყევით Twitter-ზე</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:544
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:544
msgid ""
"Does the Tor Project participate in the Combined Federal Campaign program?"
msgstr ""
"იღებს Tor-პროექტი მონაწილეობას Combined Federal Campaign-ის პროგრამაში?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:548
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:548
msgid "No, Tor doesn't currently participate in the CFC program."
msgstr "არა, Tor ამჟამად არ მონაწილეობს CFC-პროგრამაში."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:550
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:550
msgid ""
"If you'd like to get Tor added to the CFC program in your location, that "
"would be great: please let us know if you need any help."
@@ -1910,12 +2082,12 @@ msgstr ""
"თუ გსურთ Tor დაემატოს CFC-პროგრამას თქვენს ადგილმდებარეობაზე, მშვენიერი "
"იქნება: გთხოვთ გვაცნობოთ, თუ დახმარება დაგჭირდებათ."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:556
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:556
msgid "Can I donate my airline miles, flight vouchers, or hotel points?"
msgstr ""
"შემიძლია შემოგწიროთ ჩემი ფრენის ბარათები, გავლილი მანძილი, სასტუმროს ქულები?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:562
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:562
msgid ""
"We would like to accept your miles, vouchers and hotel points, and in the "
"future we may be able to."
@@ -1923,15 +2095,15 @@ msgstr ""
"სიამოვნებით მივიღებდით თქვენს ბარათებს, მანძილსა და ქულებს და მომავალში, "
"შეიძლება გავხადოთ ეს შესაძლებელი."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:568
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:568
msgid "Can I donate hardware?"
msgstr "შემიძლია აპარატურის შემოწირვა?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:572
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:572
msgid "Typically no, we don't encourage people to donate hardware."
msgstr "ზოგადად არა, ჩვენ არ გვაქვს აპარატურის შემოწირვის შესაძლებლობა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:574
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:574
msgid ""
"But if you want to make a hardware donation that you think might be "
"especially useful for us, please mail <span "
@@ -1941,11 +2113,11 @@ msgstr ""
"გამოსადეგი შეიძლება იყოს ჩვენთვის, შეგიძლიათ მოგვწეროთ მისამართზე <span "
"class=\"email\">giving(at)torproject.org</span>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:580
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:580
msgid "Can I donate my time?"
msgstr "შემიძლია დროის შემოწირვა?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:586
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:586
msgid ""
"Here's a <a class=\"hyperlinks links\" target=\"_blank\" "
"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">list of "
@@ -1955,15 +2127,15 @@ msgstr ""
"href=\"https://www.torproject.org/getinvolved/volunteer.html.en\">ჩამონათვალი"
" მოცემული, სადაც ვისურვებდით თქვენს დახმარებას</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:592
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:592
msgid "I would like my company to support Tor."
msgstr "მსურს, რომ ჩემი დაწესებულება მხარს უჭერდეს Tor-ს."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:594
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:594
msgid "What can we do to help?"
msgstr "როგორ შეგვიძლია დაგეხმაროთ?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:598
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:598
msgid ""
"Your company could match donations made by its employees to the Tor Project"
"--that would be wonderful."
@@ -1971,7 +2143,7 @@ msgstr ""
"თქვენს დაწესებულებას შეუძლია თქვენი შემოწირულობების შესაბამისი თანხის გაღება"
" Tor-პროექტისთვის -- რაც შესანიშნავი იქნება."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:600
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:600
msgid ""
"Your company may operate a corporate foundation that gives out grants, and "
"if so, you should encourage it to fund us."
@@ -1979,7 +2151,7 @@ msgstr ""
"თქვენი დაწესებულება შეიძლება უზრუნველყოფდეს კორპორაციულ ფონდს, რომელიც "
"გასცემს დაფინანსებას და თქვენ შეგიძლიათ შესთავაზოთ ჩვენი დაფინანსება."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:602
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:602
msgid ""
"Maybe your company would be willing to <a class=\"hyperlinks links\" "
"target=\"_blank\" "
@@ -1991,7 +2163,7 @@ msgstr ""
"href=\"https://www.torproject.org/docs/faq.html.en#HowDoIDecide\">უზრუნველყოს"
" Tor-ის გადამცემი</a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:604
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:604
msgid ""
"If your company sells cloud services, perhaps it could donate these to Tor: "
"We use them in some anti-censorship projects."
@@ -2000,25 +2172,25 @@ msgstr ""
"ისთვის შემოწირულობის გაღება: მსგავსი მომსახურებები გამოდგება ცენზურისგან "
"თავის ასარიდებელი პროექტებისთვის."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:610
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:610
msgid "You don't support my preferred way to donate."
msgstr "თქვენთან არაა მხარდაჭერილი შემოწირულობის ჩემთვის სასურველი გზა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:612
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:612
msgid "Can I recommend a new donation method to you?"
msgstr "შემიძლია გირჩიოთ შემოწირულობის ახალი გზები?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:616
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:616
msgid "Sure."
msgstr "რა თქმა უნდა."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:618
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:618
msgid "Just mail us at <span class=\"email\">giving(at)torproject.org</span></a>."
msgstr ""
"უბრალოდ მოგვწერეთ მისამართზე <span "
"class=\"email\">giving(at)torproject.org</span></a>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:624
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:624
msgid ""
"Will the Tor Project accept donations from anybody, or do you reserve the "
"right to reject support from specific organizations or individuals?"
@@ -2026,27 +2198,27 @@ msgstr ""
"Tor-პროექტი ნებისმიერისგან იღებს შემოწირულობებს თუ იტოვებთ უფლებას უარი "
"თქვათ ცალკეული დაწესებულებებისგან ან პირებისგან მხარდაჭერის მიღებაზე?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:628
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:628
msgid "We do reserve the right to reject a donation."
msgstr "ჩვენ ვიტოვებთ შემოწირულობაზე უარის თქმის უფლებას."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:630
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:630
msgid "To date though, we haven't exercised that right."
msgstr "დღემდე, ჯერ არ გამოგვიყენებია ეს უფლება."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:632
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:632
msgid "We are happy that a broad range of people use and support Tor."
msgstr "ჩვენ მოხარულნი ვართ, რომ ხალხის დიდი ნაწილი მხარს უჭერს Tor-ს."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:638
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:638
msgid "I have more questions."
msgstr "კიდევ მაქვს შეკითხვები."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:640
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:640
msgid "How can I get answers?"
msgstr "როგორ შემიძლია პასუხების მიღება?"
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:644
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:644
msgid ""
"Feel free to send questions to <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span>."
@@ -2054,7 +2226,7 @@ msgstr ""
"თავისუფლად შეგიძლიათ გამოგვიგზავნოთ კითხვები მისამართზე <span "
"class=\"email\">frontdesk(at)rt.torproject.org</span>."
-#: tmp/cache_locale/0e/0e65c68f2900f432bc062864e7bafc989d6286e272f5e98882a99f52ea4c5c89.php:646
+#: tmp/cache_locale/4a/4ab2d928dab25aeb8c96bb2d1c2ad651173d6c029f40a442edf6925bfd038cd2.php:646
msgid ""
"We will try to answer you, and we'll also post your question (and the "
"answer) here."
@@ -2062,27 +2234,58 @@ msgstr ""
"შევეცდებით გიპასუხოთ და ჩვენ ასევე დავდებთ თქვენს კითხვას (პასუხთან ერთად) "
"აქ."
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:22
-msgid "See if your employer offers employee gift matching"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:29
+msgid ""
+"The European shirt fits run a little small so you might want to consider "
+"sizing up."
msgstr ""
-"ნახეთ, თქვენი დამქირავებელი უზრუნველყოფს თუ არა შემოწირულობის გაორმაგებას."
+"პერანგის ევროპული ზომები ოდნავ მცირეა, ასე რომ აჯობებს შეარჩიოთ უფრო დიდი "
+"ზომის."
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:52
-msgid "Company"
-msgstr "დაწესებულება"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:36
+msgid "Fit"
+msgstr "შეკერვის სახე"
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:60
-msgid "Matching Conditions"
-msgstr "გაორმაგების პირობები"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:40
+msgid "Select Fit"
+msgstr "მიუთითეთ შეკერვის სახე"
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:68
-msgid "Contact Information"
-msgstr "საკონტაქტო ინფორმაცია"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:44
+msgid "Slim"
+msgstr "ტანზე მომდგარი"
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:76
-msgid "Additional Notes"
-msgstr "დამატებითი შენიშვნები"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:48
+msgid "Classic"
+msgstr "კლასიკური"
-#: tmp/cache_locale/08/08a9b06344a88c9ea01db4cdf9711c9cee305183a512ae0e8b7381dae8c6d798.php:84
-msgid "Procedure"
-msgstr "პროცედურა"
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:56
+msgid "European"
+msgstr "ევროპული"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:66
+msgid "Size"
+msgstr "ზომა"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:70
+msgid "Select Size"
+msgstr "ზომის შერჩევა"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:74
+msgid "S"
+msgstr "S"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:78
+msgid "M"
+msgstr "M"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:82
+msgid "L"
+msgstr "L"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:86
+msgid "XL"
+msgstr "XL"
+
+#: tmp/cache_locale/36/36a88fcfb8a236c24db42d5e39602cd43f2ed8bec6f6b807fb97f8e091541f37.php:90
+msgid "XXL"
+msgstr "XXL"
1
0