mirror of
https://github.com/onionshare/onionshare.git
synced 2025-02-22 15:39:52 -05:00
Update docs
This commit is contained in:
parent
ebe26e569c
commit
8aeb99a031
@ -3,7 +3,7 @@
|
|||||||
VERSION=$(cat ../cli/onionshare_cli/resources/version.txt)
|
VERSION=$(cat ../cli/onionshare_cli/resources/version.txt)
|
||||||
|
|
||||||
# Supported locales
|
# Supported locales
|
||||||
LOCALES="en el ja km es sv tr uk"
|
LOCALES="en fr el pl es tr uk vi"
|
||||||
|
|
||||||
# Generate English .po files
|
# Generate English .po files
|
||||||
make gettext
|
make gettext
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
123
docs/gettext/_static/_sphinx_javascript_frameworks_compat.js
Normal file
123
docs/gettext/_static/_sphinx_javascript_frameworks_compat.js
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
/* Compatability shim for jQuery and underscores.js.
|
||||||
|
*
|
||||||
|
* Copyright Sphinx contributors
|
||||||
|
* Released under the two clause BSD licence
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* small helper function to urldecode strings
|
||||||
|
*
|
||||||
|
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL
|
||||||
|
*/
|
||||||
|
jQuery.urldecode = function(x) {
|
||||||
|
if (!x) {
|
||||||
|
return x
|
||||||
|
}
|
||||||
|
return decodeURIComponent(x.replace(/\+/g, ' '));
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* small helper function to urlencode strings
|
||||||
|
*/
|
||||||
|
jQuery.urlencode = encodeURIComponent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This function returns the parsed url parameters of the
|
||||||
|
* current request. Multiple values per key are supported,
|
||||||
|
* it will always return arrays of strings for the value parts.
|
||||||
|
*/
|
||||||
|
jQuery.getQueryParameters = function(s) {
|
||||||
|
if (typeof s === 'undefined')
|
||||||
|
s = document.location.search;
|
||||||
|
var parts = s.substr(s.indexOf('?') + 1).split('&');
|
||||||
|
var result = {};
|
||||||
|
for (var i = 0; i < parts.length; i++) {
|
||||||
|
var tmp = parts[i].split('=', 2);
|
||||||
|
var key = jQuery.urldecode(tmp[0]);
|
||||||
|
var value = jQuery.urldecode(tmp[1]);
|
||||||
|
if (key in result)
|
||||||
|
result[key].push(value);
|
||||||
|
else
|
||||||
|
result[key] = [value];
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* highlight a given string on a jquery object by wrapping it in
|
||||||
|
* span elements with the given class name.
|
||||||
|
*/
|
||||||
|
jQuery.fn.highlightText = function(text, className) {
|
||||||
|
function highlight(node, addItems) {
|
||||||
|
if (node.nodeType === 3) {
|
||||||
|
var val = node.nodeValue;
|
||||||
|
var pos = val.toLowerCase().indexOf(text);
|
||||||
|
if (pos >= 0 &&
|
||||||
|
!jQuery(node.parentNode).hasClass(className) &&
|
||||||
|
!jQuery(node.parentNode).hasClass("nohighlight")) {
|
||||||
|
var span;
|
||||||
|
var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg");
|
||||||
|
if (isInSVG) {
|
||||||
|
span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
|
||||||
|
} else {
|
||||||
|
span = document.createElement("span");
|
||||||
|
span.className = className;
|
||||||
|
}
|
||||||
|
span.appendChild(document.createTextNode(val.substr(pos, text.length)));
|
||||||
|
node.parentNode.insertBefore(span, node.parentNode.insertBefore(
|
||||||
|
document.createTextNode(val.substr(pos + text.length)),
|
||||||
|
node.nextSibling));
|
||||||
|
node.nodeValue = val.substr(0, pos);
|
||||||
|
if (isInSVG) {
|
||||||
|
var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect");
|
||||||
|
var bbox = node.parentElement.getBBox();
|
||||||
|
rect.x.baseVal.value = bbox.x;
|
||||||
|
rect.y.baseVal.value = bbox.y;
|
||||||
|
rect.width.baseVal.value = bbox.width;
|
||||||
|
rect.height.baseVal.value = bbox.height;
|
||||||
|
rect.setAttribute('class', className);
|
||||||
|
addItems.push({
|
||||||
|
"parent": node.parentNode,
|
||||||
|
"target": rect});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (!jQuery(node).is("button, select, textarea")) {
|
||||||
|
jQuery.each(node.childNodes, function() {
|
||||||
|
highlight(this, addItems);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var addItems = [];
|
||||||
|
var result = this.each(function() {
|
||||||
|
highlight(this, addItems);
|
||||||
|
});
|
||||||
|
for (var i = 0; i < addItems.length; ++i) {
|
||||||
|
jQuery(addItems[i].parent).before(addItems[i].target);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
* backward compatibility for jQuery.browser
|
||||||
|
* This will be supported until firefox bug is fixed.
|
||||||
|
*/
|
||||||
|
if (!jQuery.browser) {
|
||||||
|
jQuery.uaMatch = function(ua) {
|
||||||
|
ua = ua.toLowerCase();
|
||||||
|
|
||||||
|
var match = /(chrome)[ \/]([\w.]+)/.exec(ua) ||
|
||||||
|
/(webkit)[ \/]([\w.]+)/.exec(ua) ||
|
||||||
|
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
|
||||||
|
/(msie) ([\w.]+)/.exec(ua) ||
|
||||||
|
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) ||
|
||||||
|
[];
|
||||||
|
|
||||||
|
return {
|
||||||
|
browser: match[ 1 ] || "",
|
||||||
|
version: match[ 2 ] || "0"
|
||||||
|
};
|
||||||
|
};
|
||||||
|
jQuery.browser = {};
|
||||||
|
jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true;
|
||||||
|
}
|
2
docs/gettext/_static/jquery.js
vendored
Normal file
2
docs/gettext/_static/jquery.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -6,9 +6,9 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.6\n"
|
"Project-Id-Version: OnionShare 2.6.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-10-09 15:01-0700\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.6\n"
|
"Project-Id-Version: OnionShare 2.6.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-10-09 15:01-0700\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.6\n"
|
"Project-Id-Version: OnionShare 2.6.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-10-09 15:01-0700\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.6\n"
|
"Project-Id-Version: OnionShare 2.6.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-10-09 15:01-0700\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.6\n"
|
"Project-Id-Version: OnionShare 2.6.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-10-09 15:01-0700\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.6.1\n"
|
"Project-Id-Version: OnionShare 2.6.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-06-06 13:07+0200\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -145,7 +145,7 @@ msgid "Signatures"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:76
|
#: ../../source/install.rst:76
|
||||||
msgid "You can find the signatures (as ``.asc`` files), as well as Windows, macOS, Flatpak, Snap, and source packages, at https://onionshare.org/dist/ in the folders named for each version of OnionShare. You can also find them on the `GitHub Releases page <https://github.com/micahflee/onionshare/releases>`_."
|
msgid "You can find the signatures (as ``.asc`` files), as well as Windows, macOS, Flatpak, Snap, and source packages, at https://onionshare.org/dist/ in the folders named for each version of OnionShare. You can also find them on the `GitHub Releases page <https://github.com/onionshare/onionshare/releases>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:80
|
#: ../../source/install.rst:80
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.6\n"
|
"Project-Id-Version: OnionShare 2.6.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-10-09 15:01-0700\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.6\n"
|
"Project-Id-Version: OnionShare 2.6.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-10-09 15:01-0700\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.6.1\n"
|
"Project-Id-Version: OnionShare 2.6.1\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2023-06-06 13:07+0200\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -8,20 +8,21 @@ exclude_patterns = []
|
|||||||
|
|
||||||
languages = [
|
languages = [
|
||||||
("English", "en"), # English
|
("English", "en"), # English
|
||||||
# ("Français", "fr"), # French
|
("Français", "fr"), # French
|
||||||
# ("Deutsch", "de"), # German
|
# ("Deutsch", "de"), # German
|
||||||
("Ελληνικά", "el"), # Greek
|
("Ελληνικά", "el"), # Greek
|
||||||
# ("Italiano", "it"), # Italian
|
# ("Italiano", "it"), # Italian
|
||||||
("日本語", "ja"), # Japanese
|
# ("日本語", "ja"), # Japanese
|
||||||
("ភាសាខ្មែរ", "km"), # Khmer (Central)
|
# ("ភាសាខ្មែរ", "km"), # Khmer (Central)
|
||||||
# ("Norsk Bokmål", "nb_NO"), # Norwegian Bokmål
|
# ("Norsk Bokmål", "nb_NO"), # Norwegian Bokmål
|
||||||
# ("Polish", "pl"), # Polish
|
("Polish", "pl"), # Polish
|
||||||
# ("Portuguese (Brazil)", "pt_BR"), # Portuguese (Brazil))
|
# ("Portuguese (Brazil)", "pt_BR"), # Portuguese (Brazil))
|
||||||
# ("Русский", "ru"), # Russian
|
# ("Русский", "ru"), # Russian
|
||||||
("Español", "es"), # Spanish
|
("Español", "es"), # Spanish
|
||||||
("Svenska", "sv"), # Swedish
|
# ("Svenska", "sv"), # Swedish
|
||||||
("Türkçe", "tr"), # Turkish
|
("Türkçe", "tr"), # Turkish
|
||||||
("Українська", "uk"), # Ukrainian
|
("Українська", "uk"), # Ukrainian
|
||||||
|
("Tiếng Việt", "vi"), # Vietnamese
|
||||||
]
|
]
|
||||||
|
|
||||||
versions = ["2.3", "2.3.1", "2.3.2", "2.3.3", "2.4", "2.5", "2.6", "2.6.1"]
|
versions = ["2.3", "2.3.1", "2.3.2", "2.3.3", "2.4", "2.5", "2.6", "2.6.1"]
|
||||||
|
@ -7,17 +7,16 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.3\n"
|
"Project-Id-Version: OnionShare 2.3\n"
|
||||||
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
||||||
"POT-Creation-Date: 2023-06-06 13:07+0200\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: 2023-06-14 17:22+0000\n"
|
"PO-Revision-Date: 2023-06-14 17:22+0000\n"
|
||||||
"Last-Translator: george kitsoukakis <norhorn@gmail.com>\n"
|
"Last-Translator: george kitsoukakis <norhorn@gmail.com>\n"
|
||||||
"Language-Team: el <LL@li.org>\n"
|
|
||||||
"Language: el\n"
|
"Language: el\n"
|
||||||
"MIME-Version: 1.0\n"
|
"Language-Team: el <LL@li.org>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.18-dev\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.12.1\n"
|
||||||
|
|
||||||
#: ../../source/install.rst:2
|
#: ../../source/install.rst:2
|
||||||
msgid "Installation"
|
msgid "Installation"
|
||||||
@ -41,16 +40,18 @@ msgstr "Linux"
|
|||||||
|
|
||||||
#: ../../source/install.rst:14
|
#: ../../source/install.rst:14
|
||||||
msgid ""
|
msgid ""
|
||||||
"There are various ways to install OnionShare for Linux, but the recommended "
|
"There are various ways to install OnionShare for Linux, but the "
|
||||||
"way is to use either the `Flatpak <https://flatpak.org/>`_ or the `Snap "
|
"recommended way is to use either the `Flatpak <https://flatpak.org/>`_ or"
|
||||||
"<https://snapcraft.io/>`_ package. Flatpak and Snapcraft ensure that you'll "
|
" the `Snap <https://snapcraft.io/>`_ package. Flatpak and Snapcraft "
|
||||||
"always use the newest version and run OnionShare inside of a sandbox."
|
"ensure that you'll always use the newest version and run OnionShare "
|
||||||
|
"inside of a sandbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Υπάρχουν αρκετοί τρόποι εγκατάστασης του OnionShare σε Linux. Ο προτιμότερος "
|
"Υπάρχουν αρκετοί τρόποι εγκατάστασης του OnionShare σε Linux. Ο "
|
||||||
"τρόπος είναι η εγκατάσταση μέσω του `Flatpak <https://flatpak.org/>`_ ή του "
|
"προτιμότερος τρόπος είναι η εγκατάσταση μέσω του `Flatpak "
|
||||||
"πακέτου `Snap <https://snapcraft.io/>`_. Οι τεχνολογίες Flatpak και "
|
"<https://flatpak.org/>`_ ή του πακέτου `Snap <https://snapcraft.io/>`_. "
|
||||||
"Snapcraft διασφαλίζουν ότι χρησιμοποιείται πάντα η νεότερη έκδοση και ότι το "
|
"Οι τεχνολογίες Flatpak και Snapcraft διασφαλίζουν ότι χρησιμοποιείται "
|
||||||
"OnionShare θα εκτελείται μέσα σε sandbox."
|
"πάντα η νεότερη έκδοση και ότι το OnionShare θα εκτελείται μέσα σε "
|
||||||
|
"sandbox."
|
||||||
|
|
||||||
#: ../../source/install.rst:17
|
#: ../../source/install.rst:17
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -64,25 +65,25 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/install.rst:19
|
#: ../../source/install.rst:19
|
||||||
msgid ""
|
msgid ""
|
||||||
"**Install OnionShare using Flatpak**: https://flathub.org/apps/details/org."
|
"**Install OnionShare using Flatpak**: "
|
||||||
"onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**Εγκατάσταση του OnionShare με χρήση του Flatpak**: https://flathub.org/"
|
"**Εγκατάσταση του OnionShare με χρήση του Flatpak**: "
|
||||||
"apps/details/org.onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
|
|
||||||
#: ../../source/install.rst:21
|
#: ../../source/install.rst:21
|
||||||
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**Εγκατάσταση του OnionShare με χρήση του Snapcraft**: https://snapcraft.io/"
|
"**Εγκατάσταση του OnionShare με χρήση του Snapcraft**: "
|
||||||
"onionshare"
|
"https://snapcraft.io/onionshare"
|
||||||
|
|
||||||
#: ../../source/install.rst:23
|
#: ../../source/install.rst:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can also download and install PGP-signed ``.flatpak`` or ``.snap`` "
|
"You can also download and install PGP-signed ``.flatpak`` or ``.snap`` "
|
||||||
"packages from https://onionshare.org/dist/ if you prefer."
|
"packages from https://onionshare.org/dist/ if you prefer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Μπορείτε να κάνετε λήψη και εγκατάσταση ενός πακέτου PGP-signed ``.flatpak`` "
|
"Μπορείτε να κάνετε λήψη και εγκατάσταση ενός πακέτου PGP-signed "
|
||||||
"ή ``.snap`` από https://onionshare.org/dist/ εάν επιθυμείτε."
|
"``.flatpak`` ή ``.snap`` από https://onionshare.org/dist/ εάν επιθυμείτε."
|
||||||
|
|
||||||
#: ../../source/install.rst:26
|
#: ../../source/install.rst:26
|
||||||
msgid "Manual Flatpak Installation"
|
msgid "Manual Flatpak Installation"
|
||||||
@ -91,44 +92,48 @@ msgstr "Μη αυτόματη εγκατάσταση Flatpak"
|
|||||||
#: ../../source/install.rst:28
|
#: ../../source/install.rst:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
||||||
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-file-"
|
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-"
|
||||||
"bundles.html>`_, you can do so like this:"
|
"file-bundles.html>`_, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Αν θέλετε να εγκαταστήσετε το OnionShare χειροκίνητα με το Flatpak "
|
"Αν θέλετε να εγκαταστήσετε το OnionShare χειροκίνητα με το Flatpak "
|
||||||
"χρησιμοποιώντας το υπογεγραμμένο πακέτο αρχείου PGP `<https://docs.flatpak."
|
"χρησιμοποιώντας το υπογεγραμμένο πακέτο αρχείου PGP "
|
||||||
"org/en/latest/single-file-bundles.html>`_, μπορείτε να το κάνετε ως εξής:"
|
"`<https://docs.flatpak.org/en/latest/single-file-bundles.html>`_, "
|
||||||
|
"μπορείτε να το κάνετε ως εξής:"
|
||||||
|
|
||||||
#: ../../source/install.rst:30
|
#: ../../source/install.rst:30
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Flatpak by following the instructions at https://flatpak.org/setup/."
|
"Install Flatpak by following the instructions at "
|
||||||
|
"https://flatpak.org/setup/."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Εγκαταστήστε το Flatpak ακολουθώντας τις οδηγίες στη διεύθυνση "
|
"Εγκαταστήστε το Flatpak ακολουθώντας τις οδηγίες στη διεύθυνση "
|
||||||
"https://flatpak.org/setup/."
|
"https://flatpak.org/setup/."
|
||||||
|
|
||||||
#: ../../source/install.rst:31
|
#: ../../source/install.rst:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"Add the Flathub repository by running ``flatpak remote-add --if-not-exists "
|
"Add the Flathub repository by running ``flatpak remote-add --if-not-"
|
||||||
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Even though you "
|
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Even "
|
||||||
"won't be downloading OnionShare from Flathub, OnionShare depends on some "
|
"though you won't be downloading OnionShare from Flathub, OnionShare "
|
||||||
"packages that are only available there."
|
"depends on some packages that are only available there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Προσθέστε το αποθετήριο Flathub εκτελώντας την εντολή ``flatpak remote-add "
|
"Προσθέστε το αποθετήριο Flathub εκτελώντας την εντολή ``flatpak remote-"
|
||||||
"--if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo``. "
|
"add --if-not-exists flathub "
|
||||||
"Παρόλο που δε θα κατεβάσετε το OnionShare από το Flathub, το OnionShare "
|
"https://flathub.org/repo/flathub.flatpakrepo``. Παρόλο που δε θα "
|
||||||
"εξαρτάται από κάποια πακέτα που είναι διαθέσιμα μόνο εκεί."
|
"κατεβάσετε το OnionShare από το Flathub, το OnionShare εξαρτάται από "
|
||||||
|
"κάποια πακέτα που είναι διαθέσιμα μόνο εκεί."
|
||||||
|
|
||||||
#: ../../source/install.rst:32
|
#: ../../source/install.rst:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
"OnionShare, and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Μεταβείτε στο https://onionshare.org/dist/, επιλέξτε την τελευταία έκδοση "
|
"Μεταβείτε στο https://onionshare.org/dist/, επιλέξτε την τελευταία έκδοση"
|
||||||
"του OnionShare και κατεβάστε τα αρχεία ``.flatpak`` και ``.flatpak.asc``."
|
" του OnionShare και κατεβάστε τα αρχεία ``.flatpak`` και "
|
||||||
|
"``.flatpak.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:33
|
#: ../../source/install.rst:33
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.flatpak`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.flatpak`` file. See "
|
||||||
"for more info."
|
":ref:`verifying_sigs` for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Επαληθεύστε την υπογραφή PGP του αρχείου ``.flatpak``. Ανατρέξτε στην "
|
"Επαληθεύστε την υπογραφή PGP του αρχείου ``.flatpak``. Ανατρέξτε στην "
|
||||||
"ενότητα :ref:`verifying_sigs` για περισσότερες πληροφορίες."
|
"ενότητα :ref:`verifying_sigs` για περισσότερες πληροφορίες."
|
||||||
@ -136,18 +141,18 @@ msgstr ""
|
|||||||
#: ../../source/install.rst:34
|
#: ../../source/install.rst:34
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
||||||
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the file "
|
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the "
|
||||||
"you downloaded."
|
"file you downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Εγκαταστήστε το ``.flatpak`` εκτελώντας την εντολή ``flatpak install "
|
"Εγκαταστήστε το ``.flatpak`` εκτελώντας την εντολή ``flatpak install "
|
||||||
"OnionShare-VERSION.flatpak``. Αντικαταστήστε το ``VERSION`` με τον αριθμό "
|
"OnionShare-VERSION.flatpak``. Αντικαταστήστε το ``VERSION`` με τον αριθμό"
|
||||||
"έκδοσης του αρχείου που κατεβάσατε."
|
" έκδοσης του αρχείου που κατεβάσατε."
|
||||||
|
|
||||||
#: ../../source/install.rst:36
|
#: ../../source/install.rst:36
|
||||||
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Μπορείτε να τρέξετε το OnionShare με: `flatpak run org.onionshare."
|
"Μπορείτε να τρέξετε το OnionShare με: `flatpak run "
|
||||||
"OnionShare`."
|
"org.onionshare.OnionShare`."
|
||||||
|
|
||||||
#: ../../source/install.rst:39
|
#: ../../source/install.rst:39
|
||||||
msgid "Manual Snapcraft Installation"
|
msgid "Manual Snapcraft Installation"
|
||||||
@ -155,51 +160,52 @@ msgstr "Μη αυτόματη εγκατάσταση Snapcraft"
|
|||||||
|
|
||||||
#: ../../source/install.rst:41
|
#: ../../source/install.rst:41
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Snapcraft using the PGP-"
|
"If you'd like to install OnionShare manually with Snapcraft using the "
|
||||||
"signed Snapcraft package, you can do so like this:"
|
"PGP-signed Snapcraft package, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Αν θέλετε να εγκαταστήσετε το OnionShare χειροκίνητα με το Snapcraft "
|
"Αν θέλετε να εγκαταστήσετε το OnionShare χειροκίνητα με το Snapcraft "
|
||||||
"χρησιμοποιώντας το υπογεγραμμένο PGP πακέτο Snapcraft, μπορείτε να το κάνετε "
|
"χρησιμοποιώντας το υπογεγραμμένο PGP πακέτο Snapcraft, μπορείτε να το "
|
||||||
"ως εξής:"
|
"κάνετε ως εξής:"
|
||||||
|
|
||||||
#: ../../source/install.rst:43
|
#: ../../source/install.rst:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Snapcraft by following the instructions at https://snapcraft.io/docs/"
|
"Install Snapcraft by following the instructions at "
|
||||||
"installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Εγκαταστήστε το Snapcraft ακολουθώντας τις οδηγίες στη διεύθυνση "
|
"Εγκαταστήστε το Snapcraft ακολουθώντας τις οδηγίες στη διεύθυνση "
|
||||||
"https://snapcraft.io/docs/installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
|
|
||||||
#: ../../source/install.rst:44
|
#: ../../source/install.rst:44
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.snap`` and ``.snap.asc`` files."
|
"OnionShare, and download the ``.snap`` and ``.snap.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Μεταβείτε στη διεύθυνση https://onionshare.org/dist/, επιλέξτε την τελευταία "
|
"Μεταβείτε στη διεύθυνση https://onionshare.org/dist/, επιλέξτε την "
|
||||||
"έκδοση του OnionShare και κατεβάστε τα αρχεία ``.snap`` και ``.snap.asc``."
|
"τελευταία έκδοση του OnionShare και κατεβάστε τα αρχεία ``.snap`` και "
|
||||||
|
"``.snap.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:45
|
#: ../../source/install.rst:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs`"
|
||||||
"for more info."
|
" for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Επαληθεύστε την υπογραφή PGP του αρχείου ``.snap``. Ανατρέξτε στην ενότητα "
|
"Επαληθεύστε την υπογραφή PGP του αρχείου ``.snap``. Ανατρέξτε στην "
|
||||||
":ref:`verifying_sigs` για περισσότερες πληροφορίες."
|
"ενότητα :ref:`verifying_sigs` για περισσότερες πληροφορίες."
|
||||||
|
|
||||||
#: ../../source/install.rst:46
|
#: ../../source/install.rst:46
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.snap`` file by running ``snap install --dangerous "
|
"Install the ``.snap`` file by running ``snap install --dangerous "
|
||||||
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version number "
|
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version "
|
||||||
"of the file you downloaded. Note that you must use `--dangerous` because the "
|
"number of the file you downloaded. Note that you must use `--dangerous` "
|
||||||
"package is not signed by the Snapcraft store, however you did verify its PGP "
|
"because the package is not signed by the Snapcraft store, however you did"
|
||||||
"signature, so you know it's legitimate."
|
" verify its PGP signature, so you know it's legitimate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Εγκαταστήστε το αρχείο ``.snap`` εκτελώντας την εντολή ``snap install --"
|
"Εγκαταστήστε το αρχείο ``.snap`` εκτελώντας την εντολή ``snap install "
|
||||||
"dangerous onionshare_VERSION_amd64.snap``. Αντικαταστήστε το ``VERSION`` με "
|
"--dangerous onionshare_VERSION_amd64.snap``. Αντικαταστήστε το "
|
||||||
"τον αριθμό έκδοσης του αρχείου που κατεβάσατε. Σημειώστε ότι πρέπει να "
|
"``VERSION`` με τον αριθμό έκδοσης του αρχείου που κατεβάσατε. Σημειώστε "
|
||||||
"χρησιμοποιήσετε το `--dangerous` επειδή το πακέτο δεν είναι υπογεγραμμένο "
|
"ότι πρέπει να χρησιμοποιήσετε το `--dangerous` επειδή το πακέτο δεν είναι"
|
||||||
"από το Snapcraft, ωστόσο επαληθεύσατε την υπογραφή PGP, οπότε γνωρίζετε ότι "
|
" υπογεγραμμένο από το Snapcraft, ωστόσο επαληθεύσατε την υπογραφή PGP, "
|
||||||
"είναι νόμιμο."
|
"οπότε γνωρίζετε ότι είναι νόμιμο."
|
||||||
|
|
||||||
#: ../../source/install.rst:48
|
#: ../../source/install.rst:48
|
||||||
msgid "You can run OnionShare with: `snap run onionshare`."
|
msgid "You can run OnionShare with: `snap run onionshare`."
|
||||||
@ -211,8 +217,9 @@ msgstr "Μόνο γραμμή εντολών"
|
|||||||
|
|
||||||
#: ../../source/install.rst:55
|
#: ../../source/install.rst:55
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can install just the command-line version of OnionShare on any operating "
|
"You can install just the command-line version of OnionShare on any "
|
||||||
"system using the Python package manager ``pip``. :ref:`cli` has more info."
|
"operating system using the Python package manager ``pip``. :ref:`cli` has"
|
||||||
|
" more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Μπορείτε να εγκαταστήσετε μόνο την έκδοση με τη γραμμή εντολών του "
|
"Μπορείτε να εγκαταστήσετε μόνο την έκδοση με τη γραμμή εντολών του "
|
||||||
"OnionShare σε οποιοδήποτε λειτουργικό σύστημα χρησιμοποιώντας τον "
|
"OnionShare σε οποιοδήποτε λειτουργικό σύστημα χρησιμοποιώντας τον "
|
||||||
@ -225,17 +232,18 @@ msgstr "Επιβεβαίωση υπογραφών PGP"
|
|||||||
|
|
||||||
#: ../../source/install.rst:62
|
#: ../../source/install.rst:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can verify that the package you download is legitimate and hasn't been "
|
"You can verify that the package you download is legitimate and hasn't "
|
||||||
"tampered with by verifying its PGP signature. For Windows and macOS, this "
|
"been tampered with by verifying its PGP signature. For Windows and macOS,"
|
||||||
"step is optional and provides defense in depth: the OnionShare binaries "
|
" this step is optional and provides defense in depth: the OnionShare "
|
||||||
"include operating system-specific signatures, and you can just rely on those "
|
"binaries include operating system-specific signatures, and you can just "
|
||||||
"alone if you'd like."
|
"rely on those alone if you'd like."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Μπορείτε να επαληθεύσετε ότι το πακέτο που κατεβάσετε είναι νόμιμο και δεν "
|
"Μπορείτε να επαληθεύσετε ότι το πακέτο που κατεβάσετε είναι νόμιμο και "
|
||||||
"έχει παραβιαστεί, επαληθεύοντας την υπογραφή του PGP. Για Windows και macOS, "
|
"δεν έχει παραβιαστεί, επαληθεύοντας την υπογραφή του PGP. Για Windows και"
|
||||||
"αυτό το βήμα είναι προαιρετικό και παρέχει άμυνα σε βάθος: τα δυαδικά αρχεία "
|
" macOS, αυτό το βήμα είναι προαιρετικό και παρέχει άμυνα σε βάθος: τα "
|
||||||
"OnionShare περιλαμβάνουν συγκεκριμένες υπογραφές λειτουργικού συστήματος και "
|
"δυαδικά αρχεία OnionShare περιλαμβάνουν συγκεκριμένες υπογραφές "
|
||||||
"μπορείτε απλώς να βασιστείτε σε αυτά και μόνο αν θέλετε."
|
"λειτουργικού συστήματος και μπορείτε απλώς να βασιστείτε σε αυτά και μόνο"
|
||||||
|
" αν θέλετε."
|
||||||
|
|
||||||
#: ../../source/install.rst:66
|
#: ../../source/install.rst:66
|
||||||
msgid "Signing key"
|
msgid "Signing key"
|
||||||
@ -243,45 +251,47 @@ msgstr "Κλειδί υπογραφής"
|
|||||||
|
|
||||||
#: ../../source/install.rst:68
|
#: ../../source/install.rst:68
|
||||||
msgid ""
|
msgid ""
|
||||||
"Packages are signed by Micah Lee, the core developer, using his PGP public "
|
"Packages are signed by Micah Lee, the core developer, using his PGP "
|
||||||
"key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``. You can "
|
"public key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``."
|
||||||
"download Micah's key `from the keys.openpgp.org keyserver <https://keys."
|
" You can download Micah's key `from the keys.openpgp.org keyserver "
|
||||||
"openpgp.org/vks/v1/by-"
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Τα πακέτα υπογράφονται από τον Micah Lee, τον βασικό προγραμματιστή, "
|
"Τα πακέτα υπογράφονται από τον Micah Lee, τον βασικό προγραμματιστή, "
|
||||||
"χρησιμοποιώντας το δημόσιο κλειδί του PGP με το αποτύπωμα "
|
"χρησιμοποιώντας το δημόσιο κλειδί του PGP με το αποτύπωμα "
|
||||||
"``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Μπορείτε να κατεβάσετε το "
|
"``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Μπορείτε να κατεβάσετε το "
|
||||||
"κλειδί του Micah από το διακομιστή κλειδιών keys.openpgp.org <https://keys."
|
"κλειδί του Micah από το διακομιστή κλειδιών keys.openpgp.org "
|
||||||
"openpgp.org/vks/v1/by-fingerprint/"
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
"927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:71
|
#: ../../source/install.rst:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"You must have GnuPG installed to verify signatures. For macOS you probably "
|
"You must have GnuPG installed to verify signatures. For macOS you "
|
||||||
"want `GPGTools <https://gpgtools.org/>`_, and for Windows you probably want "
|
"probably want `GPGTools <https://gpgtools.org/>`_, and for Windows you "
|
||||||
"`Gpg4win <https://www.gpg4win.org/>`_."
|
"probably want `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Για την επιβεβαίωση υπογραφών θα πρέπει να έχετε εγκατεστημένο το GnuPG. Για "
|
"Για την επιβεβαίωση υπογραφών θα πρέπει να έχετε εγκατεστημένο το GnuPG. "
|
||||||
"macOS χρειάζεστε το `GPGTools <https://gpgtools.org/>`_ και για Windows το "
|
"Για macOS χρειάζεστε το `GPGTools <https://gpgtools.org/>`_ και για "
|
||||||
"`Gpg4win <https://www.gpg4win.org/>`_."
|
"Windows το `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:74
|
#: ../../source/install.rst:74
|
||||||
msgid "Signatures"
|
msgid "Signatures"
|
||||||
msgstr "Υπογραφές"
|
msgstr "Υπογραφές"
|
||||||
|
|
||||||
#: ../../source/install.rst:76
|
#: ../../source/install.rst:76
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can find the signatures (as ``.asc`` files), as well as Windows, macOS, "
|
"You can find the signatures (as ``.asc`` files), as well as Windows, "
|
||||||
"Flatpak, Snap, and source packages, at https://onionshare.org/dist/ in the "
|
"macOS, Flatpak, Snap, and source packages, at "
|
||||||
"folders named for each version of OnionShare. You can also find them on the "
|
"https://onionshare.org/dist/ in the folders named for each version of "
|
||||||
"`GitHub Releases page <https://github.com/micahflee/onionshare/releases>`_."
|
"OnionShare. You can also find them on the `GitHub Releases page "
|
||||||
|
"<https://github.com/onionshare/onionshare/releases>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Θα βρείτε τις υπογραφές (αρχεία ``.asc``), για Windows, macOS, Flatpak, Snap "
|
"Θα βρείτε τις υπογραφές (αρχεία ``.asc``), για Windows, macOS, Flatpak, "
|
||||||
"και αρχεία εγκατάστασης στο https://onionshare.org/dist/ στο φάκελο με όνομα "
|
"Snap και αρχεία εγκατάστασης στο https://onionshare.org/dist/ στο φάκελο "
|
||||||
"ανάλογο της έκδοσης του OnionShare. Μπορείτε επίσης να τα βρείτε και στη "
|
"με όνομα ανάλογο της έκδοσης του OnionShare. Μπορείτε επίσης να τα βρείτε"
|
||||||
"`σελίδα εκδόσεων του GitHub <https://github.com/micahflee/onionshare/"
|
" και στη `σελίδα εκδόσεων του GitHub "
|
||||||
"releases>`_."
|
"<https://github.com/micahflee/onionshare/releases>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:80
|
#: ../../source/install.rst:80
|
||||||
msgid "Verifying"
|
msgid "Verifying"
|
||||||
@ -290,12 +300,12 @@ msgstr "Επιβεβαίωση"
|
|||||||
#: ../../source/install.rst:82
|
#: ../../source/install.rst:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Once you have imported Micah's public key into your GnuPG keychain, "
|
"Once you have imported Micah's public key into your GnuPG keychain, "
|
||||||
"downloaded the binary and ``.asc`` signature, you can verify the binary for "
|
"downloaded the binary and ``.asc`` signature, you can verify the binary "
|
||||||
"macOS in a terminal like this::"
|
"for macOS in a terminal like this::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Με την εισαγωγή του δημόσιου κλειδιού του Micah στο GnuPG keychain, με τη "
|
"Με την εισαγωγή του δημόσιου κλειδιού του Micah στο GnuPG keychain, με τη"
|
||||||
"λήψη του δυαδικού και της υπογραφής ``.asc``, μπορείτε να επιβεβαιώσετε το "
|
" λήψη του δυαδικού και της υπογραφής ``.asc``, μπορείτε να επιβεβαιώσετε "
|
||||||
"δυαδικό σύστημα για macOS σε ένα τερματικό όπως::"
|
"το δυαδικό σύστημα για macOS σε ένα τερματικό όπως::"
|
||||||
|
|
||||||
#: ../../source/install.rst:86
|
#: ../../source/install.rst:86
|
||||||
msgid "Or for Windows, in a command-prompt like this::"
|
msgid "Or for Windows, in a command-prompt like this::"
|
||||||
@ -307,29 +317,31 @@ msgstr "Θα πρέπει να δείτε κάτι όπως::"
|
|||||||
|
|
||||||
#: ../../source/install.rst:102
|
#: ../../source/install.rst:102
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you don't see ``Good signature from``, there might be a problem with the "
|
"If you don't see ``Good signature from``, there might be a problem with "
|
||||||
"integrity of the file (malicious or otherwise), and you should not install "
|
"the integrity of the file (malicious or otherwise), and you should not "
|
||||||
"the package. (The ``WARNING:`` shown above, is not a problem with the "
|
"install the package. (The ``WARNING:`` shown above, is not a problem with"
|
||||||
"package, it only means you haven't defined a level of \"trust\" of Micah's "
|
" the package, it only means you haven't defined a level of \"trust\" of "
|
||||||
"(the core developer) PGP key.)"
|
"Micah's (the core developer) PGP key.)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Εάν δεν εμφανιστεί το ``Σωστή υπογραφή από``, ενδέχεται να υπάρχει πρόβλημα "
|
"Εάν δεν εμφανιστεί το ``Σωστή υπογραφή από``, ενδέχεται να υπάρχει "
|
||||||
"με την ακεραιότητα του αρχείου (κακόβουλο ή άλλο) και δεν πρέπει να το "
|
"πρόβλημα με την ακεραιότητα του αρχείου (κακόβουλο ή άλλο) και δεν πρέπει"
|
||||||
"εγκαταστήσετε. (Η ``ΠΡΟΕΙΔΟΠΟΙΗΣΗ:`` που φαίνεται παραπάνω, δεν αποτελεί "
|
" να το εγκαταστήσετε. (Η ``ΠΡΟΕΙΔΟΠΟΙΗΣΗ:`` που φαίνεται παραπάνω, δεν "
|
||||||
"πρόβλημα με το πακέτο, σημαίνει μόνο ότι δεν έχετε ορίσει το επίπεδο "
|
"αποτελεί πρόβλημα με το πακέτο, σημαίνει μόνο ότι δεν έχετε ορίσει το "
|
||||||
"\"εμπιστοσύνης\" του κλειδιού PGP του Micah.)"
|
"επίπεδο \"εμπιστοσύνης\" του κλειδιού PGP του Micah.)"
|
||||||
|
|
||||||
#: ../../source/install.rst:104
|
#: ../../source/install.rst:104
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you want to learn more about verifying PGP signatures, the guides for "
|
"If you want to learn more about verifying PGP signatures, the guides for "
|
||||||
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and "
|
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and"
|
||||||
"the `Tor Project <https://support.torproject.org/tbb/how-to-verify-signature/"
|
" the `Tor Project <https://support.torproject.org/tbb/how-to-verify-"
|
||||||
">`_ may be useful."
|
"signature/>`_ may be useful."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Εάν θέλετε να μάθετε περισσότερα σχετικά με την επαλήθευση των υπογραφών "
|
"Εάν θέλετε να μάθετε περισσότερα σχετικά με την επαλήθευση των υπογραφών "
|
||||||
"PGP, οι οδηγοί για `Qubes OS <https://www.qubes-os.org/security/verifying-"
|
"PGP, οι οδηγοί για `Qubes OS <https://www.qubes-os.org/security"
|
||||||
"signatures/>`_ και το `Tor Project <https://support.torproject.org/tbb/how-"
|
"/verifying-signatures/>`_ και το `Tor Project "
|
||||||
"to-verify-signature/>`_ θα σας φανούν χρήσιμα."
|
"<https://support.torproject.org/tbb/how-to-verify-signature/>`_ θα σας "
|
||||||
|
"φανούν χρήσιμα."
|
||||||
|
|
||||||
#~ msgid "Install in Linux"
|
#~ msgid "Install in Linux"
|
||||||
#~ msgstr "Εγκατάσταση σε Linux"
|
#~ msgstr "Εγκατάσταση σε Linux"
|
||||||
|
|
||||||
|
@ -8,14 +8,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.3\n"
|
"Project-Id-Version: OnionShare 2.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-03-31 16:26+1100\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Generated-By: Babel 2.12.1\n"
|
||||||
|
|
||||||
#: ../../source/install.rst:2
|
#: ../../source/install.rst:2
|
||||||
msgid "Installation"
|
msgid "Installation"
|
||||||
@ -67,22 +67,111 @@ msgid ""
|
|||||||
"packages from https://onionshare.org/dist/ if you prefer."
|
"packages from https://onionshare.org/dist/ if you prefer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:26
|
||||||
|
msgid "Manual Flatpak Installation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:28
|
#: ../../source/install.rst:28
|
||||||
msgid "Command-line only"
|
msgid ""
|
||||||
|
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
||||||
|
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-"
|
||||||
|
"file-bundles.html>`_, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:30
|
#: ../../source/install.rst:30
|
||||||
msgid ""
|
msgid ""
|
||||||
|
"Install Flatpak by following the instructions at "
|
||||||
|
"https://flatpak.org/setup/."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:31
|
||||||
|
msgid ""
|
||||||
|
"Add the Flathub repository by running ``flatpak remote-add --if-not-"
|
||||||
|
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Even "
|
||||||
|
"though you won't be downloading OnionShare from Flathub, OnionShare "
|
||||||
|
"depends on some packages that are only available there."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:32
|
||||||
|
msgid ""
|
||||||
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
|
"OnionShare, and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:33
|
||||||
|
msgid ""
|
||||||
|
"Verify the PGP signature of the ``.flatpak`` file. See "
|
||||||
|
":ref:`verifying_sigs` for more info."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:34
|
||||||
|
msgid ""
|
||||||
|
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
||||||
|
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the "
|
||||||
|
"file you downloaded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:36
|
||||||
|
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:39
|
||||||
|
msgid "Manual Snapcraft Installation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:41
|
||||||
|
msgid ""
|
||||||
|
"If you'd like to install OnionShare manually with Snapcraft using the "
|
||||||
|
"PGP-signed Snapcraft package, you can do so like this:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:43
|
||||||
|
msgid ""
|
||||||
|
"Install Snapcraft by following the instructions at "
|
||||||
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:44
|
||||||
|
msgid ""
|
||||||
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
|
"OnionShare, and download the ``.snap`` and ``.snap.asc`` files."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:45
|
||||||
|
msgid ""
|
||||||
|
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs`"
|
||||||
|
" for more info."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:46
|
||||||
|
msgid ""
|
||||||
|
"Install the ``.snap`` file by running ``snap install --dangerous "
|
||||||
|
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version "
|
||||||
|
"number of the file you downloaded. Note that you must use `--dangerous` "
|
||||||
|
"because the package is not signed by the Snapcraft store, however you did"
|
||||||
|
" verify its PGP signature, so you know it's legitimate."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:48
|
||||||
|
msgid "You can run OnionShare with: `snap run onionshare`."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:53
|
||||||
|
msgid "Command-line only"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../source/install.rst:55
|
||||||
|
msgid ""
|
||||||
"You can install just the command-line version of OnionShare on any "
|
"You can install just the command-line version of OnionShare on any "
|
||||||
"operating system using the Python package manager ``pip``. :ref:`cli` has"
|
"operating system using the Python package manager ``pip``. :ref:`cli` has"
|
||||||
" more info."
|
" more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:35
|
#: ../../source/install.rst:60
|
||||||
msgid "Verifying PGP signatures"
|
msgid "Verifying PGP signatures"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:37
|
#: ../../source/install.rst:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can verify that the package you download is legitimate and hasn't "
|
"You can verify that the package you download is legitimate and hasn't "
|
||||||
"been tampered with by verifying its PGP signature. For Windows and macOS,"
|
"been tampered with by verifying its PGP signature. For Windows and macOS,"
|
||||||
@ -91,11 +180,11 @@ msgid ""
|
|||||||
"rely on those alone if you'd like."
|
"rely on those alone if you'd like."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:41
|
#: ../../source/install.rst:66
|
||||||
msgid "Signing key"
|
msgid "Signing key"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:43
|
#: ../../source/install.rst:68
|
||||||
msgid ""
|
msgid ""
|
||||||
"Packages are signed by Micah Lee, the core developer, using his PGP "
|
"Packages are signed by Micah Lee, the core developer, using his PGP "
|
||||||
"public key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``."
|
"public key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``."
|
||||||
@ -104,46 +193,46 @@ msgid ""
|
|||||||
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:46
|
#: ../../source/install.rst:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"You must have GnuPG installed to verify signatures. For macOS you "
|
"You must have GnuPG installed to verify signatures. For macOS you "
|
||||||
"probably want `GPGTools <https://gpgtools.org/>`_, and for Windows you "
|
"probably want `GPGTools <https://gpgtools.org/>`_, and for Windows you "
|
||||||
"probably want `Gpg4win <https://www.gpg4win.org/>`_."
|
"probably want `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:49
|
#: ../../source/install.rst:74
|
||||||
msgid "Signatures"
|
msgid "Signatures"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:51
|
#: ../../source/install.rst:76
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can find the signatures (as ``.asc`` files), as well as Windows, "
|
"You can find the signatures (as ``.asc`` files), as well as Windows, "
|
||||||
"macOS, Flatpak, Snap, and source packages, at "
|
"macOS, Flatpak, Snap, and source packages, at "
|
||||||
"https://onionshare.org/dist/ in the folders named for each version of "
|
"https://onionshare.org/dist/ in the folders named for each version of "
|
||||||
"OnionShare. You can also find them on the `GitHub Releases page "
|
"OnionShare. You can also find them on the `GitHub Releases page "
|
||||||
"<https://github.com/micahflee/onionshare/releases>`_."
|
"<https://github.com/onionshare/onionshare/releases>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:55
|
#: ../../source/install.rst:80
|
||||||
msgid "Verifying"
|
msgid "Verifying"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:57
|
#: ../../source/install.rst:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Once you have imported Micah's public key into your GnuPG keychain, "
|
"Once you have imported Micah's public key into your GnuPG keychain, "
|
||||||
"downloaded the binary and and ``.asc`` signature, you can verify the "
|
"downloaded the binary and ``.asc`` signature, you can verify the binary "
|
||||||
"binary for macOS in a terminal like this::"
|
"for macOS in a terminal like this::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:61
|
#: ../../source/install.rst:86
|
||||||
msgid "Or for Windows, in a command-prompt like this::"
|
msgid "Or for Windows, in a command-prompt like this::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:65
|
#: ../../source/install.rst:90
|
||||||
msgid "The expected output looks like this::"
|
msgid "The expected output looks like this::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:77
|
#: ../../source/install.rst:102
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you don't see ``Good signature from``, there might be a problem with "
|
"If you don't see ``Good signature from``, there might be a problem with "
|
||||||
"the integrity of the file (malicious or otherwise), and you should not "
|
"the integrity of the file (malicious or otherwise), and you should not "
|
||||||
@ -152,7 +241,7 @@ msgid ""
|
|||||||
"Micah's (the core developer) PGP key.)"
|
"Micah's (the core developer) PGP key.)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/install.rst:79
|
#: ../../source/install.rst:104
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you want to learn more about verifying PGP signatures, the guides for "
|
"If you want to learn more about verifying PGP signatures, the guides for "
|
||||||
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and"
|
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and"
|
||||||
@ -407,3 +496,23 @@ msgstr ""
|
|||||||
#~ "of \"trust\" of Micah's PGP key.)"
|
#~ "of \"trust\" of Micah's PGP key.)"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "You can find the signatures (as "
|
||||||
|
#~ "``.asc`` files), as well as Windows, "
|
||||||
|
#~ "macOS, Flatpak, Snap, and source "
|
||||||
|
#~ "packages, at https://onionshare.org/dist/ in "
|
||||||
|
#~ "the folders named for each version "
|
||||||
|
#~ "of OnionShare. You can also find "
|
||||||
|
#~ "them on the `GitHub Releases page "
|
||||||
|
#~ "<https://github.com/micahflee/onionshare/releases>`_."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Once you have imported Micah's public"
|
||||||
|
#~ " key into your GnuPG keychain, "
|
||||||
|
#~ "downloaded the binary and and ``.asc``"
|
||||||
|
#~ " signature, you can verify the binary"
|
||||||
|
#~ " for macOS in a terminal like "
|
||||||
|
#~ "this::"
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -8,14 +8,14 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.3\n"
|
"Project-Id-Version: OnionShare 2.3\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2022-07-04 17:16-0400\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Generated-By: Babel 2.10.3\n"
|
"Generated-By: Babel 2.12.1\n"
|
||||||
|
|
||||||
#: ../../source/tor.rst:2
|
#: ../../source/tor.rst:2
|
||||||
msgid "Connecting to Tor"
|
msgid "Connecting to Tor"
|
||||||
@ -23,31 +23,32 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:4
|
#: ../../source/tor.rst:4
|
||||||
msgid ""
|
msgid ""
|
||||||
"When OnionShare starts, it will show you a screen asking you to connect to "
|
"When OnionShare starts, it will show you a screen asking you to connect "
|
||||||
"the Tor network."
|
"to the Tor network."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:8
|
#: ../../source/tor.rst:8
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can toggle on the switch \"Connect to Tor automatically\" before "
|
"You can toggle on the switch \"Connect to Tor automatically\" before "
|
||||||
"clicking \"Connect to Tor\". This means that next time OnionShare starts, it "
|
"clicking \"Connect to Tor\". This means that next time OnionShare starts,"
|
||||||
"will automatically connect with its Tor connection settings from the last "
|
" it will automatically connect with its Tor connection settings from the "
|
||||||
"session, instead of presenting you with the connection options. If the "
|
"last session, instead of presenting you with the connection options. If "
|
||||||
"connection fails, you can still try bridges or reconfigure Tor via the "
|
"the connection fails, you can still try bridges or reconfigure Tor via "
|
||||||
"\"Network Settings\" button."
|
"the \"Network Settings\" button."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:11
|
#: ../../source/tor.rst:11
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can click \"Connect to Tor\" to begin the connection process. If there "
|
"You can click \"Connect to Tor\" to begin the connection process. If "
|
||||||
"are no problems with your network, including any attempts to block your "
|
"there are no problems with your network, including any attempts to block "
|
||||||
"access to the Tor network, this should hopefully work the first time."
|
"your access to the Tor network, this should hopefully work the first "
|
||||||
|
"time."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:13
|
#: ../../source/tor.rst:13
|
||||||
msgid ""
|
msgid ""
|
||||||
"Or, if you want to manually configure Bridges or other Tor settings before "
|
"Or, if you want to manually configure Bridges or other Tor settings "
|
||||||
"you connect, you can click \"Network Settings\"."
|
"before you connect, you can click \"Network Settings\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:16
|
#: ../../source/tor.rst:16
|
||||||
@ -56,8 +57,9 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:18
|
#: ../../source/tor.rst:18
|
||||||
msgid ""
|
msgid ""
|
||||||
"When you click \"Connect to Tor\", if OnionShare fails to connect, it might "
|
"When you click \"Connect to Tor\", if OnionShare fails to connect, it "
|
||||||
"be because Tor is censored in your country or on your local network."
|
"might be because Tor is censored in your country or on your local "
|
||||||
|
"network."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:20
|
#: ../../source/tor.rst:20
|
||||||
@ -69,8 +71,7 @@ msgid "Try again without a bridge"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:23
|
#: ../../source/tor.rst:23
|
||||||
msgid ""
|
msgid "Automatically determine my country from my IP address for bridge settings"
|
||||||
"Automatically determine my country from my IP address for bridge settings"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:24
|
#: ../../source/tor.rst:24
|
||||||
@ -80,17 +81,19 @@ msgstr ""
|
|||||||
#: ../../source/tor.rst:28
|
#: ../../source/tor.rst:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you choose the \"Try again without a bridge\" option, OnionShare will "
|
"If you choose the \"Try again without a bridge\" option, OnionShare will "
|
||||||
"retry connecting to Tor like normal, without attempting to bypass censorship."
|
"retry connecting to Tor like normal, without attempting to bypass "
|
||||||
|
"censorship."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:30
|
#: ../../source/tor.rst:30
|
||||||
msgid ""
|
msgid ""
|
||||||
"The other two options will attempt to automatically bypass censorship using "
|
"The other two options will attempt to automatically bypass censorship "
|
||||||
"Tor bridges. If your network provider is blocking access to the Tor network, "
|
"using Tor bridges. If your network provider is blocking access to the Tor"
|
||||||
"you can hopefully still connect to a Tor bridge, which will then connect you "
|
" network, you can hopefully still connect to a Tor bridge, which will "
|
||||||
"to the Tor network, circumventing the censorship. Both of these options use "
|
"then connect you to the Tor network, circumventing the censorship. Both "
|
||||||
"the Tor Project's Censorship Circumvention API to provide you with bridge "
|
"of these options use the Tor Project's Censorship Circumvention API to "
|
||||||
"settings that should work for you. OnionShare will temporarily use the `Meek "
|
"provide you with bridge settings that should work for you. OnionShare "
|
||||||
|
"will temporarily use the `Meek "
|
||||||
"<https://gitlab.torproject.org/legacy/trac/-/wikis/doc/meek/>`_ domain-"
|
"<https://gitlab.torproject.org/legacy/trac/-/wikis/doc/meek/>`_ domain-"
|
||||||
"fronting proxy to make a non-Tor connection from your computer to Tor's "
|
"fronting proxy to make a non-Tor connection from your computer to Tor's "
|
||||||
"Censorship Circumvention API. The Meek proxy hides the fact that you are "
|
"Censorship Circumvention API. The Meek proxy hides the fact that you are "
|
||||||
@ -99,10 +102,10 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:36
|
#: ../../source/tor.rst:36
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you choose \"Automatically determine my country from my IP address for "
|
"If you choose \"Automatically determine my country from my IP address for"
|
||||||
"bridge settings\", the Censorship Circumvention API will consider your IP "
|
" bridge settings\", the Censorship Circumvention API will consider your "
|
||||||
"address (yes, your real IP address) to determine what country you might "
|
"IP address (yes, your real IP address) to determine what country you "
|
||||||
"reside in. Based on the country information, the API will try to "
|
"might reside in. Based on the country information, the API will try to "
|
||||||
"automatically find bridges that suit your location."
|
"automatically find bridges that suit your location."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -119,41 +122,42 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:48
|
#: ../../source/tor.rst:48
|
||||||
msgid ""
|
msgid ""
|
||||||
"If the Censorship Circumvention API finds bridges that it believes will suit "
|
"If the Censorship Circumvention API finds bridges that it believes will "
|
||||||
"you, OnionShare will try to reconnect to Tor using those bridges. If the API "
|
"suit you, OnionShare will try to reconnect to Tor using those bridges. If"
|
||||||
"does not find any bridges for your location, OnionShare will ask the API for "
|
" the API does not find any bridges for your location, OnionShare will ask"
|
||||||
"\"fallback\" options, and then try to reconnect using those."
|
" the API for \"fallback\" options, and then try to reconnect using those."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:50
|
#: ../../source/tor.rst:50
|
||||||
msgid ""
|
msgid ""
|
||||||
"If for some reason OnionShare fails to connect to the Censorship API itself, "
|
"If for some reason OnionShare fails to connect to the Censorship API "
|
||||||
"or if the API returns an error message, OnionShare will attempt to use the "
|
"itself, or if the API returns an error message, OnionShare will attempt "
|
||||||
"obfs4 built-in bridges."
|
"to use the obfs4 built-in bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:52
|
#: ../../source/tor.rst:52
|
||||||
msgid ""
|
msgid ""
|
||||||
"It's important to note that the requests to the Censorship Circumvention API "
|
"It's important to note that the requests to the Censorship Circumvention "
|
||||||
"do not go over the Tor network (because if you could connect to Tor already, "
|
"API do not go over the Tor network (because if you could connect to Tor "
|
||||||
"you wouldn't need to connect to the API)."
|
"already, you wouldn't need to connect to the API)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:54
|
#: ../../source/tor.rst:54
|
||||||
msgid ""
|
msgid ""
|
||||||
"Even though it's hard for an adversary to discover where the Meek request is "
|
"Even though it's hard for an adversary to discover where the Meek request"
|
||||||
"going, this may still be risky for some users. Therefore, it is an opt-in "
|
" is going, this may still be risky for some users. Therefore, it is an "
|
||||||
"feature. The use of Meek and non-torified network requests are limited only "
|
"opt-in feature. The use of Meek and non-torified network requests are "
|
||||||
"to making one or two requests to the Censorship Circumvention API. Then Meek "
|
"limited only to making one or two requests to the Censorship "
|
||||||
"is stopped, and all further network requests happen over the Tor network."
|
"Circumvention API. Then Meek is stopped, and all further network requests"
|
||||||
|
" happen over the Tor network."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:56
|
#: ../../source/tor.rst:56
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you are uncomfortable with making a request that doesn't go over the Tor "
|
"If you are uncomfortable with making a request that doesn't go over the "
|
||||||
"network, you can click \"Network Settings\" (or the Settings icon in the "
|
"Tor network, you can click \"Network Settings\" (or the Settings icon in "
|
||||||
"bottom right corner, followed by the Tor Settings tab in the screen that "
|
"the bottom right corner, followed by the Tor Settings tab in the screen "
|
||||||
"appears), and manually configure bridges. After you save any bridge "
|
"that appears), and manually configure bridges. After you save any bridge "
|
||||||
"settings, OnionShare will try to reconnect using those bridges."
|
"settings, OnionShare will try to reconnect using those bridges."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -164,14 +168,15 @@ msgstr ""
|
|||||||
#: ../../source/tor.rst:61
|
#: ../../source/tor.rst:61
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can get to the Tor settings by clicking \"Network Settings\" on the "
|
"You can get to the Tor settings by clicking \"Network Settings\" on the "
|
||||||
"welcome screen, or by clicking the \"⚙\" icon in the bottom-right corner of "
|
"welcome screen, or by clicking the \"⚙\" icon in the bottom-right corner "
|
||||||
"the application, and then switch to the Tor Settings tab in the screen that "
|
"of the application, and then switch to the Tor Settings tab in the screen"
|
||||||
"appears."
|
" that appears."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:65
|
#: ../../source/tor.rst:65
|
||||||
msgid ""
|
msgid ""
|
||||||
"Here are the different ways you can configure OnionShare to connect to Tor:"
|
"Here are the different ways you can configure OnionShare to connect to "
|
||||||
|
"Tor:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:68
|
#: ../../source/tor.rst:68
|
||||||
@ -180,16 +185,16 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:70
|
#: ../../source/tor.rst:70
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is the default, simplest and most reliable way that OnionShare connects "
|
"This is the default, simplest and most reliable way that OnionShare "
|
||||||
"to Tor. For this reason, it's recommended for most users."
|
"connects to Tor. For this reason, it's recommended for most users."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:73
|
#: ../../source/tor.rst:73
|
||||||
msgid ""
|
msgid ""
|
||||||
"When you open OnionShare, it launches an already configured ``tor`` process "
|
"When you open OnionShare, it launches an already configured ``tor`` "
|
||||||
"in the background for OnionShare to use. It doesn't interfere with other "
|
"process in the background for OnionShare to use. It doesn't interfere "
|
||||||
"``tor`` processes on your computer, so you can use the Tor Browser or the "
|
"with other ``tor`` processes on your computer, so you can use the Tor "
|
||||||
"system ``tor`` on their own."
|
"Browser or the system ``tor`` on their own."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:76
|
#: ../../source/tor.rst:76
|
||||||
@ -198,14 +203,14 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:78
|
#: ../../source/tor.rst:78
|
||||||
msgid ""
|
msgid ""
|
||||||
"To use a bridge, you must select \"Use the Tor version built into OnionShare"
|
"To use a bridge, you must select \"Use the Tor version built into "
|
||||||
"\" and check the \"Use a bridge\" checkbox."
|
"OnionShare\" and check the \"Use a bridge\" checkbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:80
|
#: ../../source/tor.rst:80
|
||||||
msgid ""
|
msgid ""
|
||||||
"Try using a built-in bridge first. Using `obfs4` or `snowflake` bridges is "
|
"Try using a built-in bridge first. Using `obfs4` or `snowflake` bridges "
|
||||||
"recommended over using `meek-azure`."
|
"is recommended over using `meek-azure`."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:84
|
#: ../../source/tor.rst:84
|
||||||
@ -228,10 +233,10 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:93
|
#: ../../source/tor.rst:93
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you have `downloaded the Tor Browser <https://www.torproject.org>`_ and "
|
"If you have `downloaded the Tor Browser <https://www.torproject.org>`_ "
|
||||||
"don't want two ``tor`` processes running, you can use the ``tor`` process "
|
"and don't want two ``tor`` processes running, you can use the ``tor`` "
|
||||||
"from the Tor Browser. Keep in mind you need to keep Tor Browser open in the "
|
"process from the Tor Browser. Keep in mind you need to keep Tor Browser "
|
||||||
"background while you're using OnionShare for this to work."
|
"open in the background while you're using OnionShare for this to work."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:97
|
#: ../../source/tor.rst:97
|
||||||
@ -240,16 +245,16 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:99
|
#: ../../source/tor.rst:99
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is fairly advanced. You'll need to know how edit plaintext files and do "
|
"This is fairly advanced. You'll need to know how edit plaintext files and"
|
||||||
"stuff as an administrator."
|
" do stuff as an administrator."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:101
|
#: ../../source/tor.rst:101
|
||||||
msgid ""
|
msgid ""
|
||||||
"Download the Tor Windows Expert Bundle `from <https://www.torproject.org/"
|
"Download the Tor Windows Expert Bundle `from the Tor website "
|
||||||
"download/tor/>`_. Extract the compressed file and copy the extracted folder "
|
"<https://www.torproject.org/download/tor/>`_. Extract the compressed file"
|
||||||
"to ``C:\\Program Files (x86)\\`` Rename the extracted folder with ``Data`` "
|
" and copy the extracted folder to ``C:\\Program Files (x86)\\`` Rename "
|
||||||
"and ``Tor`` in it to ``tor-win32``."
|
"the extracted folder with ``Data`` and ``Tor`` in it to ``tor-win32``."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:105
|
#: ../../source/tor.rst:105
|
||||||
@ -263,23 +268,24 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:112
|
#: ../../source/tor.rst:112
|
||||||
msgid ""
|
msgid ""
|
||||||
"The hashed password output is displayed after some warnings (which you can "
|
"The hashed password output is displayed after some warnings (which you "
|
||||||
"ignore). In the case of the above example, it is "
|
"can ignore). In the case of the above example, it is "
|
||||||
"``16:00322E903D96DE986058BB9ABDA91E010D7A863768635AC38E213FDBEF``."
|
"``16:00322E903D96DE986058BB9ABDA91E010D7A863768635AC38E213FDBEF``."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:114
|
#: ../../source/tor.rst:114
|
||||||
msgid ""
|
msgid ""
|
||||||
"Now create a new text file at ``C:\\Program Files (x86)\\tor-win32\\torrc`` "
|
"Now create a new text file at ``C:\\Program Files (x86)\\tor-"
|
||||||
"and put your hashed password output in it, replacing the "
|
"win32\\torrc`` and put your hashed password output in it, replacing the "
|
||||||
"``HashedControlPassword`` with the one you just generated::"
|
"``HashedControlPassword`` with the one you just generated::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:119
|
#: ../../source/tor.rst:119
|
||||||
msgid ""
|
msgid ""
|
||||||
"In your administrator command prompt, install ``tor`` as a service using the "
|
"In your administrator command prompt, install ``tor`` as a service using "
|
||||||
"appropriate ``torrc`` file you just created (as described in `<https://2019."
|
"the appropriate ``torrc`` file you just created (as described in "
|
||||||
"www.torproject.org/docs/faq.html.en#NTService>`_). Like this::"
|
"`<https://2019.www.torproject.org/docs/faq.html.en#NTService>`_). Like "
|
||||||
|
"this::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:123
|
#: ../../source/tor.rst:123
|
||||||
@ -288,13 +294,13 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:125
|
#: ../../source/tor.rst:125
|
||||||
msgid ""
|
msgid ""
|
||||||
"Open OnionShare, click the \"⚙\" icon in it, and switch to the Tor Settings "
|
"Open OnionShare, click the \"⚙\" icon in it, and switch to the Tor "
|
||||||
"tab. Under \"How should OnionShare connect to Tor?\" choose \"Connect using "
|
"Settings tab. Under \"How should OnionShare connect to Tor?\" choose "
|
||||||
"control port\", and set \"Control port\" to ``127.0.0.1`` and \"Port\" to "
|
"\"Connect using control port\", and set \"Control port\" to ``127.0.0.1``"
|
||||||
"``9051``. Under \"Tor authentication settings\" choose \"Password\" and set "
|
" and \"Port\" to ``9051``. Under \"Tor authentication settings\" choose "
|
||||||
"the password to the control port password you picked above. Click the \"Test "
|
"\"Password\" and set the password to the control port password you picked"
|
||||||
"Connection to Tor\" button. If all goes well, you should see \"Connected to "
|
" above. Click the \"Test Connection to Tor\" button. If all goes well, "
|
||||||
"the Tor controller\"."
|
"you should see \"Connected to the Tor controller\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:134
|
#: ../../source/tor.rst:134
|
||||||
@ -303,8 +309,8 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:136
|
#: ../../source/tor.rst:136
|
||||||
msgid ""
|
msgid ""
|
||||||
"First, install `Homebrew <https://brew.sh/>`_ if you don't already have it, "
|
"First, install `Homebrew <https://brew.sh/>`_ if you don't already have "
|
||||||
"and then install Tor::"
|
"it, and then install Tor::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:140
|
#: ../../source/tor.rst:140
|
||||||
@ -317,12 +323,12 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/tor.rst:151
|
#: ../../source/tor.rst:151
|
||||||
msgid ""
|
msgid ""
|
||||||
"Open OnionShare, click the \"⚙\" icon in it, and switch to the Tor Settings "
|
"Open OnionShare, click the \"⚙\" icon in it, and switch to the Tor "
|
||||||
"tab. Under \"How should OnionShare connect to Tor?\" choose \"Connect using "
|
"Settings tab. Under \"How should OnionShare connect to Tor?\" choose "
|
||||||
"socket file\", and set the socket file to be ``/usr/local/var/run/tor/"
|
"\"Connect using socket file\", and set the socket file to be "
|
||||||
"control.socket``. Under \"Tor authentication settings\" choose \"No "
|
"``/usr/local/var/run/tor/control.socket``. Under \"Tor authentication "
|
||||||
"authentication, or cookie authentication\". Click the \"Test Connection to "
|
"settings\" choose \"No authentication, or cookie authentication\". Click "
|
||||||
"Tor\" button."
|
"the \"Test Connection to Tor\" button."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:157 ../../source/tor.rst:177
|
#: ../../source/tor.rst:157 ../../source/tor.rst:177
|
||||||
@ -336,29 +342,41 @@ msgstr ""
|
|||||||
#: ../../source/tor.rst:162
|
#: ../../source/tor.rst:162
|
||||||
msgid ""
|
msgid ""
|
||||||
"First, install the ``tor`` package. If you're using Debian, Ubuntu, or a "
|
"First, install the ``tor`` package. If you're using Debian, Ubuntu, or a "
|
||||||
"similar Linux distro, It is recommended to use the Tor Project's `official "
|
"similar Linux distro, It is recommended to use the Tor Project's "
|
||||||
"repository <https://support.torproject.org/apt/tor-deb-repo/>`_."
|
"`official repository <https://support.torproject.org/apt/tor-deb-"
|
||||||
|
"repo/>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:164
|
#: ../../source/tor.rst:164
|
||||||
msgid ""
|
msgid ""
|
||||||
"Next, add your user to the group that runs the ``tor`` process (in the case "
|
"Next, add your user to the group that runs the ``tor`` process (in the "
|
||||||
"of Debian and Ubuntu, ``debian-tor``) and configure OnionShare to connect to "
|
"case of Debian and Ubuntu, ``debian-tor``) and configure OnionShare to "
|
||||||
"your system ``tor``'s control socket file."
|
"connect to your system ``tor``'s control socket file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:166
|
#: ../../source/tor.rst:166
|
||||||
msgid ""
|
msgid ""
|
||||||
"Add your user to the ``debian-tor`` group by running this command (replace "
|
"Add your user to the ``debian-tor`` group by running this command "
|
||||||
"``username`` with your actual username)::"
|
"(replace ``username`` with your actual username)::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../source/tor.rst:170
|
#: ../../source/tor.rst:170
|
||||||
msgid ""
|
msgid ""
|
||||||
"Reboot your computer. After it boots up again, open OnionShare, click the \"⚙"
|
"Reboot your computer. After it boots up again, open OnionShare, click the"
|
||||||
"\" icon in it, and switch to the Tor Settings tab. Under \"How should "
|
" \"⚙\" icon in it, and switch to the Tor Settings tab. Under \"How should"
|
||||||
"OnionShare connect to Tor?\" choose \"Connect using socket file\". Set the "
|
" OnionShare connect to Tor?\" choose \"Connect using socket file\". Set "
|
||||||
"socket file to be ``/var/run/tor/control``. Under \"Tor authentication "
|
"the socket file to be ``/var/run/tor/control``. Under \"Tor "
|
||||||
"settings\" choose \"No authentication, or cookie authentication\". Click the "
|
"authentication settings\" choose \"No authentication, or cookie "
|
||||||
"\"Test Connection to Tor\" button."
|
"authentication\". Click the \"Test Connection to Tor\" button."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Download the Tor Windows Expert Bundle"
|
||||||
|
#~ " `from <https://www.torproject.org/download/tor/>`_. "
|
||||||
|
#~ "Extract the compressed file and copy "
|
||||||
|
#~ "the extracted folder to ``C:\\Program "
|
||||||
|
#~ "Files (x86)\\`` Rename the extracted "
|
||||||
|
#~ "folder with ``Data`` and ``Tor`` in "
|
||||||
|
#~ "it to ``tor-win32``."
|
||||||
|
#~ msgstr ""
|
||||||
|
|
||||||
|
@ -7,17 +7,16 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.3\n"
|
"Project-Id-Version: OnionShare 2.3\n"
|
||||||
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
||||||
"POT-Creation-Date: 2023-06-06 13:07+0200\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: 2023-06-07 16:33+0000\n"
|
"PO-Revision-Date: 2023-06-07 16:33+0000\n"
|
||||||
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
||||||
"Language-Team: none\n"
|
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"MIME-Version: 1.0\n"
|
"Language-Team: none\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.18-dev\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.12.1\n"
|
||||||
|
|
||||||
#: ../../source/install.rst:2
|
#: ../../source/install.rst:2
|
||||||
msgid "Installation"
|
msgid "Installation"
|
||||||
@ -41,15 +40,16 @@ msgstr "Linux"
|
|||||||
|
|
||||||
#: ../../source/install.rst:14
|
#: ../../source/install.rst:14
|
||||||
msgid ""
|
msgid ""
|
||||||
"There are various ways to install OnionShare for Linux, but the recommended "
|
"There are various ways to install OnionShare for Linux, but the "
|
||||||
"way is to use either the `Flatpak <https://flatpak.org/>`_ or the `Snap "
|
"recommended way is to use either the `Flatpak <https://flatpak.org/>`_ or"
|
||||||
"<https://snapcraft.io/>`_ package. Flatpak and Snapcraft ensure that you'll "
|
" the `Snap <https://snapcraft.io/>`_ package. Flatpak and Snapcraft "
|
||||||
"always use the newest version and run OnionShare inside of a sandbox."
|
"ensure that you'll always use the newest version and run OnionShare "
|
||||||
|
"inside of a sandbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Hay varias maneras de instalar OnionShare para Linux, pero la recomendada es "
|
"Hay varias maneras de instalar OnionShare para Linux, pero la recomendada"
|
||||||
"usar el paquete `Flatpak <https://flatpak.org/>`_ o bien `Snapcraft <https://"
|
" es usar el paquete `Flatpak <https://flatpak.org/>`_ o bien `Snapcraft "
|
||||||
"snapcraft.io/>`_. Flatpak y Snap aseguran que siempre usará la versión más "
|
"<https://snapcraft.io/>`_. Flatpak y Snap aseguran que siempre usará la "
|
||||||
"nueva, y ejecutará OnionShare dentro en un sandbox."
|
"versión más nueva, y ejecutará OnionShare dentro en un sandbox."
|
||||||
|
|
||||||
#: ../../source/install.rst:17
|
#: ../../source/install.rst:17
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -57,21 +57,20 @@ msgid ""
|
|||||||
"support, but which you use is up to you. Both work in all Linux "
|
"support, but which you use is up to you. Both work in all Linux "
|
||||||
"distributions."
|
"distributions."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Snap está incorporado en Ubuntu, y Flatpak en Fedora, pero es tu elección "
|
"Snap está incorporado en Ubuntu, y Flatpak en Fedora, pero es tu elección"
|
||||||
"cuál usar. Ambos funcionan en todas las distribuciones Linux."
|
" cuál usar. Ambos funcionan en todas las distribuciones Linux."
|
||||||
|
|
||||||
#: ../../source/install.rst:19
|
#: ../../source/install.rst:19
|
||||||
msgid ""
|
msgid ""
|
||||||
"**Install OnionShare using Flatpak**: https://flathub.org/apps/details/org."
|
"**Install OnionShare using Flatpak**: "
|
||||||
"onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**Instala OnionShare usando Flatpak**: https://flathub.org/apps/details/org."
|
"**Instala OnionShare usando Flatpak**: "
|
||||||
"onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
|
|
||||||
#: ../../source/install.rst:21
|
#: ../../source/install.rst:21
|
||||||
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
||||||
msgstr ""
|
msgstr "**Instala OnionShare usando Snapcraft**: https://snapcraft.io/onionshare"
|
||||||
"**Instala OnionShare usando Snapcraft**: https://snapcraft.io/onionshare"
|
|
||||||
|
|
||||||
#: ../../source/install.rst:23
|
#: ../../source/install.rst:23
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -88,43 +87,43 @@ msgstr "Instalación manual con Flatpak"
|
|||||||
#: ../../source/install.rst:28
|
#: ../../source/install.rst:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
||||||
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-file-"
|
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-"
|
||||||
"bundles.html>`_, you can do so like this:"
|
"file-bundles.html>`_, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Si deseas instalar OnionShare manualmente con Flatpak usando el `paquete de "
|
"Si deseas instalar OnionShare manualmente con Flatpak usando el `paquete "
|
||||||
"un solo archivo firmado por PGP <https://docs.flatpak.org/en/latest/single-"
|
"de un solo archivo firmado por PGP <https://docs.flatpak.org/en/latest"
|
||||||
"file-bundles.html>`_, puedes hacerlo así como este:"
|
"/single-file-bundles.html>`_, puedes hacerlo así como este:"
|
||||||
|
|
||||||
#: ../../source/install.rst:30
|
#: ../../source/install.rst:30
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Flatpak by following the instructions at https://flatpak.org/setup/."
|
"Install Flatpak by following the instructions at "
|
||||||
msgstr ""
|
"https://flatpak.org/setup/."
|
||||||
"Instala Flatpak siguiendo las instrucciones en https://flatpak.org/setup/."
|
msgstr "Instala Flatpak siguiendo las instrucciones en https://flatpak.org/setup/."
|
||||||
|
|
||||||
#: ../../source/install.rst:31
|
#: ../../source/install.rst:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"Add the Flathub repository by running ``flatpak remote-add --if-not-exists "
|
"Add the Flathub repository by running ``flatpak remote-add --if-not-"
|
||||||
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Even though you "
|
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Even "
|
||||||
"won't be downloading OnionShare from Flathub, OnionShare depends on some "
|
"though you won't be downloading OnionShare from Flathub, OnionShare "
|
||||||
"packages that are only available there."
|
"depends on some packages that are only available there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Agrega el repositorio de Flathub ejecutando ``flatpak remote-add --if-not-"
|
"Agrega el repositorio de Flathub ejecutando ``flatpak remote-add --if-"
|
||||||
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Aunque no "
|
"not-exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Aunque"
|
||||||
"descargará OnionShare desde Flathub, OnionShare depende de algunos paquetes "
|
" no descargará OnionShare desde Flathub, OnionShare depende de algunos "
|
||||||
"que solo están disponibles allí."
|
"paquetes que solo están disponibles allí."
|
||||||
|
|
||||||
#: ../../source/install.rst:32
|
#: ../../source/install.rst:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
"OnionShare, and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ve a https://onionshare.org/dist/, elige la última versión de OnionShare y "
|
"Ve a https://onionshare.org/dist/, elige la última versión de OnionShare "
|
||||||
"descarga los archivos ``.flatpak`` y ``.flatpak.asc``."
|
"y descarga los archivos ``.flatpak`` y ``.flatpak.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:33
|
#: ../../source/install.rst:33
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.flatpak`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.flatpak`` file. See "
|
||||||
"for more info."
|
":ref:`verifying_sigs` for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Verifica la firma PGP del archivo ``.flatpak``. Consulta "
|
"Verifica la firma PGP del archivo ``.flatpak``. Consulta "
|
||||||
":ref:`verifying_sigs` para obtener más información."
|
":ref:`verifying_sigs` para obtener más información."
|
||||||
@ -132,8 +131,8 @@ msgstr ""
|
|||||||
#: ../../source/install.rst:34
|
#: ../../source/install.rst:34
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
||||||
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the file "
|
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the "
|
||||||
"you downloaded."
|
"file you downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Instala el archivo ``.flatpak`` ejecutando ``flatpak install OnionShare-"
|
"Instala el archivo ``.flatpak`` ejecutando ``flatpak install OnionShare-"
|
||||||
"VERSION.flatpak``. Reemplaza ``VERSION`` con el número de la versión del "
|
"VERSION.flatpak``. Reemplaza ``VERSION`` con el número de la versión del "
|
||||||
@ -141,8 +140,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/install.rst:36
|
#: ../../source/install.rst:36
|
||||||
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
||||||
msgstr ""
|
msgstr "Puedes ejecutar OnionShare con: `flatpak run org.onionshare.OnionShare`."
|
||||||
"Puedes ejecutar OnionShare con: `flatpak run org.onionshare.OnionShare`."
|
|
||||||
|
|
||||||
#: ../../source/install.rst:39
|
#: ../../source/install.rst:39
|
||||||
msgid "Manual Snapcraft Installation"
|
msgid "Manual Snapcraft Installation"
|
||||||
@ -150,49 +148,50 @@ msgstr "Instalación manual de Snapcraft"
|
|||||||
|
|
||||||
#: ../../source/install.rst:41
|
#: ../../source/install.rst:41
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Snapcraft using the PGP-"
|
"If you'd like to install OnionShare manually with Snapcraft using the "
|
||||||
"signed Snapcraft package, you can do so like this:"
|
"PGP-signed Snapcraft package, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Si quieres instalar OnionShare manualmente con Snapcraft usando el paquete "
|
"Si quieres instalar OnionShare manualmente con Snapcraft usando el "
|
||||||
"Snapcraft firmado con PGP, puedes hacerlo así:"
|
"paquete Snapcraft firmado con PGP, puedes hacerlo así:"
|
||||||
|
|
||||||
#: ../../source/install.rst:43
|
#: ../../source/install.rst:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Snapcraft by following the instructions at https://snapcraft.io/docs/"
|
"Install Snapcraft by following the instructions at "
|
||||||
"installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Instala Snapcraft siguiendo las instrucciones de https://snapcraft.io/docs/"
|
"Instala Snapcraft siguiendo las instrucciones de "
|
||||||
"installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
|
|
||||||
#: ../../source/install.rst:44
|
#: ../../source/install.rst:44
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.snap`` and ``.snap.asc`` files."
|
"OnionShare, and download the ``.snap`` and ``.snap.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vete a https://onionshare.org/dist/, elije la última versión de OnionShare y "
|
"Vete a https://onionshare.org/dist/, elije la última versión de "
|
||||||
"descarga los archivos ``.snap`` y ``.snap.asc``."
|
"OnionShare y descarga los archivos ``.snap`` y ``.snap.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:45
|
#: ../../source/install.rst:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs`"
|
||||||
"for more info."
|
" for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Verifica la firma PGP del archivo ``.snap``. Consulta :ref:`verifying_sigs` "
|
"Verifica la firma PGP del archivo ``.snap``. Consulta "
|
||||||
"para obtener más información."
|
":ref:`verifying_sigs` para obtener más información."
|
||||||
|
|
||||||
#: ../../source/install.rst:46
|
#: ../../source/install.rst:46
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.snap`` file by running ``snap install --dangerous "
|
"Install the ``.snap`` file by running ``snap install --dangerous "
|
||||||
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version number "
|
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version "
|
||||||
"of the file you downloaded. Note that you must use `--dangerous` because the "
|
"number of the file you downloaded. Note that you must use `--dangerous` "
|
||||||
"package is not signed by the Snapcraft store, however you did verify its PGP "
|
"because the package is not signed by the Snapcraft store, however you did"
|
||||||
"signature, so you know it's legitimate."
|
" verify its PGP signature, so you know it's legitimate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Instala el archivo ``.snap`` ejecutando ``snap install "
|
"Instala el archivo ``.snap`` ejecutando ``snap install "
|
||||||
"--dangerousionsonshare_VERSION_amd64.snap``. Reemplaza ``VERSION`` con el "
|
"--dangerousionsonshare_VERSION_amd64.snap``. Reemplaza ``VERSION`` con el"
|
||||||
"número de versión del archivo que descargaste. Ten en cuenta que debes usar "
|
" número de versión del archivo que descargaste. Ten en cuenta que debes "
|
||||||
"`--dangerous` porque el paquete no está firmado por la tienda de Snapcraft, "
|
"usar `--dangerous` porque el paquete no está firmado por la tienda de "
|
||||||
"sin embargo, verificó tu firma PGP, por lo que sabe que es legítimo."
|
"Snapcraft, sin embargo, verificó tu firma PGP, por lo que sabe que es "
|
||||||
|
"legítimo."
|
||||||
|
|
||||||
#: ../../source/install.rst:48
|
#: ../../source/install.rst:48
|
||||||
msgid "You can run OnionShare with: `snap run onionshare`."
|
msgid "You can run OnionShare with: `snap run onionshare`."
|
||||||
@ -204,8 +203,9 @@ msgstr "Sólo línea de comandos"
|
|||||||
|
|
||||||
#: ../../source/install.rst:55
|
#: ../../source/install.rst:55
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can install just the command-line version of OnionShare on any operating "
|
"You can install just the command-line version of OnionShare on any "
|
||||||
"system using the Python package manager ``pip``. :ref:`cli` has more info."
|
"operating system using the Python package manager ``pip``. :ref:`cli` has"
|
||||||
|
" more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Puedes instalar sólo la versión de línea de comandos de OnionShare en "
|
"Puedes instalar sólo la versión de línea de comandos de OnionShare en "
|
||||||
"cualquier sistema operativo utilizando el gestor de paquetes de Python "
|
"cualquier sistema operativo utilizando el gestor de paquetes de Python "
|
||||||
@ -217,17 +217,17 @@ msgstr "Verificar firmas PGP"
|
|||||||
|
|
||||||
#: ../../source/install.rst:62
|
#: ../../source/install.rst:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can verify that the package you download is legitimate and hasn't been "
|
"You can verify that the package you download is legitimate and hasn't "
|
||||||
"tampered with by verifying its PGP signature. For Windows and macOS, this "
|
"been tampered with by verifying its PGP signature. For Windows and macOS,"
|
||||||
"step is optional and provides defense in depth: the OnionShare binaries "
|
" this step is optional and provides defense in depth: the OnionShare "
|
||||||
"include operating system-specific signatures, and you can just rely on those "
|
"binaries include operating system-specific signatures, and you can just "
|
||||||
"alone if you'd like."
|
"rely on those alone if you'd like."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Puedes verificar que el paquete que descargaste sea legítimo y no haya sido "
|
"Puedes verificar que el paquete que descargaste sea legítimo y no haya "
|
||||||
"manipulado al verificar su firma PGP. Para Windows y macOS, este paso es "
|
"sido manipulado al verificar su firma PGP. Para Windows y macOS, este "
|
||||||
"opcional, y provee defensa en profundidad: los ejecutables OnionShare "
|
"paso es opcional, y provee defensa en profundidad: los ejecutables "
|
||||||
"incluyen firmas específicas del sistema operativo, y puedes confiar solo en "
|
"OnionShare incluyen firmas específicas del sistema operativo, y puedes "
|
||||||
"ellas si así lo prefieres."
|
"confiar solo en ellas si así lo prefieres."
|
||||||
|
|
||||||
#: ../../source/install.rst:66
|
#: ../../source/install.rst:66
|
||||||
msgid "Signing key"
|
msgid "Signing key"
|
||||||
@ -235,44 +235,47 @@ msgstr "Clave de firma"
|
|||||||
|
|
||||||
#: ../../source/install.rst:68
|
#: ../../source/install.rst:68
|
||||||
msgid ""
|
msgid ""
|
||||||
"Packages are signed by Micah Lee, the core developer, using his PGP public "
|
"Packages are signed by Micah Lee, the core developer, using his PGP "
|
||||||
"key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``. You can "
|
"public key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``."
|
||||||
"download Micah's key `from the keys.openpgp.org keyserver <https://keys."
|
" You can download Micah's key `from the keys.openpgp.org keyserver "
|
||||||
"openpgp.org/vks/v1/by-"
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Los paquetes están firmados por Micah Lee, el desarrollador principal, "
|
"Los paquetes están firmados por Micah Lee, el desarrollador principal, "
|
||||||
"usando su clave pública PGP con huella digital "
|
"usando su clave pública PGP con huella digital "
|
||||||
"``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Puedes descargar la clave de "
|
"``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Puedes descargar la clave "
|
||||||
"Micah `desde el servidor de llaves keys.openpgp.org <https://keys.openpgp."
|
"de Micah `desde el servidor de llaves keys.openpgp.org "
|
||||||
"org/vks/v1/by-fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:71
|
#: ../../source/install.rst:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"You must have GnuPG installed to verify signatures. For macOS you probably "
|
"You must have GnuPG installed to verify signatures. For macOS you "
|
||||||
"want `GPGTools <https://gpgtools.org/>`_, and for Windows you probably want "
|
"probably want `GPGTools <https://gpgtools.org/>`_, and for Windows you "
|
||||||
"`Gpg4win <https://www.gpg4win.org/>`_."
|
"probably want `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Para verificar firmas, debes tener GnuPG instalado. Para macOS probablemente "
|
"Para verificar firmas, debes tener GnuPG instalado. Para macOS "
|
||||||
"quieras `GPGTools <https://gpgtools.org/>`_, y para Windows, `Gpg4win "
|
"probablemente quieras `GPGTools <https://gpgtools.org/>`_, y para "
|
||||||
"<https://www.gpg4win.org/>`_."
|
"Windows, `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:74
|
#: ../../source/install.rst:74
|
||||||
msgid "Signatures"
|
msgid "Signatures"
|
||||||
msgstr "Firmas"
|
msgstr "Firmas"
|
||||||
|
|
||||||
#: ../../source/install.rst:76
|
#: ../../source/install.rst:76
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can find the signatures (as ``.asc`` files), as well as Windows, macOS, "
|
"You can find the signatures (as ``.asc`` files), as well as Windows, "
|
||||||
"Flatpak, Snap, and source packages, at https://onionshare.org/dist/ in the "
|
"macOS, Flatpak, Snap, and source packages, at "
|
||||||
"folders named for each version of OnionShare. You can also find them on the "
|
"https://onionshare.org/dist/ in the folders named for each version of "
|
||||||
"`GitHub Releases page <https://github.com/micahflee/onionshare/releases>`_."
|
"OnionShare. You can also find them on the `GitHub Releases page "
|
||||||
|
"<https://github.com/onionshare/onionshare/releases>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Puedes encontrar las firmas (archivos ``.asc``), como así también los "
|
"Puedes encontrar las firmas (archivos ``.asc``), como así también los "
|
||||||
"paquetes para Windows, macOS, Flatpak, Snap y el código fuente, en https://"
|
"paquetes para Windows, macOS, Flatpak, Snap y el código fuente, en "
|
||||||
"onionshare.org/dist/ en las carpetas nombradas por cada versión de "
|
"https://onionshare.org/dist/ en las carpetas nombradas por cada versión "
|
||||||
"OnionShare. También puedes encontrarlas en la `página de Lanzamientos de "
|
"de OnionShare. También puedes encontrarlas en la `página de Lanzamientos "
|
||||||
"GitHub <https://github.com/micahflee/onionshare/releases>`_."
|
"de GitHub <https://github.com/micahflee/onionshare/releases>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:80
|
#: ../../source/install.rst:80
|
||||||
msgid "Verifying"
|
msgid "Verifying"
|
||||||
@ -281,12 +284,12 @@ msgstr "Verificando"
|
|||||||
#: ../../source/install.rst:82
|
#: ../../source/install.rst:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Once you have imported Micah's public key into your GnuPG keychain, "
|
"Once you have imported Micah's public key into your GnuPG keychain, "
|
||||||
"downloaded the binary and ``.asc`` signature, you can verify the binary for "
|
"downloaded the binary and ``.asc`` signature, you can verify the binary "
|
||||||
"macOS in a terminal like this::"
|
"for macOS in a terminal like this::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Una vez que hayas importado la clave pública de Micah en tu llavero GnuPG, "
|
"Una vez que hayas importado la clave pública de Micah en tu llavero "
|
||||||
"descargado el binario y la firma ``.asc``, puedes verificar el binario para "
|
"GnuPG, descargado el binario y la firma ``.asc``, puedes verificar el "
|
||||||
"macOS en un terminal de la siguiente manera::"
|
"binario para macOS en un terminal de la siguiente manera::"
|
||||||
|
|
||||||
#: ../../source/install.rst:86
|
#: ../../source/install.rst:86
|
||||||
msgid "Or for Windows, in a command-prompt like this::"
|
msgid "Or for Windows, in a command-prompt like this::"
|
||||||
@ -298,79 +301,107 @@ msgstr "La salida esperada se parece a esta::"
|
|||||||
|
|
||||||
#: ../../source/install.rst:102
|
#: ../../source/install.rst:102
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you don't see ``Good signature from``, there might be a problem with the "
|
"If you don't see ``Good signature from``, there might be a problem with "
|
||||||
"integrity of the file (malicious or otherwise), and you should not install "
|
"the integrity of the file (malicious or otherwise), and you should not "
|
||||||
"the package. (The ``WARNING:`` shown above, is not a problem with the "
|
"install the package. (The ``WARNING:`` shown above, is not a problem with"
|
||||||
"package, it only means you haven't defined a level of \"trust\" of Micah's "
|
" the package, it only means you haven't defined a level of \"trust\" of "
|
||||||
"(the core developer) PGP key.)"
|
"Micah's (the core developer) PGP key.)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Si no ves ``Good signature from``, puede haber un problema con la integridad "
|
"Si no ves ``Good signature from``, puede haber un problema con la "
|
||||||
"del archivo (malicioso o no), y no deberías instalar el paquete. (El "
|
"integridad del archivo (malicioso o no), y no deberías instalar el "
|
||||||
"``WARNING:`` mostrado arriba, no es un problema con el paquete, sólo "
|
"paquete. (El ``WARNING:`` mostrado arriba, no es un problema con el "
|
||||||
"significa que no has definido un nivel de \"confianza\" de la clave PGP de "
|
"paquete, sólo significa que no has definido un nivel de \"confianza\" de "
|
||||||
"Micah (el desarrollador del núcleo))"
|
"la clave PGP de Micah (el desarrollador del núcleo))"
|
||||||
|
|
||||||
#: ../../source/install.rst:104
|
#: ../../source/install.rst:104
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you want to learn more about verifying PGP signatures, the guides for "
|
"If you want to learn more about verifying PGP signatures, the guides for "
|
||||||
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and "
|
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and"
|
||||||
"the `Tor Project <https://support.torproject.org/tbb/how-to-verify-signature/"
|
" the `Tor Project <https://support.torproject.org/tbb/how-to-verify-"
|
||||||
">`_ may be useful."
|
"signature/>`_ may be useful."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Si quieres aprender más acerca de la verificación de firmas PGP, las guías "
|
"Si quieres aprender más acerca de la verificación de firmas PGP, las "
|
||||||
"para `Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ y "
|
"guías para `Qubes OS <https://www.qubes-os.org/security/verifying-"
|
||||||
"el `Tor Project <https://support.torproject.org/tbb/how-to-verify-signature/"
|
"signatures/>`_ y el `Tor Project <https://support.torproject.org/tbb/how-"
|
||||||
">`_ podrían ser útiles."
|
"to-verify-signature/>`_ podrían ser útiles."
|
||||||
|
|
||||||
#~ msgid "For added security, see :ref:`verifying_sigs`."
|
#~ msgid "For added security, see :ref:`verifying_sigs`."
|
||||||
#~ msgstr "Para mayor seguridad, lee :ref:`verifying_sigs`."
|
#~ msgstr "Para mayor seguridad, lee :ref:`verifying_sigs`."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "There are various ways to install OnionShare for Linux, but the "
|
#~ "There are various ways to install "
|
||||||
#~ "recommended way is to use the Flatpak package. Flatpak ensures that "
|
#~ "OnionShare for Linux, but the "
|
||||||
#~ "you'll always use the most latest dependencies and run OnionShare inside "
|
#~ "recommended way is to use the "
|
||||||
|
#~ "Flatpak package. Flatpak ensures that "
|
||||||
|
#~ "you'll always use the most latest "
|
||||||
|
#~ "dependencies and run OnionShare inside "
|
||||||
#~ "of a sandbox."
|
#~ "of a sandbox."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Hay varias formas de instalar OnionShare en Linux, pero recomendamos "
|
#~ "Hay varias formas de instalar OnionShare"
|
||||||
#~ "utilizar el paquete Flatpak. Flatpak garantiza que las dependencias serán "
|
#~ " en Linux, pero recomendamos utilizar "
|
||||||
#~ "siempre las más recientes y ejecutará OnionShare dentro de un contenedor "
|
#~ "el paquete Flatpak. Flatpak garantiza "
|
||||||
#~ "aislado."
|
#~ "que las dependencias serán siempre las"
|
||||||
|
#~ " más recientes y ejecutará OnionShare "
|
||||||
|
#~ "dentro de un contenedor aislado."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Make sure you have ``flatpak`` installed and the Flathub repository added "
|
#~ "Make sure you have ``flatpak`` installed"
|
||||||
#~ "by following `these instructions <https://flatpak.org/setup/>`_ for your "
|
#~ " and the Flathub repository added by"
|
||||||
#~ "Linux distribution."
|
#~ " following `these instructions "
|
||||||
|
#~ "<https://flatpak.org/setup/>`_ for your Linux "
|
||||||
|
#~ "distribution."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Instala ``flatpak`` y añade el repositorio Flathub siguiendo `estas "
|
#~ "Instala ``flatpak`` y añade el "
|
||||||
#~ "instrucciones <https://flatpak.org/setup/>`_ para tu distribución Linux."
|
#~ "repositorio Flathub siguiendo `estas "
|
||||||
|
#~ "instrucciones <https://flatpak.org/setup/>`_ para tu"
|
||||||
|
#~ " distribución Linux."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "You can verify that the Windows, macOS, or source package you download is "
|
#~ "You can verify that the Windows, "
|
||||||
#~ "legitimate and hasn't been tampered with by verifying its PGP signature. "
|
#~ "macOS, or source package you download"
|
||||||
#~ "For Windows and macOS, this step is optional and provides defense in "
|
#~ " is legitimate and hasn't been "
|
||||||
#~ "depth: the installers also include their operating system-specific "
|
#~ "tampered with by verifying its PGP "
|
||||||
#~ "signatures, and you can just rely on those alone if you'd like."
|
#~ "signature. For Windows and macOS, this"
|
||||||
|
#~ " step is optional and provides "
|
||||||
|
#~ "defense in depth: the installers also"
|
||||||
|
#~ " include their operating system-specific"
|
||||||
|
#~ " signatures, and you can just rely"
|
||||||
|
#~ " on those alone if you'd like."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Puedes asegurate de que el paquete con el código fuente, el de Windows o "
|
#~ "Puedes asegurate de que el paquete "
|
||||||
#~ "el de macOS que descargaste es correcto y no ha sido manipulado "
|
#~ "con el código fuente, el de "
|
||||||
#~ "verificando su firma PGP. Para Windows y macOS este paso es opcional, y "
|
#~ "Windows o el de macOS que "
|
||||||
#~ "provee defensa en profundidad: los instaladores también incluyen sus "
|
#~ "descargaste es correcto y no ha "
|
||||||
#~ "firmas específicas del sistema operativo, y puedes confiar solo en ellas "
|
#~ "sido manipulado verificando su firma "
|
||||||
#~ "si así lo deseas."
|
#~ "PGP. Para Windows y macOS este "
|
||||||
|
#~ "paso es opcional, y provee defensa "
|
||||||
|
#~ "en profundidad: los instaladores también "
|
||||||
|
#~ "incluyen sus firmas específicas del "
|
||||||
|
#~ "sistema operativo, y puedes confiar solo"
|
||||||
|
#~ " en ellas si así lo deseas."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Windows, macOS, and source packaged are signed by Micah Lee, the core "
|
#~ "Windows, macOS, and source packaged are"
|
||||||
#~ "developer, using his PGP public key with fingerprint "
|
#~ " signed by Micah Lee, the core "
|
||||||
#~ "``927F419D7EC82C2F149C1BD1403C2657CD994F73``. You can download Micah's "
|
#~ "developer, using his PGP public key "
|
||||||
#~ "key `from the keys.openpgp.org keyserver <https://keys.openpgp.org/vks/v1/"
|
#~ "with fingerprint "
|
||||||
#~ "by-fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
#~ "``927F419D7EC82C2F149C1BD1403C2657CD994F73``. You can "
|
||||||
|
#~ "download Micah's key `from the "
|
||||||
|
#~ "keys.openpgp.org keyserver "
|
||||||
|
#~ "<https://keys.openpgp.org/vks/v1/by-"
|
||||||
|
#~ "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Los paquetes para Windows, macOS, y el código fuente están firmados por "
|
#~ "Los paquetes para Windows, macOS, y "
|
||||||
#~ "Micah Lee, el desarrollador principal, usando su clave PGP pública con "
|
#~ "el código fuente están firmados por "
|
||||||
#~ "huella digital ``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Puedes "
|
#~ "Micah Lee, el desarrollador principal, "
|
||||||
#~ "descargar la clave de Micah `desde el servidor de claves keys.openpgp.org "
|
#~ "usando su clave PGP pública con "
|
||||||
|
#~ "huella digital "
|
||||||
|
#~ "``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Puedes "
|
||||||
|
#~ "descargar la clave de Micah `desde "
|
||||||
|
#~ "el servidor de claves keys.openpgp.org "
|
||||||
#~ "<https://keys.openpgp.org/vks/v1/by-"
|
#~ "<https://keys.openpgp.org/vks/v1/by-"
|
||||||
#~ "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
#~ "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
|
|
||||||
#~ msgid "Install in Linux"
|
#~ msgid "Install in Linux"
|
||||||
#~ msgstr "Instalar en Linux"
|
#~ msgstr "Instalar en Linux"
|
||||||
|
|
||||||
|
@ -7,17 +7,16 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.3\n"
|
"Project-Id-Version: OnionShare 2.3\n"
|
||||||
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
||||||
"POT-Creation-Date: 2023-06-06 13:07+0200\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: 2023-06-07 14:30+0000\n"
|
"PO-Revision-Date: 2023-06-07 14:30+0000\n"
|
||||||
"Last-Translator: tachyglossues <tachyglossues@gmail.com>\n"
|
"Last-Translator: tachyglossues <tachyglossues@gmail.com>\n"
|
||||||
"Language-Team: none\n"
|
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
"MIME-Version: 1.0\n"
|
"Language-Team: none\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 4.18-dev\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.12.1\n"
|
||||||
|
|
||||||
#: ../../source/install.rst:2
|
#: ../../source/install.rst:2
|
||||||
msgid "Installation"
|
msgid "Installation"
|
||||||
@ -32,8 +31,8 @@ msgid ""
|
|||||||
"You can download OnionShare for Windows and macOS from the `OnionShare "
|
"You can download OnionShare for Windows and macOS from the `OnionShare "
|
||||||
"website <https://onionshare.org/>`_."
|
"website <https://onionshare.org/>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous pouvez télécharger OnionShare pour Windows et macOS depuis le `site web "
|
"Vous pouvez télécharger OnionShare pour Windows et macOS depuis le `site "
|
||||||
"OnionShare <https://onionshare.org/>`_."
|
"web OnionShare <https://onionshare.org/>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:12
|
#: ../../source/install.rst:12
|
||||||
msgid "Linux"
|
msgid "Linux"
|
||||||
@ -41,16 +40,18 @@ msgstr "Linux"
|
|||||||
|
|
||||||
#: ../../source/install.rst:14
|
#: ../../source/install.rst:14
|
||||||
msgid ""
|
msgid ""
|
||||||
"There are various ways to install OnionShare for Linux, but the recommended "
|
"There are various ways to install OnionShare for Linux, but the "
|
||||||
"way is to use either the `Flatpak <https://flatpak.org/>`_ or the `Snap "
|
"recommended way is to use either the `Flatpak <https://flatpak.org/>`_ or"
|
||||||
"<https://snapcraft.io/>`_ package. Flatpak and Snapcraft ensure that you'll "
|
" the `Snap <https://snapcraft.io/>`_ package. Flatpak and Snapcraft "
|
||||||
"always use the newest version and run OnionShare inside of a sandbox."
|
"ensure that you'll always use the newest version and run OnionShare "
|
||||||
|
"inside of a sandbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Il existe plusieurs façons d'installer OnionShare pour Linux, mais la "
|
"Il existe plusieurs façons d'installer OnionShare pour Linux, mais la "
|
||||||
"méthode recommandée est d'utiliser soit le paquet `Flatpak <https://flatpak."
|
"méthode recommandée est d'utiliser soit le paquet `Flatpak "
|
||||||
"org/>`_ soit le paquet `Snap <https://snapcraft.io/>`_. Flatpak et Snapcraft "
|
"<https://flatpak.org/>`_ soit le paquet `Snap <https://snapcraft.io/>`_. "
|
||||||
"garantissent que vous utiliserez toujours la version la plus récente et que "
|
"Flatpak et Snapcraft garantissent que vous utiliserez toujours la version"
|
||||||
"vous exécuterez OnionShare à l'intérieur d'un bac à sable."
|
" la plus récente et que vous exécuterez OnionShare à l'intérieur d'un bac"
|
||||||
|
" à sable."
|
||||||
|
|
||||||
#: ../../source/install.rst:17
|
#: ../../source/install.rst:17
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -58,30 +59,32 @@ msgid ""
|
|||||||
"support, but which you use is up to you. Both work in all Linux "
|
"support, but which you use is up to you. Both work in all Linux "
|
||||||
"distributions."
|
"distributions."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"La prise en charge de Snapcraft est intégrée à Ubuntu et Fedora est fournie "
|
"La prise en charge de Snapcraft est intégrée à Ubuntu et Fedora est "
|
||||||
"avec la prise en charge de Flatpak, mais c'est à vous de choisir. Les deux "
|
"fournie avec la prise en charge de Flatpak, mais c'est à vous de choisir."
|
||||||
"fonctionnent dans toutes les distributions Linux."
|
" Les deux fonctionnent dans toutes les distributions Linux."
|
||||||
|
|
||||||
#: ../../source/install.rst:19
|
#: ../../source/install.rst:19
|
||||||
msgid ""
|
msgid ""
|
||||||
"**Install OnionShare using Flatpak**: https://flathub.org/apps/details/org."
|
"**Install OnionShare using Flatpak**: "
|
||||||
"onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**Installer OnionShare en utilisant Flatpak** : https://flathub.org/apps/"
|
"**Installer OnionShare en utilisant Flatpak** : "
|
||||||
"details/org.onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
|
|
||||||
#: ../../source/install.rst:21
|
#: ../../source/install.rst:21
|
||||||
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**Installer OnionShare en utilisant Snap** : https://snapcraft.io/onionshare"
|
"**Installer OnionShare en utilisant Snap** : "
|
||||||
|
"https://snapcraft.io/onionshare"
|
||||||
|
|
||||||
#: ../../source/install.rst:23
|
#: ../../source/install.rst:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can also download and install PGP-signed ``.flatpak`` or ``.snap`` "
|
"You can also download and install PGP-signed ``.flatpak`` or ``.snap`` "
|
||||||
"packages from https://onionshare.org/dist/ if you prefer."
|
"packages from https://onionshare.org/dist/ if you prefer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous pouvez aussi télécharger et installer des paquets ``.flatpak`` ou ``."
|
"Vous pouvez aussi télécharger et installer des paquets ``.flatpak`` ou "
|
||||||
"snap`` signé avec PGP depuis https://onionshare.org/dist/ si vous préférer."
|
"``.snap`` signé avec PGP depuis https://onionshare.org/dist/ si vous "
|
||||||
|
"préférer."
|
||||||
|
|
||||||
#: ../../source/install.rst:26
|
#: ../../source/install.rst:26
|
||||||
msgid "Manual Flatpak Installation"
|
msgid "Manual Flatpak Installation"
|
||||||
@ -90,26 +93,28 @@ msgstr "Installation manuelle de Flatpak"
|
|||||||
#: ../../source/install.rst:28
|
#: ../../source/install.rst:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
||||||
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-file-"
|
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-"
|
||||||
"bundles.html>`_, you can do so like this:"
|
"file-bundles.html>`_, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Si vous souhaitez installer OnionShare manuellement avec Flatpak en "
|
"Si vous souhaitez installer OnionShare manuellement avec Flatpak en "
|
||||||
"utilisant le `single-file bundle <https://docs.flatpak.org/en/latest/single-"
|
"utilisant le `single-file bundle <https://docs.flatpak.org/en/latest"
|
||||||
"file-bundles.html>`_signé par PGP, vous pouvez le faire comme suit :"
|
"/single-file-bundles.html>`_signé par PGP, vous pouvez le faire comme "
|
||||||
|
"suit :"
|
||||||
|
|
||||||
#: ../../source/install.rst:30
|
#: ../../source/install.rst:30
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Flatpak by following the instructions at https://flatpak.org/setup/."
|
"Install Flatpak by following the instructions at "
|
||||||
|
"https://flatpak.org/setup/."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Installez Flatpak en suivant les instructions à l'adresse https://flatpak."
|
"Installez Flatpak en suivant les instructions à l'adresse "
|
||||||
"org/setup/."
|
"https://flatpak.org/setup/."
|
||||||
|
|
||||||
#: ../../source/install.rst:31
|
#: ../../source/install.rst:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"Add the Flathub repository by running ``flatpak remote-add --if-not-exists "
|
"Add the Flathub repository by running ``flatpak remote-add --if-not-"
|
||||||
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Even though you "
|
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Even "
|
||||||
"won't be downloading OnionShare from Flathub, OnionShare depends on some "
|
"though you won't be downloading OnionShare from Flathub, OnionShare "
|
||||||
"packages that are only available there."
|
"depends on some packages that are only available there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ajoutez le dépôt Flathub en lançant ``flatpak remote-add --if-not-exists "
|
"Ajoutez le dépôt Flathub en lançant ``flatpak remote-add --if-not-exists "
|
||||||
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Même si vous ne "
|
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Même si vous ne "
|
||||||
@ -118,34 +123,36 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/install.rst:32
|
#: ../../source/install.rst:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
"OnionShare, and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Allez sur https://onionshare.org/dist/, choisissez la dernière version "
|
"Allez sur https://onionshare.org/dist/, choisissez la dernière version "
|
||||||
"d'OnionShare, et téléchargez les fichiers ``.flatpak`` et ``.flatpak.asc``."
|
"d'OnionShare, et téléchargez les fichiers ``.flatpak`` et "
|
||||||
|
"``.flatpak.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:33
|
#: ../../source/install.rst:33
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.flatpak`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.flatpak`` file. See "
|
||||||
"for more info."
|
":ref:`verifying_sigs` for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vérifie la signature PGP du fichier ``.flatpak``. Voir :ref:`verifying_sigs` "
|
"Vérifie la signature PGP du fichier ``.flatpak``. Voir "
|
||||||
"pour plus d'informations."
|
":ref:`verifying_sigs` pour plus d'informations."
|
||||||
|
|
||||||
#: ../../source/install.rst:34
|
#: ../../source/install.rst:34
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
||||||
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the file "
|
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the "
|
||||||
"you downloaded."
|
"file you downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Installez le fichier ``.flatpak`` en exécutant ``flatpak install OnionShare-"
|
"Installez le fichier ``.flatpak`` en exécutant ``flatpak install "
|
||||||
"VERSION.flatpak``. Remplacez ``VERSION`` par le numéro de version du fichier "
|
"OnionShare-VERSION.flatpak``. Remplacez ``VERSION`` par le numéro de "
|
||||||
"que vous avez téléchargé."
|
"version du fichier que vous avez téléchargé."
|
||||||
|
|
||||||
#: ../../source/install.rst:36
|
#: ../../source/install.rst:36
|
||||||
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous pouvez lancer OnionShare avec : `flatpak run org.onionshare.OnionShare`."
|
"Vous pouvez lancer OnionShare avec : `flatpak run "
|
||||||
|
"org.onionshare.OnionShare`."
|
||||||
|
|
||||||
#: ../../source/install.rst:39
|
#: ../../source/install.rst:39
|
||||||
msgid "Manual Snapcraft Installation"
|
msgid "Manual Snapcraft Installation"
|
||||||
@ -153,50 +160,51 @@ msgstr "Manuel d'installation de Snapcraft"
|
|||||||
|
|
||||||
#: ../../source/install.rst:41
|
#: ../../source/install.rst:41
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Snapcraft using the PGP-"
|
"If you'd like to install OnionShare manually with Snapcraft using the "
|
||||||
"signed Snapcraft package, you can do so like this:"
|
"PGP-signed Snapcraft package, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Si vous souhaitez installer OnionShare manuellement avec Snapcraft en "
|
"Si vous souhaitez installer OnionShare manuellement avec Snapcraft en "
|
||||||
"utilisant le paquet Snapcraft signé PGP, vous pouvez le faire comme suit :"
|
"utilisant le paquet Snapcraft signé PGP, vous pouvez le faire comme suit "
|
||||||
|
":"
|
||||||
|
|
||||||
#: ../../source/install.rst:43
|
#: ../../source/install.rst:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Snapcraft by following the instructions at https://snapcraft.io/docs/"
|
"Install Snapcraft by following the instructions at "
|
||||||
"installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Installez Snapcraft en suivant les instructions à l'adresse https://snapcraft"
|
"Installez Snapcraft en suivant les instructions à l'adresse "
|
||||||
".io/docs/installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
|
|
||||||
#: ../../source/install.rst:44
|
#: ../../source/install.rst:44
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.snap`` and ``.snap.asc`` files."
|
"OnionShare, and download the ``.snap`` and ``.snap.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Allez sur https://onionshare.org/dist/, choisissez la dernière version "
|
"Allez sur https://onionshare.org/dist/, choisissez la dernière version "
|
||||||
"d'OnionShare, et téléchargez les fichiers ``.snap`` et ``.snap.asc``."
|
"d'OnionShare, et téléchargez les fichiers ``.snap`` et ``.snap.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:45
|
#: ../../source/install.rst:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs`"
|
||||||
"for more info."
|
" for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vérifie la signature PGP du fichier ``.snap``. Voir :ref:`verifying_sigs` "
|
"Vérifie la signature PGP du fichier ``.snap``. Voir :ref:`verifying_sigs`"
|
||||||
"pour plus d'informations."
|
" pour plus d'informations."
|
||||||
|
|
||||||
#: ../../source/install.rst:46
|
#: ../../source/install.rst:46
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.snap`` file by running ``snap install --dangerous "
|
"Install the ``.snap`` file by running ``snap install --dangerous "
|
||||||
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version number "
|
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version "
|
||||||
"of the file you downloaded. Note that you must use `--dangerous` because the "
|
"number of the file you downloaded. Note that you must use `--dangerous` "
|
||||||
"package is not signed by the Snapcraft store, however you did verify its PGP "
|
"because the package is not signed by the Snapcraft store, however you did"
|
||||||
"signature, so you know it's legitimate."
|
" verify its PGP signature, so you know it's legitimate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Installez le fichier ``.snap`` en exécutant ``snap install --dangerous "
|
"Installez le fichier ``.snap`` en exécutant ``snap install --dangerous "
|
||||||
"onionshare_VERSION_amd64.snap``. Remplacez ``VERSION`` par le numéro de "
|
"onionshare_VERSION_amd64.snap``. Remplacez ``VERSION`` par le numéro de "
|
||||||
"version du fichier que vous avez téléchargé. Notez que vous devez utiliser "
|
"version du fichier que vous avez téléchargé. Notez que vous devez "
|
||||||
"`--dangerous` parce que le paquet n'est pas signé par le magasin Snapcraft, "
|
"utiliser `--dangerous` parce que le paquet n'est pas signé par le magasin"
|
||||||
"cependant vous avez vérifié sa signature PGP, donc vous savez qu'il est "
|
" Snapcraft, cependant vous avez vérifié sa signature PGP, donc vous savez"
|
||||||
"légitime."
|
" qu'il est légitime."
|
||||||
|
|
||||||
#: ../../source/install.rst:48
|
#: ../../source/install.rst:48
|
||||||
msgid "You can run OnionShare with: `snap run onionshare`."
|
msgid "You can run OnionShare with: `snap run onionshare`."
|
||||||
@ -208,12 +216,13 @@ msgstr "Uniquement en ligne de commande"
|
|||||||
|
|
||||||
#: ../../source/install.rst:55
|
#: ../../source/install.rst:55
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can install just the command-line version of OnionShare on any operating "
|
"You can install just the command-line version of OnionShare on any "
|
||||||
"system using the Python package manager ``pip``. :ref:`cli` has more info."
|
"operating system using the Python package manager ``pip``. :ref:`cli` has"
|
||||||
|
" more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous pouvez installer uniquement la version en ligne de commande "
|
"Vous pouvez installer uniquement la version en ligne de commande "
|
||||||
"d'OnionShare sur n'importe quel OS en utilisant le gestionnaire de paquets "
|
"d'OnionShare sur n'importe quel OS en utilisant le gestionnaire de "
|
||||||
"``pip``. Voir :ref:`cli` pour plus de précisions."
|
"paquets ``pip``. Voir :ref:`cli` pour plus de précisions."
|
||||||
|
|
||||||
#: ../../source/install.rst:60
|
#: ../../source/install.rst:60
|
||||||
msgid "Verifying PGP signatures"
|
msgid "Verifying PGP signatures"
|
||||||
@ -221,17 +230,18 @@ msgstr "Vérifier les signatures PGP"
|
|||||||
|
|
||||||
#: ../../source/install.rst:62
|
#: ../../source/install.rst:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can verify that the package you download is legitimate and hasn't been "
|
"You can verify that the package you download is legitimate and hasn't "
|
||||||
"tampered with by verifying its PGP signature. For Windows and macOS, this "
|
"been tampered with by verifying its PGP signature. For Windows and macOS,"
|
||||||
"step is optional and provides defense in depth: the OnionShare binaries "
|
" this step is optional and provides defense in depth: the OnionShare "
|
||||||
"include operating system-specific signatures, and you can just rely on those "
|
"binaries include operating system-specific signatures, and you can just "
|
||||||
"alone if you'd like."
|
"rely on those alone if you'd like."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous pouvez vérifier que les paquets que vous téléchargés n'ont pas été "
|
"Vous pouvez vérifier que les paquets que vous téléchargés n'ont pas été "
|
||||||
"falsifiés en vérifiant la signature PGP. Pour Windows et macOS, cette étape "
|
"falsifiés en vérifiant la signature PGP. Pour Windows et macOS, cette "
|
||||||
"est optionnelle et procure une défense en profondeur : les exécutables "
|
"étape est optionnelle et procure une défense en profondeur : les "
|
||||||
"OnionShare incluent des signatures spécifiques aux systèmes, et vous pouvez "
|
"exécutables OnionShare incluent des signatures spécifiques aux systèmes, "
|
||||||
"vous reposer uniquement sur celles-là si vous le souhaitez."
|
"et vous pouvez vous reposer uniquement sur celles-là si vous le "
|
||||||
|
"souhaitez."
|
||||||
|
|
||||||
#: ../../source/install.rst:66
|
#: ../../source/install.rst:66
|
||||||
msgid "Signing key"
|
msgid "Signing key"
|
||||||
@ -239,44 +249,47 @@ msgstr "Clé de signature"
|
|||||||
|
|
||||||
#: ../../source/install.rst:68
|
#: ../../source/install.rst:68
|
||||||
msgid ""
|
msgid ""
|
||||||
"Packages are signed by Micah Lee, the core developer, using his PGP public "
|
"Packages are signed by Micah Lee, the core developer, using his PGP "
|
||||||
"key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``. You can "
|
"public key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``."
|
||||||
"download Micah's key `from the keys.openpgp.org keyserver <https://keys."
|
" You can download Micah's key `from the keys.openpgp.org keyserver "
|
||||||
"openpgp.org/vks/v1/by-"
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Les paquets sont signés par Micah Lee, développeur principal, utilisant sa "
|
"Les paquets sont signés par Micah Lee, développeur principal, utilisant "
|
||||||
"clé PGP publique ayant comme empreinte "
|
"sa clé PGP publique ayant comme empreinte "
|
||||||
"``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Vous pouvez téléchargez sa clé "
|
"``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Vous pouvez téléchargez sa "
|
||||||
"`depuis le serveur de clé openpgp.org. <https://keys.openpgp.org/vks/v1/by-"
|
"clé `depuis le serveur de clé openpgp.org. "
|
||||||
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:71
|
#: ../../source/install.rst:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"You must have GnuPG installed to verify signatures. For macOS you probably "
|
"You must have GnuPG installed to verify signatures. For macOS you "
|
||||||
"want `GPGTools <https://gpgtools.org/>`_, and for Windows you probably want "
|
"probably want `GPGTools <https://gpgtools.org/>`_, and for Windows you "
|
||||||
"`Gpg4win <https://www.gpg4win.org/>`_."
|
"probably want `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous devez avoir installé GnuPG pour vérifier les signatures. Pour macOS, "
|
"Vous devez avoir installé GnuPG pour vérifier les signatures. Pour macOS,"
|
||||||
"vous voudrez probablement utilisé `GPGTools <https://gpgtools.org/>`_, et "
|
" vous voudrez probablement utilisé `GPGTools <https://gpgtools.org/>`_, "
|
||||||
"pour Windows `Gpg4win <https://www.gpg4win.org/>`_."
|
"et pour Windows `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:74
|
#: ../../source/install.rst:74
|
||||||
msgid "Signatures"
|
msgid "Signatures"
|
||||||
msgstr "Signatures"
|
msgstr "Signatures"
|
||||||
|
|
||||||
#: ../../source/install.rst:76
|
#: ../../source/install.rst:76
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can find the signatures (as ``.asc`` files), as well as Windows, macOS, "
|
"You can find the signatures (as ``.asc`` files), as well as Windows, "
|
||||||
"Flatpak, Snap, and source packages, at https://onionshare.org/dist/ in the "
|
"macOS, Flatpak, Snap, and source packages, at "
|
||||||
"folders named for each version of OnionShare. You can also find them on the "
|
"https://onionshare.org/dist/ in the folders named for each version of "
|
||||||
"`GitHub Releases page <https://github.com/micahflee/onionshare/releases>`_."
|
"OnionShare. You can also find them on the `GitHub Releases page "
|
||||||
|
"<https://github.com/onionshare/onionshare/releases>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Vous pouvez trouver les signatures (en tant fichiers ``.asc``), ainsi que "
|
"Vous pouvez trouver les signatures (en tant fichiers ``.asc``), ainsi que"
|
||||||
"les fichiers Windows, macOS, Flatpak, Snap et sources, à https://onionshare."
|
" les fichiers Windows, macOS, Flatpak, Snap et sources, à "
|
||||||
"org/dist/ in les dossiers correspondants à chaque version d'OnionShare. Vous "
|
"https://onionshare.org/dist/ in les dossiers correspondants à chaque "
|
||||||
"pouvez aussi les trouvez sur `la page des versions GitHub <https://github."
|
"version d'OnionShare. Vous pouvez aussi les trouvez sur `la page des "
|
||||||
"com/micahflee/onionshare/releases>`_."
|
"versions GitHub <https://github.com/micahflee/onionshare/releases>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:80
|
#: ../../source/install.rst:80
|
||||||
msgid "Verifying"
|
msgid "Verifying"
|
||||||
@ -285,12 +298,12 @@ msgstr "Vérifier"
|
|||||||
#: ../../source/install.rst:82
|
#: ../../source/install.rst:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Once you have imported Micah's public key into your GnuPG keychain, "
|
"Once you have imported Micah's public key into your GnuPG keychain, "
|
||||||
"downloaded the binary and ``.asc`` signature, you can verify the binary for "
|
"downloaded the binary and ``.asc`` signature, you can verify the binary "
|
||||||
"macOS in a terminal like this::"
|
"for macOS in a terminal like this::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Une fois que vous avez importé la clé publique de Micah dans votre trousseau "
|
"Une fois que vous avez importé la clé publique de Micah dans votre "
|
||||||
"de clés GnuPG, téléchargé le binaire et la signature ``.asc``, vous pouvez "
|
"trousseau de clés GnuPG, téléchargé le binaire et la signature ``.asc``, "
|
||||||
"vérifier le binaire pour macOS dans un terminal comme ceci::"
|
"vous pouvez vérifier le binaire pour macOS dans un terminal comme ceci::"
|
||||||
|
|
||||||
#: ../../source/install.rst:86
|
#: ../../source/install.rst:86
|
||||||
msgid "Or for Windows, in a command-prompt like this::"
|
msgid "Or for Windows, in a command-prompt like this::"
|
||||||
@ -302,26 +315,28 @@ msgstr "La sortie attendue ressemble à ::"
|
|||||||
|
|
||||||
#: ../../source/install.rst:102
|
#: ../../source/install.rst:102
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you don't see ``Good signature from``, there might be a problem with the "
|
"If you don't see ``Good signature from``, there might be a problem with "
|
||||||
"integrity of the file (malicious or otherwise), and you should not install "
|
"the integrity of the file (malicious or otherwise), and you should not "
|
||||||
"the package. (The ``WARNING:`` shown above, is not a problem with the "
|
"install the package. (The ``WARNING:`` shown above, is not a problem with"
|
||||||
"package, it only means you haven't defined a level of \"trust\" of Micah's "
|
" the package, it only means you haven't defined a level of \"trust\" of "
|
||||||
"(the core developer) PGP key.)"
|
"Micah's (the core developer) PGP key.)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Si vous ne voyez pas ``Good signature from``, il se peut qu'il y ait un "
|
"Si vous ne voyez pas ``Good signature from``, il se peut qu'il y ait un "
|
||||||
"problème avec l'intégrité du fichier (malveillant ou autre chose), et vous "
|
"problème avec l'intégrité du fichier (malveillant ou autre chose), et "
|
||||||
"ne devriez pas installer le paquet. (Le ``WARNING:`` affiché au dessus, "
|
"vous ne devriez pas installer le paquet. (Le ``WARNING:`` affiché au "
|
||||||
"n'est pas un problème avec le paquet, cela veut seulement dire que vous "
|
"dessus, n'est pas un problème avec le paquet, cela veut seulement dire "
|
||||||
"n'avez pas défini le niveau de \"confiance\" de la clé PGP de Micah.)"
|
"que vous n'avez pas défini le niveau de \"confiance\" de la clé PGP de "
|
||||||
|
"Micah.)"
|
||||||
|
|
||||||
#: ../../source/install.rst:104
|
#: ../../source/install.rst:104
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you want to learn more about verifying PGP signatures, the guides for "
|
"If you want to learn more about verifying PGP signatures, the guides for "
|
||||||
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and "
|
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and"
|
||||||
"the `Tor Project <https://support.torproject.org/tbb/how-to-verify-signature/"
|
" the `Tor Project <https://support.torproject.org/tbb/how-to-verify-"
|
||||||
">`_ may be useful."
|
"signature/>`_ may be useful."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Si vous voulez en apprendre plus sur la vérification des signatures PGP, le "
|
"Si vous voulez en apprendre plus sur la vérification des signatures PGP, "
|
||||||
"guide de `Qubes OS <https://www.qubes-os.org/security/verifying-signatures/"
|
"le guide de `Qubes OS <https://www.qubes-os.org/security/verifying-"
|
||||||
">`_ et du `Projet Tor <https://support.torproject.org/tbb/how-to-verify-"
|
"signatures/>`_ et du `Projet Tor <https://support.torproject.org/tbb/how-"
|
||||||
"signature/>`_ peuvent être utiles."
|
"to-verify-signature/>`_ peuvent être utiles."
|
||||||
|
|
||||||
|
@ -7,18 +7,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.3\n"
|
"Project-Id-Version: OnionShare 2.3\n"
|
||||||
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
||||||
"POT-Creation-Date: 2023-06-06 13:07+0200\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: 2023-06-07 14:30+0000\n"
|
"PO-Revision-Date: 2023-06-07 14:30+0000\n"
|
||||||
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
|
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
|
||||||
"Language-Team: pl <LL@li.org>\n"
|
|
||||||
"Language: pl\n"
|
"Language: pl\n"
|
||||||
|
"Language-Team: pl <LL@li.org>\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && "
|
||||||
|
"(n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
"Generated-By: Babel 2.12.1\n"
|
||||||
"|| n%100>=20) ? 1 : 2;\n"
|
|
||||||
"X-Generator: Weblate 4.18-dev\n"
|
|
||||||
"Generated-By: Babel 2.9.1\n"
|
|
||||||
|
|
||||||
#: ../../source/install.rst:2
|
#: ../../source/install.rst:2
|
||||||
msgid "Installation"
|
msgid "Installation"
|
||||||
@ -33,8 +32,8 @@ msgid ""
|
|||||||
"You can download OnionShare for Windows and macOS from the `OnionShare "
|
"You can download OnionShare for Windows and macOS from the `OnionShare "
|
||||||
"website <https://onionshare.org/>`_."
|
"website <https://onionshare.org/>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Możesz pobrać OnionShare dla Windows i macOS ze `strony OnionShare <https://"
|
"Możesz pobrać OnionShare dla Windows i macOS ze `strony OnionShare "
|
||||||
"onionshare.org/>`_."
|
"<https://onionshare.org/>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:12
|
#: ../../source/install.rst:12
|
||||||
msgid "Linux"
|
msgid "Linux"
|
||||||
@ -42,15 +41,17 @@ msgstr "Linux"
|
|||||||
|
|
||||||
#: ../../source/install.rst:14
|
#: ../../source/install.rst:14
|
||||||
msgid ""
|
msgid ""
|
||||||
"There are various ways to install OnionShare for Linux, but the recommended "
|
"There are various ways to install OnionShare for Linux, but the "
|
||||||
"way is to use either the `Flatpak <https://flatpak.org/>`_ or the `Snap "
|
"recommended way is to use either the `Flatpak <https://flatpak.org/>`_ or"
|
||||||
"<https://snapcraft.io/>`_ package. Flatpak and Snapcraft ensure that you'll "
|
" the `Snap <https://snapcraft.io/>`_ package. Flatpak and Snapcraft "
|
||||||
"always use the newest version and run OnionShare inside of a sandbox."
|
"ensure that you'll always use the newest version and run OnionShare "
|
||||||
|
"inside of a sandbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Istnieją różne sposoby instalacji OnionShare dla systemu Linux, ale "
|
"Istnieją różne sposoby instalacji OnionShare dla systemu Linux, ale "
|
||||||
"zalecanym sposobem jest użycie pakietu `Flatpak <https://flatpak.org/>`_ lub "
|
"zalecanym sposobem jest użycie pakietu `Flatpak <https://flatpak.org/>`_ "
|
||||||
"`Snap <https://snapcraft.io/>`_ . Flatpak i Snap zapewnią, że zawsze "
|
"lub `Snap <https://snapcraft.io/>`_ . Flatpak i Snap zapewnią, że zawsze "
|
||||||
"będziesz korzystać z najnowszej wersji i uruchamiać OnionShare w piaskownicy."
|
"będziesz korzystać z najnowszej wersji i uruchamiać OnionShare w "
|
||||||
|
"piaskownicy."
|
||||||
|
|
||||||
#: ../../source/install.rst:17
|
#: ../../source/install.rst:17
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -64,17 +65,17 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/install.rst:19
|
#: ../../source/install.rst:19
|
||||||
msgid ""
|
msgid ""
|
||||||
"**Install OnionShare using Flatpak**: https://flathub.org/apps/details/org."
|
"**Install OnionShare using Flatpak**: "
|
||||||
"onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**Instalacja OnionShare przy użyciu Flatpak**: https://flathub.org/apps/"
|
"**Instalacja OnionShare przy użyciu Flatpak**: "
|
||||||
"details/org.onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
|
|
||||||
#: ../../source/install.rst:21
|
#: ../../source/install.rst:21
|
||||||
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**Instalacja OnionShare przy użyciu Snapcraft**: https://snapcraft.io/"
|
"**Instalacja OnionShare przy użyciu Snapcraft**: "
|
||||||
"onionshare"
|
"https://snapcraft.io/onionshare"
|
||||||
|
|
||||||
#: ../../source/install.rst:23
|
#: ../../source/install.rst:23
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -91,44 +92,45 @@ msgstr "Ręczna instalacja Flatpak"
|
|||||||
#: ../../source/install.rst:28
|
#: ../../source/install.rst:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
||||||
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-file-"
|
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-"
|
||||||
"bundles.html>`_, you can do so like this:"
|
"file-bundles.html>`_, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Jeśli chcesz ręcznie zainstalować OnionShare z Flatpak, używając podpisanego "
|
"Jeśli chcesz ręcznie zainstalować OnionShare z Flatpak, używając "
|
||||||
"PGP `single-file bundle <https://docs.flatpak.org/en/latest/single-file-"
|
"podpisanego PGP `single-file bundle <https://docs.flatpak.org/en/latest"
|
||||||
"bundles.html>`_, możesz to zrobić w ten sposób:"
|
"/single-file-bundles.html>`_, możesz to zrobić w ten sposób:"
|
||||||
|
|
||||||
#: ../../source/install.rst:30
|
#: ../../source/install.rst:30
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Flatpak by following the instructions at https://flatpak.org/setup/."
|
"Install Flatpak by following the instructions at "
|
||||||
|
"https://flatpak.org/setup/."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Zainstaluj Flatpak, postępując zgodnie z instrukcjami na stronie "
|
"Zainstaluj Flatpak, postępując zgodnie z instrukcjami na stronie "
|
||||||
"https://flatpak.org/setup/."
|
"https://flatpak.org/setup/."
|
||||||
|
|
||||||
#: ../../source/install.rst:31
|
#: ../../source/install.rst:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"Add the Flathub repository by running ``flatpak remote-add --if-not-exists "
|
"Add the Flathub repository by running ``flatpak remote-add --if-not-"
|
||||||
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Even though you "
|
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Even "
|
||||||
"won't be downloading OnionShare from Flathub, OnionShare depends on some "
|
"though you won't be downloading OnionShare from Flathub, OnionShare "
|
||||||
"packages that are only available there."
|
"depends on some packages that are only available there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dodaj repozytorium Flathub, uruchamiając ``flatpak remote-add --if-not-"
|
"Dodaj repozytorium Flathub, uruchamiając ``flatpak remote-add --if-not-"
|
||||||
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Nawet jeśli "
|
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Nawet "
|
||||||
"nie będziesz pobierać OnionShare z Flathub, OnionShare zależy od niektórych "
|
"jeśli nie będziesz pobierać OnionShare z Flathub, OnionShare zależy od "
|
||||||
"pakietów, które są dostępne tylko tam."
|
"niektórych pakietów, które są dostępne tylko tam."
|
||||||
|
|
||||||
#: ../../source/install.rst:32
|
#: ../../source/install.rst:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
"OnionShare, and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Przejdź do https://onionshare.org/dist/, wybierz najnowszą wersję OnionShare "
|
"Przejdź do https://onionshare.org/dist/, wybierz najnowszą wersję "
|
||||||
"i pobierz pliki ``.flatpak`` i ``.flatpak.asc``."
|
"OnionShare i pobierz pliki ``.flatpak`` i ``.flatpak.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:33
|
#: ../../source/install.rst:33
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.flatpak`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.flatpak`` file. See "
|
||||||
"for more info."
|
":ref:`verifying_sigs` for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sprawdź podpis PGP pliku ``.flatpak``. Zobacz :ref:`verifying_sigs`, aby "
|
"Sprawdź podpis PGP pliku ``.flatpak``. Zobacz :ref:`verifying_sigs`, aby "
|
||||||
"uzyskać więcej informacji."
|
"uzyskać więcej informacji."
|
||||||
@ -136,8 +138,8 @@ msgstr ""
|
|||||||
#: ../../source/install.rst:34
|
#: ../../source/install.rst:34
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
||||||
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the file "
|
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the "
|
||||||
"you downloaded."
|
"file you downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Zainstaluj plik ``.flatpak``, uruchamiając ``flatpak install OnionShare-"
|
"Zainstaluj plik ``.flatpak``, uruchamiając ``flatpak install OnionShare-"
|
||||||
"VERSION.flatpak``. Zastąp ``VERSION`` numerem wersji pobranego pliku."
|
"VERSION.flatpak``. Zastąp ``VERSION`` numerem wersji pobranego pliku."
|
||||||
@ -145,8 +147,8 @@ msgstr ""
|
|||||||
#: ../../source/install.rst:36
|
#: ../../source/install.rst:36
|
||||||
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Możesz uruchomić OnionShare za pomocą: `flatpak run org.onionshare."
|
"Możesz uruchomić OnionShare za pomocą: `flatpak run "
|
||||||
"OnionShare`."
|
"org.onionshare.OnionShare`."
|
||||||
|
|
||||||
#: ../../source/install.rst:39
|
#: ../../source/install.rst:39
|
||||||
msgid "Manual Snapcraft Installation"
|
msgid "Manual Snapcraft Installation"
|
||||||
@ -154,33 +156,33 @@ msgstr "Ręczna instalacja Snapcraft"
|
|||||||
|
|
||||||
#: ../../source/install.rst:41
|
#: ../../source/install.rst:41
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Snapcraft using the PGP-"
|
"If you'd like to install OnionShare manually with Snapcraft using the "
|
||||||
"signed Snapcraft package, you can do so like this:"
|
"PGP-signed Snapcraft package, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Jeśli chcesz ręcznie zainstalować OnionShare za pomocą Snapcraft przy użyciu "
|
"Jeśli chcesz ręcznie zainstalować OnionShare za pomocą Snapcraft przy "
|
||||||
"pakietu Snapcraft podpisanego przez PGP, możesz to zrobić w następujący "
|
"użyciu pakietu Snapcraft podpisanego przez PGP, możesz to zrobić w "
|
||||||
"sposób:"
|
"następujący sposób:"
|
||||||
|
|
||||||
#: ../../source/install.rst:43
|
#: ../../source/install.rst:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Snapcraft by following the instructions at https://snapcraft.io/docs/"
|
"Install Snapcraft by following the instructions at "
|
||||||
"installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Zainstaluj Snapcraft, postępując zgodnie z instrukcjami na stronie "
|
"Zainstaluj Snapcraft, postępując zgodnie z instrukcjami na stronie "
|
||||||
"https://snapcraft.io/docs/installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
|
|
||||||
#: ../../source/install.rst:44
|
#: ../../source/install.rst:44
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.snap`` and ``.snap.asc`` files."
|
"OnionShare, and download the ``.snap`` and ``.snap.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Przejdź do https://onionshare.org/dist/, wybierz najnowszą wersję OnionShare "
|
"Przejdź do https://onionshare.org/dist/, wybierz najnowszą wersję "
|
||||||
"i pobierz pliki ``.snap`` i ``.snap.asc``."
|
"OnionShare i pobierz pliki ``.snap`` i ``.snap.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:45
|
#: ../../source/install.rst:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs`"
|
||||||
"for more info."
|
" for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Sprawdź podpis PGP pliku ``.snap``. Zobacz :ref:`verifying_sigs`, aby "
|
"Sprawdź podpis PGP pliku ``.snap``. Zobacz :ref:`verifying_sigs`, aby "
|
||||||
"uzyskać więcej informacji."
|
"uzyskać więcej informacji."
|
||||||
@ -188,16 +190,16 @@ msgstr ""
|
|||||||
#: ../../source/install.rst:46
|
#: ../../source/install.rst:46
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.snap`` file by running ``snap install --dangerous "
|
"Install the ``.snap`` file by running ``snap install --dangerous "
|
||||||
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version number "
|
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version "
|
||||||
"of the file you downloaded. Note that you must use `--dangerous` because the "
|
"number of the file you downloaded. Note that you must use `--dangerous` "
|
||||||
"package is not signed by the Snapcraft store, however you did verify its PGP "
|
"because the package is not signed by the Snapcraft store, however you did"
|
||||||
"signature, so you know it's legitimate."
|
" verify its PGP signature, so you know it's legitimate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Zainstaluj plik ``.snap``, uruchamiając ``snap install --dangerous "
|
"Zainstaluj plik ``.snap``, uruchamiając ``snap install --dangerous "
|
||||||
"onionshare_VERSION_amd64.snap``. Zastąp ``VERSION`` numerem wersji pobranego "
|
"onionshare_VERSION_amd64.snap``. Zastąp ``VERSION`` numerem wersji "
|
||||||
"pliku. Pamiętaj, że musisz użyć `--dangerous`, ponieważ pakiet nie jest "
|
"pobranego pliku. Pamiętaj, że musisz użyć `--dangerous`, ponieważ pakiet "
|
||||||
"podpisany przez sklep Snapcraft, jednak zweryfikowano jego podpis PGP, więc "
|
"nie jest podpisany przez sklep Snapcraft, jednak zweryfikowano jego "
|
||||||
"wiesz, że jest legalny."
|
"podpis PGP, więc wiesz, że jest legalny."
|
||||||
|
|
||||||
#: ../../source/install.rst:48
|
#: ../../source/install.rst:48
|
||||||
msgid "You can run OnionShare with: `snap run onionshare`."
|
msgid "You can run OnionShare with: `snap run onionshare`."
|
||||||
@ -209,12 +211,13 @@ msgstr "Wiersz poleceń"
|
|||||||
|
|
||||||
#: ../../source/install.rst:55
|
#: ../../source/install.rst:55
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can install just the command-line version of OnionShare on any operating "
|
"You can install just the command-line version of OnionShare on any "
|
||||||
"system using the Python package manager ``pip``. :ref:`cli` has more info."
|
"operating system using the Python package manager ``pip``. :ref:`cli` has"
|
||||||
|
" more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Możesz zainstalować tylko wersję wiersza poleceń OnionShare na dowolnym "
|
"Możesz zainstalować tylko wersję wiersza poleceń OnionShare na dowolnym "
|
||||||
"systemie operacyjnym za pomocą menedżera pakietów Python ``pip``. Zobacz :"
|
"systemie operacyjnym za pomocą menedżera pakietów Python ``pip``. Zobacz "
|
||||||
"ref:`cli`, aby uzyskać więcej informacji."
|
":ref:`cli`, aby uzyskać więcej informacji."
|
||||||
|
|
||||||
#: ../../source/install.rst:60
|
#: ../../source/install.rst:60
|
||||||
msgid "Verifying PGP signatures"
|
msgid "Verifying PGP signatures"
|
||||||
@ -222,17 +225,17 @@ msgstr "Weryfikacja sygnatur PGP"
|
|||||||
|
|
||||||
#: ../../source/install.rst:62
|
#: ../../source/install.rst:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can verify that the package you download is legitimate and hasn't been "
|
"You can verify that the package you download is legitimate and hasn't "
|
||||||
"tampered with by verifying its PGP signature. For Windows and macOS, this "
|
"been tampered with by verifying its PGP signature. For Windows and macOS,"
|
||||||
"step is optional and provides defense in depth: the OnionShare binaries "
|
" this step is optional and provides defense in depth: the OnionShare "
|
||||||
"include operating system-specific signatures, and you can just rely on those "
|
"binaries include operating system-specific signatures, and you can just "
|
||||||
"alone if you'd like."
|
"rely on those alone if you'd like."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Możesz sprawdzić, czy pobrany pakiet jest poprawny i nie został naruszony, "
|
"Możesz sprawdzić, czy pobrany pakiet jest poprawny i nie został "
|
||||||
"weryfikując jego podpis PGP. W przypadku systemów Windows i macOS ten krok "
|
"naruszony, weryfikując jego podpis PGP. W przypadku systemów Windows i "
|
||||||
"jest opcjonalny i zapewnia dogłębną ochronę: pliki binarne OnionShare "
|
"macOS ten krok jest opcjonalny i zapewnia dogłębną ochronę: pliki binarne"
|
||||||
"zawierają podpisy specyficzne dla systemu operacyjnego i jeśli chcesz, "
|
" OnionShare zawierają podpisy specyficzne dla systemu operacyjnego i "
|
||||||
"możesz po prostu na nich polegać."
|
"jeśli chcesz, możesz po prostu na nich polegać."
|
||||||
|
|
||||||
#: ../../source/install.rst:66
|
#: ../../source/install.rst:66
|
||||||
msgid "Signing key"
|
msgid "Signing key"
|
||||||
@ -240,23 +243,23 @@ msgstr "Klucz podpisujący"
|
|||||||
|
|
||||||
#: ../../source/install.rst:68
|
#: ../../source/install.rst:68
|
||||||
msgid ""
|
msgid ""
|
||||||
"Packages are signed by Micah Lee, the core developer, using his PGP public "
|
"Packages are signed by Micah Lee, the core developer, using his PGP "
|
||||||
"key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``. You can "
|
"public key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``."
|
||||||
"download Micah's key `from the keys.openpgp.org keyserver <https://keys."
|
" You can download Micah's key `from the keys.openpgp.org keyserver "
|
||||||
"openpgp.org/vks/v1/by-"
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pakiety są podpisywane przez Micah Lee, głównego programistę, przy użyciu "
|
"Pakiety są podpisywane przez Micah Lee, głównego programistę, przy użyciu"
|
||||||
"jego publicznego klucza PGP z odciskiem palca "
|
" jego publicznego klucza PGP z odciskiem palca "
|
||||||
"``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Możesz pobrać klucz Micah `z "
|
"``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Możesz pobrać klucz Micah "
|
||||||
"serwera kluczy keys.openpgp.org <https://keys.openpgp.org/vks/v1/by-"
|
"`z serwera kluczy keys.openpgp.org <https://keys.openpgp.org/vks/v1/by-"
|
||||||
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:71
|
#: ../../source/install.rst:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"You must have GnuPG installed to verify signatures. For macOS you probably "
|
"You must have GnuPG installed to verify signatures. For macOS you "
|
||||||
"want `GPGTools <https://gpgtools.org/>`_, and for Windows you probably want "
|
"probably want `GPGTools <https://gpgtools.org/>`_, and for Windows you "
|
||||||
"`Gpg4win <https://www.gpg4win.org/>`_."
|
"probably want `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Aby zweryfikować podpisy, musisz mieć zainstalowane GnuPG. Dla macOS "
|
"Aby zweryfikować podpisy, musisz mieć zainstalowane GnuPG. Dla macOS "
|
||||||
"prawdopodobnie potrzebujesz `GPGTools <https://gpgtools.org/>`_, a dla "
|
"prawdopodobnie potrzebujesz `GPGTools <https://gpgtools.org/>`_, a dla "
|
||||||
@ -267,16 +270,19 @@ msgid "Signatures"
|
|||||||
msgstr "Sygnatury"
|
msgstr "Sygnatury"
|
||||||
|
|
||||||
#: ../../source/install.rst:76
|
#: ../../source/install.rst:76
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can find the signatures (as ``.asc`` files), as well as Windows, macOS, "
|
"You can find the signatures (as ``.asc`` files), as well as Windows, "
|
||||||
"Flatpak, Snap, and source packages, at https://onionshare.org/dist/ in the "
|
"macOS, Flatpak, Snap, and source packages, at "
|
||||||
"folders named for each version of OnionShare. You can also find them on the "
|
"https://onionshare.org/dist/ in the folders named for each version of "
|
||||||
"`GitHub Releases page <https://github.com/micahflee/onionshare/releases>`_."
|
"OnionShare. You can also find them on the `GitHub Releases page "
|
||||||
|
"<https://github.com/onionshare/onionshare/releases>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Podpisy (jako pliki ``.asc``), a także pakiety Windows, macOS, Flatpak, Snap "
|
"Podpisy (jako pliki ``.asc``), a także pakiety Windows, macOS, Flatpak, "
|
||||||
"i źródła można znaleźć pod adresem https://onionshare.org/dist/ w folderach "
|
"Snap i źródła można znaleźć pod adresem https://onionshare.org/dist/ w "
|
||||||
"nazwanych od każdej wersji OnionShare. Możesz je również znaleźć na "
|
"folderach nazwanych od każdej wersji OnionShare. Możesz je również "
|
||||||
"`GitHubie <https://github.com/micahflee/onionshare/releases>`_."
|
"znaleźć na `GitHubie "
|
||||||
|
"<https://github.com/micahflee/onionshare/releases>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:80
|
#: ../../source/install.rst:80
|
||||||
msgid "Verifying"
|
msgid "Verifying"
|
||||||
@ -285,12 +291,12 @@ msgstr "Weryfikacja"
|
|||||||
#: ../../source/install.rst:82
|
#: ../../source/install.rst:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Once you have imported Micah's public key into your GnuPG keychain, "
|
"Once you have imported Micah's public key into your GnuPG keychain, "
|
||||||
"downloaded the binary and ``.asc`` signature, you can verify the binary for "
|
"downloaded the binary and ``.asc`` signature, you can verify the binary "
|
||||||
"macOS in a terminal like this::"
|
"for macOS in a terminal like this::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Po zaimportowaniu klucza publicznego Micah do pęku kluczy GnuPG, pobraniu "
|
"Po zaimportowaniu klucza publicznego Micah do pęku kluczy GnuPG, pobraniu"
|
||||||
"pliku binarnego i podpisu ``.asc``, możesz zweryfikować plik binarny dla "
|
" pliku binarnego i podpisu ``.asc``, możesz zweryfikować plik binarny dla"
|
||||||
"systemu macOS w terminalu takim jak ten::"
|
" systemu macOS w terminalu takim jak ten::"
|
||||||
|
|
||||||
#: ../../source/install.rst:86
|
#: ../../source/install.rst:86
|
||||||
msgid "Or for Windows, in a command-prompt like this::"
|
msgid "Or for Windows, in a command-prompt like this::"
|
||||||
@ -302,25 +308,27 @@ msgstr "Oczekiwany rezultat wygląda następująco::"
|
|||||||
|
|
||||||
#: ../../source/install.rst:102
|
#: ../../source/install.rst:102
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you don't see ``Good signature from``, there might be a problem with the "
|
"If you don't see ``Good signature from``, there might be a problem with "
|
||||||
"integrity of the file (malicious or otherwise), and you should not install "
|
"the integrity of the file (malicious or otherwise), and you should not "
|
||||||
"the package. (The ``WARNING:`` shown above, is not a problem with the "
|
"install the package. (The ``WARNING:`` shown above, is not a problem with"
|
||||||
"package, it only means you haven't defined a level of \"trust\" of Micah's "
|
" the package, it only means you haven't defined a level of \"trust\" of "
|
||||||
"(the core developer) PGP key.)"
|
"Micah's (the core developer) PGP key.)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Jeśli nie widzisz ``Good signature from``, może to oznaczać problem z "
|
"Jeśli nie widzisz ``Good signature from``, może to oznaczać problem z "
|
||||||
"integralnością pliku (złośliwy lub inny) i nie należy instalować pakietu. "
|
"integralnością pliku (złośliwy lub inny) i nie należy instalować pakietu."
|
||||||
"(Pokazane powyżej ostrzeżenie ``WARNING:`` nie jest problemem z pakietem, "
|
" (Pokazane powyżej ostrzeżenie ``WARNING:`` nie jest problemem z "
|
||||||
"oznacza tylko, że nie zdefiniowano poziomu \"zaufania\" klucza PGP Micah.)"
|
"pakietem, oznacza tylko, że nie zdefiniowano poziomu \"zaufania\" klucza "
|
||||||
|
"PGP Micah.)"
|
||||||
|
|
||||||
#: ../../source/install.rst:104
|
#: ../../source/install.rst:104
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you want to learn more about verifying PGP signatures, the guides for "
|
"If you want to learn more about verifying PGP signatures, the guides for "
|
||||||
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and "
|
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and"
|
||||||
"the `Tor Project <https://support.torproject.org/tbb/how-to-verify-signature/"
|
" the `Tor Project <https://support.torproject.org/tbb/how-to-verify-"
|
||||||
">`_ may be useful."
|
"signature/>`_ may be useful."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Jeśli chcesz dowiedzieć się więcej o weryfikowaniu podpisów PGP, przydatne "
|
"Jeśli chcesz dowiedzieć się więcej o weryfikowaniu podpisów PGP, "
|
||||||
"mogą być przewodniki dotyczące `Qubes OS <https://www.qubes-os.org/security/"
|
"przydatne mogą być przewodniki dotyczące `Qubes OS <https://www.qubes-"
|
||||||
"verifying-signatures/>`_ i `Tor Project <https://support.torproject.org/tbb/"
|
"os.org/security/verifying-signatures/>`_ i `Tor Project "
|
||||||
"how-to-verify-signature/>`_."
|
"<https://support.torproject.org/tbb/how-to-verify-signature/>`_."
|
||||||
|
|
||||||
|
@ -7,17 +7,16 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.3\n"
|
"Project-Id-Version: OnionShare 2.3\n"
|
||||||
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
||||||
"POT-Creation-Date: 2023-06-06 13:07+0200\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: 2023-06-10 02:52+0000\n"
|
"PO-Revision-Date: 2023-06-10 02:52+0000\n"
|
||||||
"Last-Translator: Kaya Zeren <kayazeren@gmail.com>\n"
|
"Last-Translator: Kaya Zeren <kayazeren@gmail.com>\n"
|
||||||
"Language-Team: tr <LL@li.org>\n"
|
|
||||||
"Language: tr\n"
|
"Language: tr\n"
|
||||||
"MIME-Version: 1.0\n"
|
"Language-Team: tr <LL@li.org>\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 4.18-dev\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.12.1\n"
|
||||||
|
|
||||||
#: ../../source/install.rst:2
|
#: ../../source/install.rst:2
|
||||||
msgid "Installation"
|
msgid "Installation"
|
||||||
@ -41,15 +40,17 @@ msgstr "Linux"
|
|||||||
|
|
||||||
#: ../../source/install.rst:14
|
#: ../../source/install.rst:14
|
||||||
msgid ""
|
msgid ""
|
||||||
"There are various ways to install OnionShare for Linux, but the recommended "
|
"There are various ways to install OnionShare for Linux, but the "
|
||||||
"way is to use either the `Flatpak <https://flatpak.org/>`_ or the `Snap "
|
"recommended way is to use either the `Flatpak <https://flatpak.org/>`_ or"
|
||||||
"<https://snapcraft.io/>`_ package. Flatpak and Snapcraft ensure that you'll "
|
" the `Snap <https://snapcraft.io/>`_ package. Flatpak and Snapcraft "
|
||||||
"always use the newest version and run OnionShare inside of a sandbox."
|
"ensure that you'll always use the newest version and run OnionShare "
|
||||||
|
"inside of a sandbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Linux için OnionShare'i kurmanın çeşitli yolları vardır, ancak tavsiye "
|
"Linux için OnionShare'i kurmanın çeşitli yolları vardır, ancak tavsiye "
|
||||||
"edilen yol `Flatpak <https://flatpak.org/>`_ veya `Snap <https://snapcraft."
|
"edilen yol `Flatpak <https://flatpak.org/>`_ veya `Snap "
|
||||||
"io/>`_ paketini kullanmaktır. Flatpak ve Snapcraft her zaman en yeni sürümü "
|
"<https://snapcraft.io/>`_ paketini kullanmaktır. Flatpak ve Snapcraft her"
|
||||||
"kullanmanızı ve OnionShare'i bir korumalı alan içinde çalıştırmanızı sağlar."
|
" zaman en yeni sürümü kullanmanızı ve OnionShare'i bir korumalı alan "
|
||||||
|
"içinde çalıştırmanızı sağlar."
|
||||||
|
|
||||||
#: ../../source/install.rst:17
|
#: ../../source/install.rst:17
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -58,29 +59,28 @@ msgid ""
|
|||||||
"distributions."
|
"distributions."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Snapcraft desteği Ubuntu'da yerleşiktir ve Fedora Flatpak desteği ile "
|
"Snapcraft desteği Ubuntu'da yerleşiktir ve Fedora Flatpak desteği ile "
|
||||||
"birlikte gelir, ancak hangisini kullanacağınız size bağlıdır. Her ikisi de "
|
"birlikte gelir, ancak hangisini kullanacağınız size bağlıdır. Her ikisi "
|
||||||
"tüm Linux dağıtımlarında çalışmaktadır."
|
"de tüm Linux dağıtımlarında çalışmaktadır."
|
||||||
|
|
||||||
#: ../../source/install.rst:19
|
#: ../../source/install.rst:19
|
||||||
msgid ""
|
msgid ""
|
||||||
"**Install OnionShare using Flatpak**: https://flathub.org/apps/details/org."
|
"**Install OnionShare using Flatpak**: "
|
||||||
"onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**OnionShare uygulamasını Flatpak kullanarak kurun**: https://flathub.org/"
|
"**OnionShare uygulamasını Flatpak kullanarak kurun**: "
|
||||||
"apps/details/org.onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
|
|
||||||
#: ../../source/install.rst:21
|
#: ../../source/install.rst:21
|
||||||
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
||||||
msgstr ""
|
msgstr "**OnionShare'i Snap kullanarak kurun**: https://snapcraft.io/onionshare"
|
||||||
"**OnionShare'i Snap kullanarak kurun**: https://snapcraft.io/onionshare"
|
|
||||||
|
|
||||||
#: ../../source/install.rst:23
|
#: ../../source/install.rst:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can also download and install PGP-signed ``.flatpak`` or ``.snap`` "
|
"You can also download and install PGP-signed ``.flatpak`` or ``.snap`` "
|
||||||
"packages from https://onionshare.org/dist/ if you prefer."
|
"packages from https://onionshare.org/dist/ if you prefer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Dilerseniz https://onionshare.org/dist/ adresinden PGP imzalı ``.flatpak`` "
|
"Dilerseniz https://onionshare.org/dist/ adresinden PGP imzalı "
|
||||||
"veya ``.snap`` paketlerini de indirip kurabilirsiniz."
|
"``.flatpak`` veya ``.snap`` paketlerini de indirip kurabilirsiniz."
|
||||||
|
|
||||||
#: ../../source/install.rst:26
|
#: ../../source/install.rst:26
|
||||||
msgid "Manual Flatpak Installation"
|
msgid "Manual Flatpak Installation"
|
||||||
@ -89,62 +89,66 @@ msgstr "El ile Flatpak kurulumu"
|
|||||||
#: ../../source/install.rst:28
|
#: ../../source/install.rst:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
||||||
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-file-"
|
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-"
|
||||||
"bundles.html>`_, you can do so like this:"
|
"file-bundles.html>`_, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"OnionShare uygulamasını Flatpak ile kurmak için PGP ile imzalanmış `tek "
|
"OnionShare uygulamasını Flatpak ile kurmak için PGP ile imzalanmış `tek "
|
||||||
"dosyalı paketi <https://docs.flatpak.org/en/latest/single-file-bundles.html>`"
|
"dosyalı paketi <https://docs.flatpak.org/en/latest/single-file-"
|
||||||
"_ kullanmak isterseniz, bunu şu şekilde yapabilirsiniz:"
|
"bundles.html>`_ kullanmak isterseniz, bunu şu şekilde yapabilirsiniz:"
|
||||||
|
|
||||||
#: ../../source/install.rst:30
|
#: ../../source/install.rst:30
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Flatpak by following the instructions at https://flatpak.org/setup/."
|
"Install Flatpak by following the instructions at "
|
||||||
|
"https://flatpak.org/setup/."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Flatpak kurmak için https://flatpak.org/setup/ adresindeki yönergeleri "
|
"Flatpak kurmak için https://flatpak.org/setup/ adresindeki yönergeleri "
|
||||||
"izleyin."
|
"izleyin."
|
||||||
|
|
||||||
#: ../../source/install.rst:31
|
#: ../../source/install.rst:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"Add the Flathub repository by running ``flatpak remote-add --if-not-exists "
|
"Add the Flathub repository by running ``flatpak remote-add --if-not-"
|
||||||
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Even though you "
|
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Even "
|
||||||
"won't be downloading OnionShare from Flathub, OnionShare depends on some "
|
"though you won't be downloading OnionShare from Flathub, OnionShare "
|
||||||
"packages that are only available there."
|
"depends on some packages that are only available there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"``flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub"
|
"``flatpak remote-add --if-not-exists flathub "
|
||||||
".flatpakrepo`` komutunu yürüterek Flathub deposunu ekleyin. OnionShare "
|
"https://flathub.org/repo/flathub.flatpakrepo`` komutunu yürüterek Flathub"
|
||||||
"uygulamasını Flathub üzerinden indirmeyecek olsanız bile, OnionShare için "
|
" deposunu ekleyin. OnionShare uygulamasını Flathub üzerinden indirmeyecek"
|
||||||
"yalnızca orada bulunan bazı paketler gereklidir."
|
" olsanız bile, OnionShare için yalnızca orada bulunan bazı paketler "
|
||||||
|
"gereklidir."
|
||||||
|
|
||||||
#: ../../source/install.rst:32
|
#: ../../source/install.rst:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
"OnionShare, and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"https://onionshare.org/dist/ adresine gidin, OnionShare uygulamasının güncel "
|
"https://onionshare.org/dist/ adresine gidin, OnionShare uygulamasının "
|
||||||
"sürümünü seçin, ``.flatpak`` ve ``.flatpak.asc`` dosyalarını indirin."
|
"güncel sürümünü seçin, ``.flatpak`` ve ``.flatpak.asc`` dosyalarını "
|
||||||
|
"indirin."
|
||||||
|
|
||||||
#: ../../source/install.rst:33
|
#: ../../source/install.rst:33
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.flatpak`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.flatpak`` file. See "
|
||||||
"for more info."
|
":ref:`verifying_sigs` for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"``.flatpak`` dosyasının PGP imzasını doğrulayın. Ayrıntılı bilgi almak için "
|
"``.flatpak`` dosyasının PGP imzasını doğrulayın. Ayrıntılı bilgi almak "
|
||||||
":ref:`verifying_sigs` bölümüne bakabilirsiniz."
|
"için :ref:`verifying_sigs` bölümüne bakabilirsiniz."
|
||||||
|
|
||||||
#: ../../source/install.rst:34
|
#: ../../source/install.rst:34
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
||||||
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the file "
|
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the "
|
||||||
"you downloaded."
|
"file you downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"``.flatpak`` dosyasını ``flatpak install OnionShare-VERSION.flatpak`` komutu "
|
"``.flatpak`` dosyasını ``flatpak install OnionShare-VERSION.flatpak`` "
|
||||||
"ile kurun. `` VERSION`` yerine indirdiğiniz dosyanın sürüm numarasını yazın."
|
"komutu ile kurun. `` VERSION`` yerine indirdiğiniz dosyanın sürüm "
|
||||||
|
"numarasını yazın."
|
||||||
|
|
||||||
#: ../../source/install.rst:36
|
#: ../../source/install.rst:36
|
||||||
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"OnionShare uygulamasını şu komutla çalıştırabilirsiniz: `flatpak run org."
|
"OnionShare uygulamasını şu komutla çalıştırabilirsiniz: `flatpak run "
|
||||||
"onionshare.OnionShare`."
|
"org.onionshare.OnionShare`."
|
||||||
|
|
||||||
#: ../../source/install.rst:39
|
#: ../../source/install.rst:39
|
||||||
msgid "Manual Snapcraft Installation"
|
msgid "Manual Snapcraft Installation"
|
||||||
@ -152,32 +156,32 @@ msgstr "El ile Snapcraft kurulumu"
|
|||||||
|
|
||||||
#: ../../source/install.rst:41
|
#: ../../source/install.rst:41
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Snapcraft using the PGP-"
|
"If you'd like to install OnionShare manually with Snapcraft using the "
|
||||||
"signed Snapcraft package, you can do so like this:"
|
"PGP-signed Snapcraft package, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"OnionShare uygulamasını el ile PGP ile imzalanmış Snapcraft paketini "
|
"OnionShare uygulamasını el ile PGP ile imzalanmış Snapcraft paketini "
|
||||||
"kullanarak kurmak isterseniz, şu şekilde yapabilirsiniz:"
|
"kullanarak kurmak isterseniz, şu şekilde yapabilirsiniz:"
|
||||||
|
|
||||||
#: ../../source/install.rst:43
|
#: ../../source/install.rst:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Snapcraft by following the instructions at https://snapcraft.io/docs/"
|
"Install Snapcraft by following the instructions at "
|
||||||
"installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Snapcraft kurmak için https://snapcraft.io/docs/installing-snapd adresindeki "
|
"Snapcraft kurmak için https://snapcraft.io/docs/installing-snapd "
|
||||||
"yönergeleri izleyin."
|
"adresindeki yönergeleri izleyin."
|
||||||
|
|
||||||
#: ../../source/install.rst:44
|
#: ../../source/install.rst:44
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.snap`` and ``.snap.asc`` files."
|
"OnionShare, and download the ``.snap`` and ``.snap.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"https://onionshare.org/dist/ adresine gidin, güncel OnionShare sürümünü "
|
"https://onionshare.org/dist/ adresine gidin, güncel OnionShare sürümünü "
|
||||||
"seçin, ``.snap`` ve ``.snap.asc`` dosyalarını indirin."
|
"seçin, ``.snap`` ve ``.snap.asc`` dosyalarını indirin."
|
||||||
|
|
||||||
#: ../../source/install.rst:45
|
#: ../../source/install.rst:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs`"
|
||||||
"for more info."
|
" for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"``.snap`` dosyasının PGP imzasını doğrulayın. Ayrıntılı bilgi almak için "
|
"``.snap`` dosyasının PGP imzasını doğrulayın. Ayrıntılı bilgi almak için "
|
||||||
":ref:`verifying_sigs` bölümüne bakabilirsiniz."
|
":ref:`verifying_sigs` bölümüne bakabilirsiniz."
|
||||||
@ -185,16 +189,17 @@ msgstr ""
|
|||||||
#: ../../source/install.rst:46
|
#: ../../source/install.rst:46
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.snap`` file by running ``snap install --dangerous "
|
"Install the ``.snap`` file by running ``snap install --dangerous "
|
||||||
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version number "
|
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version "
|
||||||
"of the file you downloaded. Note that you must use `--dangerous` because the "
|
"number of the file you downloaded. Note that you must use `--dangerous` "
|
||||||
"package is not signed by the Snapcraft store, however you did verify its PGP "
|
"because the package is not signed by the Snapcraft store, however you did"
|
||||||
"signature, so you know it's legitimate."
|
" verify its PGP signature, so you know it's legitimate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"``.snap`` dosyasını ``snap install --dangerous onionshare_VERSION_amd64."
|
"``.snap`` dosyasını ``snap install --dangerous "
|
||||||
"snap`` komutunu yürüterek kurun. `` VERSION`` yerine indirdiğiniz dosyanın "
|
"onionshare_VERSION_amd64.snap`` komutunu yürüterek kurun. `` VERSION`` "
|
||||||
"sürüm numarasını yazın. Paket Snapcraft mağazası tarafından imzalanmadığı "
|
"yerine indirdiğiniz dosyanın sürüm numarasını yazın. Paket Snapcraft "
|
||||||
"için `--dangerous` parametresini kullanmanız gerektiğini unutmayın. PGP "
|
"mağazası tarafından imzalanmadığı için `--dangerous` parametresini "
|
||||||
"imzasını doğruladığınız için paketin doğru olduğunu biliyorsunuz."
|
"kullanmanız gerektiğini unutmayın. PGP imzasını doğruladığınız için "
|
||||||
|
"paketin doğru olduğunu biliyorsunuz."
|
||||||
|
|
||||||
#: ../../source/install.rst:48
|
#: ../../source/install.rst:48
|
||||||
msgid "You can run OnionShare with: `snap run onionshare`."
|
msgid "You can run OnionShare with: `snap run onionshare`."
|
||||||
@ -208,12 +213,13 @@ msgstr "Yalnız komut satırı"
|
|||||||
|
|
||||||
#: ../../source/install.rst:55
|
#: ../../source/install.rst:55
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can install just the command-line version of OnionShare on any operating "
|
"You can install just the command-line version of OnionShare on any "
|
||||||
"system using the Python package manager ``pip``. :ref:`cli` has more info."
|
"operating system using the Python package manager ``pip``. :ref:`cli` has"
|
||||||
|
" more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Python paket yöneticisi ``pip`` kullanarak OnionShare'in sadece komut satırı "
|
"Python paket yöneticisi ``pip`` kullanarak OnionShare'in sadece komut "
|
||||||
"sürümünü herhangi bir işletim sistemine kurabilirsiniz. Daha fazla bilgi "
|
"satırı sürümünü herhangi bir işletim sistemine kurabilirsiniz. Daha fazla"
|
||||||
"için :ref:`cli` bölümüne bakabilirsiniz."
|
" bilgi için :ref:`cli` bölümüne bakabilirsiniz."
|
||||||
|
|
||||||
#: ../../source/install.rst:60
|
#: ../../source/install.rst:60
|
||||||
msgid "Verifying PGP signatures"
|
msgid "Verifying PGP signatures"
|
||||||
@ -221,11 +227,11 @@ msgstr "PGP imzalarını doğrulama"
|
|||||||
|
|
||||||
#: ../../source/install.rst:62
|
#: ../../source/install.rst:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can verify that the package you download is legitimate and hasn't been "
|
"You can verify that the package you download is legitimate and hasn't "
|
||||||
"tampered with by verifying its PGP signature. For Windows and macOS, this "
|
"been tampered with by verifying its PGP signature. For Windows and macOS,"
|
||||||
"step is optional and provides defense in depth: the OnionShare binaries "
|
" this step is optional and provides defense in depth: the OnionShare "
|
||||||
"include operating system-specific signatures, and you can just rely on those "
|
"binaries include operating system-specific signatures, and you can just "
|
||||||
"alone if you'd like."
|
"rely on those alone if you'd like."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"İndirdiğiniz paketin özgün olduğunu ve değiştirilmediğini PGP imzasını "
|
"İndirdiğiniz paketin özgün olduğunu ve değiştirilmediğini PGP imzasını "
|
||||||
"doğrulayarak doğrulayabilirsiniz. Windows ve macOS için bu adım isteğe "
|
"doğrulayarak doğrulayabilirsiniz. Windows ve macOS için bu adım isteğe "
|
||||||
@ -239,44 +245,46 @@ msgstr "İmzalama anahtarı"
|
|||||||
|
|
||||||
#: ../../source/install.rst:68
|
#: ../../source/install.rst:68
|
||||||
msgid ""
|
msgid ""
|
||||||
"Packages are signed by Micah Lee, the core developer, using his PGP public "
|
"Packages are signed by Micah Lee, the core developer, using his PGP "
|
||||||
"key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``. You can "
|
"public key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``."
|
||||||
"download Micah's key `from the keys.openpgp.org keyserver <https://keys."
|
" You can download Micah's key `from the keys.openpgp.org keyserver "
|
||||||
"openpgp.org/vks/v1/by-"
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Paketler, ``927F419D7EC82C2F149C1BD1403C2657CD994F73`` parmak izine sahip "
|
"Paketler, ``927F419D7EC82C2F149C1BD1403C2657CD994F73`` parmak izine sahip"
|
||||||
"PGP ortak anahtarını kullanarak ana geliştirici Micah Lee tarafından "
|
" PGP ortak anahtarını kullanarak ana geliştirici Micah Lee tarafından "
|
||||||
"imzalanmaktadır. Micah'ın anahtarını `keys.openpgp.org anahtar sunucusundan "
|
"imzalanmaktadır. Micah'ın anahtarını `keys.openpgp.org anahtar "
|
||||||
"<https://keys.openpgp.org/vks/v1/by-"
|
"sunucusundan <https://keys.openpgp.org/vks/v1/by-"
|
||||||
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_ indirebilirsiniz."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_ indirebilirsiniz."
|
||||||
|
|
||||||
#: ../../source/install.rst:71
|
#: ../../source/install.rst:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"You must have GnuPG installed to verify signatures. For macOS you probably "
|
"You must have GnuPG installed to verify signatures. For macOS you "
|
||||||
"want `GPGTools <https://gpgtools.org/>`_, and for Windows you probably want "
|
"probably want `GPGTools <https://gpgtools.org/>`_, and for Windows you "
|
||||||
"`Gpg4win <https://www.gpg4win.org/>`_."
|
"probably want `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"İmzaları doğrulamak için GnuPG uygulamasının kurulu olması gerekir. MacOS "
|
"İmzaları doğrulamak için GnuPG uygulamasının kurulu olması gerekir. MacOS"
|
||||||
"için `GPGTools <https://gpgtools.org/>`_, Windows için `Gpg4win <https://www."
|
" için `GPGTools <https://gpgtools.org/>`_, Windows için `Gpg4win "
|
||||||
"gpg4win.org/>`_ kullanmak isteyebilirsiniz."
|
"<https://www.gpg4win.org/>`_ kullanmak isteyebilirsiniz."
|
||||||
|
|
||||||
#: ../../source/install.rst:74
|
#: ../../source/install.rst:74
|
||||||
msgid "Signatures"
|
msgid "Signatures"
|
||||||
msgstr "İmzalar"
|
msgstr "İmzalar"
|
||||||
|
|
||||||
#: ../../source/install.rst:76
|
#: ../../source/install.rst:76
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can find the signatures (as ``.asc`` files), as well as Windows, macOS, "
|
"You can find the signatures (as ``.asc`` files), as well as Windows, "
|
||||||
"Flatpak, Snap, and source packages, at https://onionshare.org/dist/ in the "
|
"macOS, Flatpak, Snap, and source packages, at "
|
||||||
"folders named for each version of OnionShare. You can also find them on the "
|
"https://onionshare.org/dist/ in the folders named for each version of "
|
||||||
"`GitHub Releases page <https://github.com/micahflee/onionshare/releases>`_."
|
"OnionShare. You can also find them on the `GitHub Releases page "
|
||||||
|
"<https://github.com/onionshare/onionshare/releases>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"İmzalara (``.asc`` dosyaları) ek olarak Windows, macOS, Flatpak, Snap ve "
|
"İmzalara (``.asc`` dosyaları) ek olarak Windows, macOS, Flatpak, Snap ve "
|
||||||
"kaynak paketlerini https://onionshare.org/dist/ adresindeki OnionShare "
|
"kaynak paketlerini https://onionshare.org/dist/ adresindeki OnionShare "
|
||||||
"uygulamasının her sürümü için adlandırılan klasörlerin yanında ve `GitHub "
|
"uygulamasının her sürümü için adlandırılan klasörlerin yanında ve `GitHub"
|
||||||
"yayınlar sayfasında <https://github.com/micahflee/onionshare/releases>`_ "
|
" yayınlar sayfasında <https://github.com/micahflee/onionshare/releases>`_"
|
||||||
"bulabilirsiniz."
|
" bulabilirsiniz."
|
||||||
|
|
||||||
#: ../../source/install.rst:80
|
#: ../../source/install.rst:80
|
||||||
msgid "Verifying"
|
msgid "Verifying"
|
||||||
@ -285,12 +293,12 @@ msgstr "Doğrulama"
|
|||||||
#: ../../source/install.rst:82
|
#: ../../source/install.rst:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Once you have imported Micah's public key into your GnuPG keychain, "
|
"Once you have imported Micah's public key into your GnuPG keychain, "
|
||||||
"downloaded the binary and ``.asc`` signature, you can verify the binary for "
|
"downloaded the binary and ``.asc`` signature, you can verify the binary "
|
||||||
"macOS in a terminal like this::"
|
"for macOS in a terminal like this::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Micah'ın herkese açık anahtarını GnuPG anahtar zincirinize aktarıp, ikili "
|
"Micah'ın herkese açık anahtarını GnuPG anahtar zincirinize aktarıp, ikili"
|
||||||
"dosyayı ve ``.asc`` imzasını indirdikten sonra, macOS için ikili dosyayı "
|
" dosyayı ve ``.asc`` imzasını indirdikten sonra, macOS için ikili dosyayı"
|
||||||
"Terminal üzerinde şu şekilde doğrulayabilirsiniz::"
|
" Terminal üzerinde şu şekilde doğrulayabilirsiniz::"
|
||||||
|
|
||||||
#: ../../source/install.rst:86
|
#: ../../source/install.rst:86
|
||||||
msgid "Or for Windows, in a command-prompt like this::"
|
msgid "Or for Windows, in a command-prompt like this::"
|
||||||
@ -302,26 +310,27 @@ msgstr "Aşağıdakine benzer bir çıktı alınması beklenir::"
|
|||||||
|
|
||||||
#: ../../source/install.rst:102
|
#: ../../source/install.rst:102
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you don't see ``Good signature from``, there might be a problem with the "
|
"If you don't see ``Good signature from``, there might be a problem with "
|
||||||
"integrity of the file (malicious or otherwise), and you should not install "
|
"the integrity of the file (malicious or otherwise), and you should not "
|
||||||
"the package. (The ``WARNING:`` shown above, is not a problem with the "
|
"install the package. (The ``WARNING:`` shown above, is not a problem with"
|
||||||
"package, it only means you haven't defined a level of \"trust\" of Micah's "
|
" the package, it only means you haven't defined a level of \"trust\" of "
|
||||||
"(the core developer) PGP key.)"
|
"Micah's (the core developer) PGP key.)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"``Good signature from`` ifadesini göremiyorsanız, dosyanın bütünlüğüyle "
|
"``Good signature from`` ifadesini göremiyorsanız, dosyanın bütünlüğüyle "
|
||||||
"ilgili bir sorun olabilir (kötü niyetli veya başka türlü). Bu durumda paketi "
|
"ilgili bir sorun olabilir (kötü niyetli veya başka türlü). Bu durumda "
|
||||||
"kurmamalısınız. (Yukarıda gösterilen ``UYARI:``, paketle ilgili bir sorun "
|
"paketi kurmamalısınız. (Yukarıda gösterilen ``UYARI:``, paketle ilgili "
|
||||||
"değildir, yalnızca Micah (ana geliştirici) PGP anahtarının \"güven\" "
|
"bir sorun değildir, yalnızca Micah (ana geliştirici) PGP anahtarının "
|
||||||
"düzeyini tanımlamadığınız anlamına gelir.)"
|
"\"güven\" düzeyini tanımlamadığınız anlamına gelir.)"
|
||||||
|
|
||||||
#: ../../source/install.rst:104
|
#: ../../source/install.rst:104
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you want to learn more about verifying PGP signatures, the guides for "
|
"If you want to learn more about verifying PGP signatures, the guides for "
|
||||||
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and "
|
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and"
|
||||||
"the `Tor Project <https://support.torproject.org/tbb/how-to-verify-signature/"
|
" the `Tor Project <https://support.torproject.org/tbb/how-to-verify-"
|
||||||
">`_ may be useful."
|
"signature/>`_ may be useful."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"PGP imzalarının doğrulanması hakkında ayrıntılı bilgi almak için, `Qubes OS "
|
"PGP imzalarının doğrulanması hakkında ayrıntılı bilgi almak için, `Qubes "
|
||||||
"<https://www.qubes-os.org/security/verifying-signatures/>`_ ve `Tor Projesi "
|
"OS <https://www.qubes-os.org/security/verifying-signatures/>`_ ve `Tor "
|
||||||
"<https://support.torproject.org/tbb/how-to-verify-signature/>`_ rehberlerine "
|
"Projesi <https://support.torproject.org/tbb/how-to-verify-signature/>`_ "
|
||||||
"bakabilirsiniz."
|
"rehberlerine bakabilirsiniz."
|
||||||
|
|
||||||
|
@ -7,18 +7,17 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.3\n"
|
"Project-Id-Version: OnionShare 2.3\n"
|
||||||
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
||||||
"POT-Creation-Date: 2023-06-06 13:07+0200\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: 2023-06-07 14:30+0000\n"
|
"PO-Revision-Date: 2023-06-07 14:30+0000\n"
|
||||||
"Last-Translator: Ihor Hordiichuk <igor_ck@outlook.com>\n"
|
"Last-Translator: Ihor Hordiichuk <igor_ck@outlook.com>\n"
|
||||||
"Language-Team: none\n"
|
|
||||||
"Language: uk\n"
|
"Language: uk\n"
|
||||||
"MIME-Version: 1.0\n"
|
"Language-Team: none\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 4.18-dev\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Generated-By: Babel 2.9.1\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.12.1\n"
|
||||||
|
|
||||||
#: ../../source/install.rst:2
|
#: ../../source/install.rst:2
|
||||||
msgid "Installation"
|
msgid "Installation"
|
||||||
@ -42,15 +41,17 @@ msgstr "Linux"
|
|||||||
|
|
||||||
#: ../../source/install.rst:14
|
#: ../../source/install.rst:14
|
||||||
msgid ""
|
msgid ""
|
||||||
"There are various ways to install OnionShare for Linux, but the recommended "
|
"There are various ways to install OnionShare for Linux, but the "
|
||||||
"way is to use either the `Flatpak <https://flatpak.org/>`_ or the `Snap "
|
"recommended way is to use either the `Flatpak <https://flatpak.org/>`_ or"
|
||||||
"<https://snapcraft.io/>`_ package. Flatpak and Snapcraft ensure that you'll "
|
" the `Snap <https://snapcraft.io/>`_ package. Flatpak and Snapcraft "
|
||||||
"always use the newest version and run OnionShare inside of a sandbox."
|
"ensure that you'll always use the newest version and run OnionShare "
|
||||||
|
"inside of a sandbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Існують різні способи встановлення OnionShare на Linux, але радимо "
|
"Існують різні способи встановлення OnionShare на Linux, але радимо "
|
||||||
"використовувати пакунок `Flatpak <https://flatpak.org/>`_ або `Snap <https://"
|
"використовувати пакунок `Flatpak <https://flatpak.org/>`_ або `Snap "
|
||||||
"snapcraft.io/>`_. Flatpak і Snapcraft гарантують, що ви завжди "
|
"<https://snapcraft.io/>`_. Flatpak і Snapcraft гарантують, що ви завжди "
|
||||||
"користуватиметеся найновішою версією та запускатимете OnionShare у пісочниці."
|
"користуватиметеся найновішою версією та запускатимете OnionShare у "
|
||||||
|
"пісочниці."
|
||||||
|
|
||||||
#: ../../source/install.rst:17
|
#: ../../source/install.rst:17
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -58,31 +59,31 @@ msgid ""
|
|||||||
"support, but which you use is up to you. Both work in all Linux "
|
"support, but which you use is up to you. Both work in all Linux "
|
||||||
"distributions."
|
"distributions."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Підтримку Snapcraft вбудовано в Ubuntu, а Flatpak — у Fedora, але ви самі "
|
"Підтримку Snapcraft вбудовано в Ubuntu, а Flatpak — у Fedora, але ви самі"
|
||||||
"можете обрати чим користуватися. Вони обоє працюють у всіх дистрибутивах "
|
" можете обрати чим користуватися. Вони обоє працюють у всіх дистрибутивах"
|
||||||
"Linux."
|
" Linux."
|
||||||
|
|
||||||
#: ../../source/install.rst:19
|
#: ../../source/install.rst:19
|
||||||
msgid ""
|
msgid ""
|
||||||
"**Install OnionShare using Flatpak**: https://flathub.org/apps/details/org."
|
"**Install OnionShare using Flatpak**: "
|
||||||
"onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**Установити OnionShare за допомогою Flatpak**: https://flathub.org/apps/"
|
"**Установити OnionShare за допомогою Flatpak**: "
|
||||||
"details/org.onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
|
|
||||||
#: ../../source/install.rst:21
|
#: ../../source/install.rst:21
|
||||||
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**Установити OnionShare за допомогою Snapcraft**: https://snapcraft.io/"
|
"**Установити OnionShare за допомогою Snapcraft**: "
|
||||||
"onionshare"
|
"https://snapcraft.io/onionshare"
|
||||||
|
|
||||||
#: ../../source/install.rst:23
|
#: ../../source/install.rst:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can also download and install PGP-signed ``.flatpak`` or ``.snap`` "
|
"You can also download and install PGP-signed ``.flatpak`` or ``.snap`` "
|
||||||
"packages from https://onionshare.org/dist/ if you prefer."
|
"packages from https://onionshare.org/dist/ if you prefer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ви також можете завантажити та встановити пакунки з PGP-підписом ``."
|
"Ви також можете завантажити та встановити пакунки з PGP-підписом "
|
||||||
"flatpak`` або ``.snap`` з https://onionshare.org/dist/, якщо хочете."
|
"``.flatpak`` або ``.snap`` з https://onionshare.org/dist/, якщо хочете."
|
||||||
|
|
||||||
#: ../../source/install.rst:26
|
#: ../../source/install.rst:26
|
||||||
msgid "Manual Flatpak Installation"
|
msgid "Manual Flatpak Installation"
|
||||||
@ -91,62 +92,65 @@ msgstr "Ручне встановлення Flatpak"
|
|||||||
#: ../../source/install.rst:28
|
#: ../../source/install.rst:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
||||||
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-file-"
|
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-"
|
||||||
"bundles.html>`_, you can do so like this:"
|
"file-bundles.html>`_, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Якщо ви хочете встановити OnionShare вручну за допомогою Flatpak, "
|
"Якщо ви хочете встановити OnionShare вручну за допомогою Flatpak, "
|
||||||
"використовуючи підписаний PGP `однофайловий пакунок <https://docs.flatpak."
|
"використовуючи підписаний PGP `однофайловий пакунок "
|
||||||
"org/en/latest/single-file-bundles.html>`_, ви можете зробити це так:"
|
"<https://docs.flatpak.org/en/latest/single-file-bundles.html>`_, ви "
|
||||||
|
"можете зробити це так:"
|
||||||
|
|
||||||
#: ../../source/install.rst:30
|
#: ../../source/install.rst:30
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Flatpak by following the instructions at https://flatpak.org/setup/."
|
"Install Flatpak by following the instructions at "
|
||||||
|
"https://flatpak.org/setup/."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Установіть Flatpak, дотримуючись інструкцій на сайті https://flatpak.org/"
|
"Установіть Flatpak, дотримуючись інструкцій на сайті "
|
||||||
"setup/."
|
"https://flatpak.org/setup/."
|
||||||
|
|
||||||
#: ../../source/install.rst:31
|
#: ../../source/install.rst:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"Add the Flathub repository by running ``flatpak remote-add --if-not-exists "
|
"Add the Flathub repository by running ``flatpak remote-add --if-not-"
|
||||||
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Even though you "
|
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Even "
|
||||||
"won't be downloading OnionShare from Flathub, OnionShare depends on some "
|
"though you won't be downloading OnionShare from Flathub, OnionShare "
|
||||||
"packages that are only available there."
|
"depends on some packages that are only available there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Додайте сховище Flathub, виконавши ``flatpak remote-add --if-not-exists "
|
"Додайте сховище Flathub, виконавши ``flatpak remote-add --if-not-exists "
|
||||||
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Навіть якщо ви не "
|
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Навіть якщо ви не"
|
||||||
"будете завантажувати OnionShare з Flathub, OnionShare залежить від деяких "
|
" будете завантажувати OnionShare з Flathub, OnionShare залежить від "
|
||||||
"пакунків, які доступні лише там."
|
"деяких пакунків, які доступні лише там."
|
||||||
|
|
||||||
#: ../../source/install.rst:32
|
#: ../../source/install.rst:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
"OnionShare, and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Перейдіть на https://onionshare.org/dist/, виберіть останню версію "
|
"Перейдіть на https://onionshare.org/dist/, виберіть останню версію "
|
||||||
"OnionShare і завантажте файли ``.flatpak`` і ``.flatpak.asc``."
|
"OnionShare і завантажте файли ``.flatpak`` і ``.flatpak.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:33
|
#: ../../source/install.rst:33
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.flatpak`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.flatpak`` file. See "
|
||||||
"for more info."
|
":ref:`verifying_sigs` for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Перевірте підпис PGP файлу ``.flatpak``. Перегляньте :ref:`verifying_sigs` "
|
"Перевірте підпис PGP файлу ``.flatpak``. Перегляньте "
|
||||||
"для отримання додаткової інформації."
|
":ref:`verifying_sigs` для отримання додаткової інформації."
|
||||||
|
|
||||||
#: ../../source/install.rst:34
|
#: ../../source/install.rst:34
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
||||||
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the file "
|
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the "
|
||||||
"you downloaded."
|
"file you downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Встановіть файл ``.flatpak``, запустивши ``flatpak install OnionShare-VERSION"
|
"Встановіть файл ``.flatpak``, запустивши ``flatpak install OnionShare-"
|
||||||
".flatpak``. Замініть ``VERSION`` на номер версії файлу, який ви завантажили."
|
"VERSION.flatpak``. Замініть ``VERSION`` на номер версії файлу, який ви "
|
||||||
|
"завантажили."
|
||||||
|
|
||||||
#: ../../source/install.rst:36
|
#: ../../source/install.rst:36
|
||||||
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Запустити OnionShare можна за допомогою: `flatpak run org.onionshare."
|
"Запустити OnionShare можна за допомогою: `flatpak run "
|
||||||
"OnionShare`."
|
"org.onionshare.OnionShare`."
|
||||||
|
|
||||||
#: ../../source/install.rst:39
|
#: ../../source/install.rst:39
|
||||||
msgid "Manual Snapcraft Installation"
|
msgid "Manual Snapcraft Installation"
|
||||||
@ -154,49 +158,49 @@ msgstr "Ручне встановлення Snapcraft"
|
|||||||
|
|
||||||
#: ../../source/install.rst:41
|
#: ../../source/install.rst:41
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Snapcraft using the PGP-"
|
"If you'd like to install OnionShare manually with Snapcraft using the "
|
||||||
"signed Snapcraft package, you can do so like this:"
|
"PGP-signed Snapcraft package, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Якщо ви хочете встановити OnionShare вручну зі Snapcraft за допомогою "
|
"Якщо ви хочете встановити OnionShare вручну зі Snapcraft за допомогою "
|
||||||
"пакунка Snapcraft із підписом PGP, ви можете зробити це так:"
|
"пакунка Snapcraft із підписом PGP, ви можете зробити це так:"
|
||||||
|
|
||||||
#: ../../source/install.rst:43
|
#: ../../source/install.rst:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Snapcraft by following the instructions at https://snapcraft.io/docs/"
|
"Install Snapcraft by following the instructions at "
|
||||||
"installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Встановіть Snapcraft, дотримуючись інструкцій на сайті https://snapcraft.io/"
|
"Встановіть Snapcraft, дотримуючись інструкцій на сайті "
|
||||||
"docs/installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
|
|
||||||
#: ../../source/install.rst:44
|
#: ../../source/install.rst:44
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.snap`` and ``.snap.asc`` files."
|
"OnionShare, and download the ``.snap`` and ``.snap.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Перейдіть на https://onionshare.org/dist/, виберіть найновішу версію "
|
"Перейдіть на https://onionshare.org/dist/, виберіть найновішу версію "
|
||||||
"OnionShare і завантажте файли ``.snap`` і ``.snap.asc``."
|
"OnionShare і завантажте файли ``.snap`` і ``.snap.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:45
|
#: ../../source/install.rst:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs`"
|
||||||
"for more info."
|
" for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Перевірте підпис PGP файлу ``.snap``. Перегляньте :ref:`verifying_sigs` для "
|
"Перевірте підпис PGP файлу ``.snap``. Перегляньте :ref:`verifying_sigs` "
|
||||||
"отримання додаткової інформації."
|
"для отримання додаткової інформації."
|
||||||
|
|
||||||
#: ../../source/install.rst:46
|
#: ../../source/install.rst:46
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.snap`` file by running ``snap install --dangerous "
|
"Install the ``.snap`` file by running ``snap install --dangerous "
|
||||||
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version number "
|
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version "
|
||||||
"of the file you downloaded. Note that you must use `--dangerous` because the "
|
"number of the file you downloaded. Note that you must use `--dangerous` "
|
||||||
"package is not signed by the Snapcraft store, however you did verify its PGP "
|
"because the package is not signed by the Snapcraft store, however you did"
|
||||||
"signature, so you know it's legitimate."
|
" verify its PGP signature, so you know it's legitimate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Встановіть файл ``.snap``, запустивши ``snap install --dangerous "
|
"Встановіть файл ``.snap``, запустивши ``snap install --dangerous "
|
||||||
"onionshare_VERSION_amd64.snap``. Замініть ``VERSION`` на номер версії файлу, "
|
"onionshare_VERSION_amd64.snap``. Замініть ``VERSION`` на номер версії "
|
||||||
"який ви завантажили. Зауважте, що ви повинні використовувати `--dangerous`, "
|
"файлу, який ви завантажили. Зауважте, що ви повинні використовувати "
|
||||||
"оскільки пакунок не підписано магазином Snapcraft, проте ви перевірили його "
|
"`--dangerous`, оскільки пакунок не підписано магазином Snapcraft, проте "
|
||||||
"підпис PGP, тому знаєте, що він справжній."
|
"ви перевірили його підпис PGP, тому знаєте, що він справжній."
|
||||||
|
|
||||||
#: ../../source/install.rst:48
|
#: ../../source/install.rst:48
|
||||||
msgid "You can run OnionShare with: `snap run onionshare`."
|
msgid "You can run OnionShare with: `snap run onionshare`."
|
||||||
@ -208,12 +212,13 @@ msgstr "Лише для командного рядка"
|
|||||||
|
|
||||||
#: ../../source/install.rst:55
|
#: ../../source/install.rst:55
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can install just the command-line version of OnionShare on any operating "
|
"You can install just the command-line version of OnionShare on any "
|
||||||
"system using the Python package manager ``pip``. :ref:`cli` has more info."
|
"operating system using the Python package manager ``pip``. :ref:`cli` has"
|
||||||
|
" more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ви можете встановити версію OnionShare для командного рядка на будь-яку "
|
"Ви можете встановити версію OnionShare для командного рядка на будь-яку "
|
||||||
"операційну систему за допомогою менеджера пакунків Python ``pip``. :ref:"
|
"операційну систему за допомогою менеджера пакунків Python ``pip``. "
|
||||||
"`cli` містить більше подробиць."
|
":ref:`cli` містить більше подробиць."
|
||||||
|
|
||||||
#: ../../source/install.rst:60
|
#: ../../source/install.rst:60
|
||||||
msgid "Verifying PGP signatures"
|
msgid "Verifying PGP signatures"
|
||||||
@ -221,17 +226,17 @@ msgstr "Перевірка підписів PGP"
|
|||||||
|
|
||||||
#: ../../source/install.rst:62
|
#: ../../source/install.rst:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can verify that the package you download is legitimate and hasn't been "
|
"You can verify that the package you download is legitimate and hasn't "
|
||||||
"tampered with by verifying its PGP signature. For Windows and macOS, this "
|
"been tampered with by verifying its PGP signature. For Windows and macOS,"
|
||||||
"step is optional and provides defense in depth: the OnionShare binaries "
|
" this step is optional and provides defense in depth: the OnionShare "
|
||||||
"include operating system-specific signatures, and you can just rely on those "
|
"binaries include operating system-specific signatures, and you can just "
|
||||||
"alone if you'd like."
|
"rely on those alone if you'd like."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ви можете переконатися, що пакет, який ви завантажуєте, є справжнім і не був "
|
"Ви можете переконатися, що пакет, який ви завантажуєте, є справжнім і не "
|
||||||
"підроблений, перевіривши його підпис PGP. Для Windows і macOS цей крок не є "
|
"був підроблений, перевіривши його підпис PGP. Для Windows і macOS цей "
|
||||||
"обов'язковим і забезпечує захист в глибині: двійкові файли OnionShare "
|
"крок не є обов'язковим і забезпечує захист в глибині: двійкові файли "
|
||||||
"включають підписи, специфічні для операційної системи, і ви можете просто "
|
"OnionShare включають підписи, специфічні для операційної системи, і ви "
|
||||||
"покладатися лише на них, якщо хочете."
|
"можете просто покладатися лише на них, якщо хочете."
|
||||||
|
|
||||||
#: ../../source/install.rst:66
|
#: ../../source/install.rst:66
|
||||||
msgid "Signing key"
|
msgid "Signing key"
|
||||||
@ -239,43 +244,46 @@ msgstr "Ключ підпису"
|
|||||||
|
|
||||||
#: ../../source/install.rst:68
|
#: ../../source/install.rst:68
|
||||||
msgid ""
|
msgid ""
|
||||||
"Packages are signed by Micah Lee, the core developer, using his PGP public "
|
"Packages are signed by Micah Lee, the core developer, using his PGP "
|
||||||
"key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``. You can "
|
"public key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``."
|
||||||
"download Micah's key `from the keys.openpgp.org keyserver <https://keys."
|
" You can download Micah's key `from the keys.openpgp.org keyserver "
|
||||||
"openpgp.org/vks/v1/by-"
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Пакунки підписує основний розробник Micah Lee своїм відкритим ключем PGP з "
|
"Пакунки підписує основний розробник Micah Lee своїм відкритим ключем PGP "
|
||||||
"цифровим відбитком ``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Ключ Micah "
|
"з цифровим відбитком ``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Ключ "
|
||||||
"можна завантажити `з сервера ключів keys.openpgp.org <https://keys.openpgp."
|
"Micah можна завантажити `з сервера ключів keys.openpgp.org "
|
||||||
"org/vks/v1/by-fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:71
|
#: ../../source/install.rst:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"You must have GnuPG installed to verify signatures. For macOS you probably "
|
"You must have GnuPG installed to verify signatures. For macOS you "
|
||||||
"want `GPGTools <https://gpgtools.org/>`_, and for Windows you probably want "
|
"probably want `GPGTools <https://gpgtools.org/>`_, and for Windows you "
|
||||||
"`Gpg4win <https://www.gpg4win.org/>`_."
|
"probably want `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Для перевірки підписів потрібно встановити GnuPG. Для macOS ви, ймовірно, "
|
"Для перевірки підписів потрібно встановити GnuPG. Для macOS ви, ймовірно,"
|
||||||
"захочете `GPGTools <https://gpgtools.org/>`_, а для Windows ви, ймовірно, "
|
" захочете `GPGTools <https://gpgtools.org/>`_, а для Windows ви, "
|
||||||
"захочете `Gpg4win <https://www.gpg4win.org/>`_."
|
"ймовірно, захочете `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:74
|
#: ../../source/install.rst:74
|
||||||
msgid "Signatures"
|
msgid "Signatures"
|
||||||
msgstr "Підписи"
|
msgstr "Підписи"
|
||||||
|
|
||||||
#: ../../source/install.rst:76
|
#: ../../source/install.rst:76
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can find the signatures (as ``.asc`` files), as well as Windows, macOS, "
|
"You can find the signatures (as ``.asc`` files), as well as Windows, "
|
||||||
"Flatpak, Snap, and source packages, at https://onionshare.org/dist/ in the "
|
"macOS, Flatpak, Snap, and source packages, at "
|
||||||
"folders named for each version of OnionShare. You can also find them on the "
|
"https://onionshare.org/dist/ in the folders named for each version of "
|
||||||
"`GitHub Releases page <https://github.com/micahflee/onionshare/releases>`_."
|
"OnionShare. You can also find them on the `GitHub Releases page "
|
||||||
|
"<https://github.com/onionshare/onionshare/releases>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ви можете знайти підписи (файли ``.asc``), а також пакунки Windows, macOS, "
|
"Ви можете знайти підписи (файли ``.asc``), а також пакунки Windows, "
|
||||||
"Flatpak, Snap та джерельні пакунки за адресою https://onionshare.org/dist/ у "
|
"macOS, Flatpak, Snap та джерельні пакунки за адресою "
|
||||||
"теках, названих для кожної версії OnionShare. Ви також можете знайти їх на "
|
"https://onionshare.org/dist/ у теках, названих для кожної версії "
|
||||||
"`сторінці випусків GitHub <https://github.com/micahflee/onionshare/"
|
"OnionShare. Ви також можете знайти їх на `сторінці випусків GitHub "
|
||||||
"releases>`_."
|
"<https://github.com/micahflee/onionshare/releases>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:80
|
#: ../../source/install.rst:80
|
||||||
msgid "Verifying"
|
msgid "Verifying"
|
||||||
@ -284,12 +292,12 @@ msgstr "Перевірка"
|
|||||||
#: ../../source/install.rst:82
|
#: ../../source/install.rst:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Once you have imported Micah's public key into your GnuPG keychain, "
|
"Once you have imported Micah's public key into your GnuPG keychain, "
|
||||||
"downloaded the binary and ``.asc`` signature, you can verify the binary for "
|
"downloaded the binary and ``.asc`` signature, you can verify the binary "
|
||||||
"macOS in a terminal like this::"
|
"for macOS in a terminal like this::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Після того, як відкритий ключ Micah імпортовано до вашої збірки ключів "
|
"Після того, як відкритий ключ Micah імпортовано до вашої збірки ключів "
|
||||||
"GnuPG, завантажено двійковий файл і завантажено підпис ``.asc``, ви можете "
|
"GnuPG, завантажено двійковий файл і завантажено підпис ``.asc``, ви "
|
||||||
"перевірити двійковий файл для macOS в терміналі в такий спосіб::"
|
"можете перевірити двійковий файл для macOS в терміналі в такий спосіб::"
|
||||||
|
|
||||||
#: ../../source/install.rst:86
|
#: ../../source/install.rst:86
|
||||||
msgid "Or for Windows, in a command-prompt like this::"
|
msgid "Or for Windows, in a command-prompt like this::"
|
||||||
@ -301,78 +309,105 @@ msgstr "Очікуваний результат може виглядати та
|
|||||||
|
|
||||||
#: ../../source/install.rst:102
|
#: ../../source/install.rst:102
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you don't see ``Good signature from``, there might be a problem with the "
|
"If you don't see ``Good signature from``, there might be a problem with "
|
||||||
"integrity of the file (malicious or otherwise), and you should not install "
|
"the integrity of the file (malicious or otherwise), and you should not "
|
||||||
"the package. (The ``WARNING:`` shown above, is not a problem with the "
|
"install the package. (The ``WARNING:`` shown above, is not a problem with"
|
||||||
"package, it only means you haven't defined a level of \"trust\" of Micah's "
|
" the package, it only means you haven't defined a level of \"trust\" of "
|
||||||
"(the core developer) PGP key.)"
|
"Micah's (the core developer) PGP key.)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Якщо ви не бачите ``Good signature from``, можливо, виникла проблема з "
|
"Якщо ви не бачите ``Good signature from``, можливо, виникла проблема з "
|
||||||
"цілісністю файлу (зловмисна чи інша), і, можливо, вам не слід установлювати "
|
"цілісністю файлу (зловмисна чи інша), і, можливо, вам не слід "
|
||||||
"пакунок. (Вказаний раніше ``WARNING:`` не є проблемою з пакунком, це лише "
|
"установлювати пакунок. (Вказаний раніше ``WARNING:`` не є проблемою з "
|
||||||
"означає, що ви не визначили рівень «довіри» до самого ключа PGP від Micah "
|
"пакунком, це лише означає, що ви не визначили рівень «довіри» до самого "
|
||||||
"(основного розробника).)"
|
"ключа PGP від Micah (основного розробника).)"
|
||||||
|
|
||||||
#: ../../source/install.rst:104
|
#: ../../source/install.rst:104
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you want to learn more about verifying PGP signatures, the guides for "
|
"If you want to learn more about verifying PGP signatures, the guides for "
|
||||||
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and "
|
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and"
|
||||||
"the `Tor Project <https://support.torproject.org/tbb/how-to-verify-signature/"
|
" the `Tor Project <https://support.torproject.org/tbb/how-to-verify-"
|
||||||
">`_ may be useful."
|
"signature/>`_ may be useful."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Докладніше про перевірку підписів PGP читайте у настановах для `Qubes OS "
|
"Докладніше про перевірку підписів PGP читайте у настановах для `Qubes OS "
|
||||||
"<https://www.qubes-os.org/security/verifying-signatures/>`_ та `Tor Project "
|
"<https://www.qubes-os.org/security/verifying-signatures/>`_ та `Tor "
|
||||||
"<https://support.torproject.org/tbb/how-to-verify-signature/>`_."
|
"Project <https://support.torproject.org/tbb/how-to-verify-signature/>`_."
|
||||||
|
|
||||||
#~ msgid "For added security, see :ref:`verifying_sigs`."
|
#~ msgid "For added security, see :ref:`verifying_sigs`."
|
||||||
#~ msgstr "Для додаткової безпеки перегляньте :ref:`verifying_sigs`."
|
#~ msgstr "Для додаткової безпеки перегляньте :ref:`verifying_sigs`."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "There are various ways to install OnionShare for Linux, but the "
|
#~ "There are various ways to install "
|
||||||
#~ "recommended way is to use the Flatpak package. Flatpak ensures that "
|
#~ "OnionShare for Linux, but the "
|
||||||
#~ "you'll always use the most latest dependencies and run OnionShare inside "
|
#~ "recommended way is to use the "
|
||||||
|
#~ "Flatpak package. Flatpak ensures that "
|
||||||
|
#~ "you'll always use the most latest "
|
||||||
|
#~ "dependencies and run OnionShare inside "
|
||||||
#~ "of a sandbox."
|
#~ "of a sandbox."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Існують різні способи встановлення OnionShare для Linux, але "
|
#~ "Існують різні способи встановлення OnionShare"
|
||||||
#~ "рекомендованим способом є використання пакунку Flatpak. Flatpak гарантує, "
|
#~ " для Linux, але рекомендованим способом "
|
||||||
#~ "що ви завжди будете користуватися найновішими залежностями та запускати "
|
#~ "є використання пакунку Flatpak. Flatpak "
|
||||||
#~ "OnionShare всередині пісочниці."
|
#~ "гарантує, що ви завжди будете "
|
||||||
|
#~ "користуватися найновішими залежностями та "
|
||||||
|
#~ "запускати OnionShare всередині пісочниці."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Make sure you have ``flatpak`` installed and the Flathub repository added "
|
#~ "Make sure you have ``flatpak`` installed"
|
||||||
#~ "by following `these instructions <https://flatpak.org/setup/>`_ for your "
|
#~ " and the Flathub repository added by"
|
||||||
#~ "Linux distribution."
|
#~ " following `these instructions "
|
||||||
|
#~ "<https://flatpak.org/setup/>`_ for your Linux "
|
||||||
|
#~ "distribution."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Переконайтесь, що у вас встановлено ``flatpak`` та додано сховище "
|
#~ "Переконайтесь, що у вас встановлено "
|
||||||
#~ "Flathub, дотримуючись `цих настанов <https://flatpak.org/setup/>`_ для "
|
#~ "``flatpak`` та додано сховище Flathub, "
|
||||||
#~ "вашого дистрибутива Linux."
|
#~ "дотримуючись `цих настанов "
|
||||||
|
#~ "<https://flatpak.org/setup/>`_ для вашого "
|
||||||
|
#~ "дистрибутива Linux."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "You can verify that the Windows, macOS, or source package you download is "
|
#~ "You can verify that the Windows, "
|
||||||
#~ "legitimate and hasn't been tampered with by verifying its PGP signature. "
|
#~ "macOS, or source package you download"
|
||||||
#~ "For Windows and macOS, this step is optional and provides defense in "
|
#~ " is legitimate and hasn't been "
|
||||||
#~ "depth: the installers also include their operating system-specific "
|
#~ "tampered with by verifying its PGP "
|
||||||
#~ "signatures, and you can just rely on those alone if you'd like."
|
#~ "signature. For Windows and macOS, this"
|
||||||
|
#~ " step is optional and provides "
|
||||||
|
#~ "defense in depth: the installers also"
|
||||||
|
#~ " include their operating system-specific"
|
||||||
|
#~ " signatures, and you can just rely"
|
||||||
|
#~ " on those alone if you'd like."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Ви можете переконатися, що завантажений пакунок для Windows, macOS або "
|
#~ "Ви можете переконатися, що завантажений "
|
||||||
#~ "джерельний пакунок є законним і не підробленим, перевіривши його підпис "
|
#~ "пакунок для Windows, macOS або "
|
||||||
#~ "PGP. Для Windows та macOS цей крок є необов’язковим, але забезпечує "
|
#~ "джерельний пакунок є законним і не "
|
||||||
#~ "додатковий захист: встановлювачі також включають свої підписи для "
|
#~ "підробленим, перевіривши його підпис PGP. "
|
||||||
#~ "конкретної операційної системи, тож ви можете просто покластись лише на "
|
#~ "Для Windows та macOS цей крок є"
|
||||||
#~ "них, якщо хочете."
|
#~ " необов’язковим, але забезпечує додатковий "
|
||||||
|
#~ "захист: встановлювачі також включають свої "
|
||||||
|
#~ "підписи для конкретної операційної системи,"
|
||||||
|
#~ " тож ви можете просто покластись лише"
|
||||||
|
#~ " на них, якщо хочете."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid ""
|
||||||
#~ "Windows, macOS, and source packaged are signed by Micah Lee, the core "
|
#~ "Windows, macOS, and source packaged are"
|
||||||
#~ "developer, using his PGP public key with fingerprint "
|
#~ " signed by Micah Lee, the core "
|
||||||
#~ "``927F419D7EC82C2F149C1BD1403C2657CD994F73``. You can download Micah's "
|
#~ "developer, using his PGP public key "
|
||||||
#~ "key `from the keys.openpgp.org keyserver <https://keys.openpgp.org/vks/v1/"
|
#~ "with fingerprint "
|
||||||
#~ "by-fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
#~ "``927F419D7EC82C2F149C1BD1403C2657CD994F73``. You can "
|
||||||
|
#~ "download Micah's key `from the "
|
||||||
|
#~ "keys.openpgp.org keyserver "
|
||||||
|
#~ "<https://keys.openpgp.org/vks/v1/by-"
|
||||||
|
#~ "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Пакунки Windows, macOS та джерельні пакунки підписано основним "
|
#~ "Пакунки Windows, macOS та джерельні "
|
||||||
#~ "розробником Micah Lee його відкритим ключем PGP із цифровим відбитком "
|
#~ "пакунки підписано основним розробником Micah"
|
||||||
#~ "`927F419D7EC82C2F149C1BD1403C2657CD994F73``. Ви можете завантажити ключ "
|
#~ " Lee його відкритим ключем PGP із "
|
||||||
#~ "Micah з сервера ключів keys.openpgp.org keyserver <https://keys.openpgp."
|
#~ "цифровим відбитком "
|
||||||
#~ "org/vks/v1/by-fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
#~ "`927F419D7EC82C2F149C1BD1403C2657CD994F73``. Ви можете "
|
||||||
|
#~ "завантажити ключ Micah з сервера ключів"
|
||||||
|
#~ " keys.openpgp.org keyserver "
|
||||||
|
#~ "<https://keys.openpgp.org/vks/v1/by-"
|
||||||
|
#~ "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
|
|
||||||
#~ msgid "Install in Linux"
|
#~ msgid "Install in Linux"
|
||||||
#~ msgstr "Встановлення на Linux"
|
#~ msgstr "Встановлення на Linux"
|
||||||
|
|
||||||
|
@ -1,22 +1,22 @@
|
|||||||
# SOME DESCRIPTIVE TITLE.
|
# SOME DESCRIPTIVE TITLE.
|
||||||
# Copyright (C) Micah Lee, et al.
|
# Copyright (C) Micah Lee, et al.
|
||||||
# This file is distributed under the same license as the OnionShare package.
|
# This file is distributed under the same license as the OnionShare package.
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: OnionShare 2.6\n"
|
"Project-Id-Version: OnionShare 2.6\n"
|
||||||
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n"
|
||||||
"POT-Creation-Date: 2023-06-06 13:07+0200\n"
|
"POT-Creation-Date: 2023-09-05 11:30-0700\n"
|
||||||
"PO-Revision-Date: 2023-07-25 17:04+0000\n"
|
"PO-Revision-Date: 2023-07-25 17:04+0000\n"
|
||||||
"Last-Translator: tictactoe <phandinhminh@protonmail.ch>\n"
|
"Last-Translator: tictactoe <phandinhminh@protonmail.ch>\n"
|
||||||
"Language-Team: none\n"
|
|
||||||
"Language: vi\n"
|
"Language: vi\n"
|
||||||
"MIME-Version: 1.0\n"
|
"Language-Team: none\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 5.0-dev\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Generated-By: Babel 2.12.1\n"
|
||||||
|
|
||||||
#: ../../source/install.rst:2
|
#: ../../source/install.rst:2
|
||||||
msgid "Installation"
|
msgid "Installation"
|
||||||
@ -40,15 +40,17 @@ msgstr "Linux"
|
|||||||
|
|
||||||
#: ../../source/install.rst:14
|
#: ../../source/install.rst:14
|
||||||
msgid ""
|
msgid ""
|
||||||
"There are various ways to install OnionShare for Linux, but the recommended "
|
"There are various ways to install OnionShare for Linux, but the "
|
||||||
"way is to use either the `Flatpak <https://flatpak.org/>`_ or the `Snap "
|
"recommended way is to use either the `Flatpak <https://flatpak.org/>`_ or"
|
||||||
"<https://snapcraft.io/>`_ package. Flatpak and Snapcraft ensure that you'll "
|
" the `Snap <https://snapcraft.io/>`_ package. Flatpak and Snapcraft "
|
||||||
"always use the newest version and run OnionShare inside of a sandbox."
|
"ensure that you'll always use the newest version and run OnionShare "
|
||||||
|
"inside of a sandbox."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Có nhiều cách khác nhau để cài đặt OnionShare cho Linux, nhưng cách được đề "
|
"Có nhiều cách khác nhau để cài đặt OnionShare cho Linux, nhưng cách được "
|
||||||
"xuất là hoặc sử dụng gói `Flatpak <https://flatpak.org/>`_ hoặc gói `Snap "
|
"đề xuất là hoặc sử dụng gói `Flatpak <https://flatpak.org/>`_ hoặc gói "
|
||||||
"<https://snapcraft.io/>`_ . Flatpak và Snapcraft đảm bảo rằng bạn sẽ luôn sử "
|
"`Snap <https://snapcraft.io/>`_ . Flatpak và Snapcraft đảm bảo rằng bạn "
|
||||||
"dụng phiên bản mới nhất và chạy OnionShare bên trong một sandbox."
|
"sẽ luôn sử dụng phiên bản mới nhất và chạy OnionShare bên trong một "
|
||||||
|
"sandbox."
|
||||||
|
|
||||||
#: ../../source/install.rst:17
|
#: ../../source/install.rst:17
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -56,30 +58,29 @@ msgid ""
|
|||||||
"support, but which you use is up to you. Both work in all Linux "
|
"support, but which you use is up to you. Both work in all Linux "
|
||||||
"distributions."
|
"distributions."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Hỗ trợ Snapcraft được tích hợp sẵn trong Ubuntu và Fedora đi kèm với hỗ trợ "
|
"Hỗ trợ Snapcraft được tích hợp sẵn trong Ubuntu và Fedora đi kèm với hỗ "
|
||||||
"Flatpak, nhưng việc bạn sử dụng loại nào là tùy thuộc vào bạn. Cả hai đều "
|
"trợ Flatpak, nhưng việc bạn sử dụng loại nào là tùy thuộc vào bạn. Cả hai"
|
||||||
"hoạt động trong tất cả các bản phân phối Linux."
|
" đều hoạt động trong tất cả các bản phân phối Linux."
|
||||||
|
|
||||||
#: ../../source/install.rst:19
|
#: ../../source/install.rst:19
|
||||||
msgid ""
|
msgid ""
|
||||||
"**Install OnionShare using Flatpak**: https://flathub.org/apps/details/org."
|
"**Install OnionShare using Flatpak**: "
|
||||||
"onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**Cài đặt OnionShare sử dụng Flatpak**: https://flathub.org/apps/details/org."
|
"**Cài đặt OnionShare sử dụng Flatpak**: "
|
||||||
"onionshare.OnionShare"
|
"https://flathub.org/apps/details/org.onionshare.OnionShare"
|
||||||
|
|
||||||
#: ../../source/install.rst:21
|
#: ../../source/install.rst:21
|
||||||
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
msgid "**Install OnionShare using Snapcraft**: https://snapcraft.io/onionshare"
|
||||||
msgstr ""
|
msgstr "**Cài đặt OnionShare sử dụng Snapcraft**: https://snapcraft.io/onionshare"
|
||||||
"**Cài đặt OnionShare sử dụng Snapcraft**: https://snapcraft.io/onionshare"
|
|
||||||
|
|
||||||
#: ../../source/install.rst:23
|
#: ../../source/install.rst:23
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can also download and install PGP-signed ``.flatpak`` or ``.snap`` "
|
"You can also download and install PGP-signed ``.flatpak`` or ``.snap`` "
|
||||||
"packages from https://onionshare.org/dist/ if you prefer."
|
"packages from https://onionshare.org/dist/ if you prefer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bạn cũng có thể tải xuống và cài đặt các gói ``.flatpak`` hoặc ``.snap`` có "
|
"Bạn cũng có thể tải xuống và cài đặt các gói ``.flatpak`` hoặc ``.snap`` "
|
||||||
"chữ ký PGP từ https://onionshare.org/dist/ nếu bạn muốn."
|
"có chữ ký PGP từ https://onionshare.org/dist/ nếu bạn muốn."
|
||||||
|
|
||||||
#: ../../source/install.rst:26
|
#: ../../source/install.rst:26
|
||||||
msgid "Manual Flatpak Installation"
|
msgid "Manual Flatpak Installation"
|
||||||
@ -88,43 +89,46 @@ msgstr "Cài đặt Flatpak theo cách thủ công"
|
|||||||
#: ../../source/install.rst:28
|
#: ../../source/install.rst:28
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
"If you'd like to install OnionShare manually with Flatpak using the PGP-"
|
||||||
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-file-"
|
"signed `single-file bundle <https://docs.flatpak.org/en/latest/single-"
|
||||||
"bundles.html>`_, you can do so like this:"
|
"file-bundles.html>`_, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nếu bạn muốn cài đặt OnionShare theo cách thủ công với Flatpak bằng cách sử "
|
"Nếu bạn muốn cài đặt OnionShare theo cách thủ công với Flatpak bằng cách "
|
||||||
"dụng `gói tập tin đơn có chữ ký PGP <https://docs.flatpak.org/en/latest/"
|
"sử dụng `gói tập tin đơn có chữ ký PGP "
|
||||||
"single-file-bundles.html>`_, bạn có thể thực hiện như sau:"
|
"<https://docs.flatpak.org/en/latest/single-file-bundles.html>`_, bạn có "
|
||||||
|
"thể thực hiện như sau:"
|
||||||
|
|
||||||
#: ../../source/install.rst:30
|
#: ../../source/install.rst:30
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Flatpak by following the instructions at https://flatpak.org/setup/."
|
"Install Flatpak by following the instructions at "
|
||||||
|
"https://flatpak.org/setup/."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Cài đặt Flatpak bằng cách làm theo hướng dẫn tại https://flatpak.org/setup/."
|
"Cài đặt Flatpak bằng cách làm theo hướng dẫn tại "
|
||||||
|
"https://flatpak.org/setup/."
|
||||||
|
|
||||||
#: ../../source/install.rst:31
|
#: ../../source/install.rst:31
|
||||||
msgid ""
|
msgid ""
|
||||||
"Add the Flathub repository by running ``flatpak remote-add --if-not-exists "
|
"Add the Flathub repository by running ``flatpak remote-add --if-not-"
|
||||||
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Even though you "
|
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Even "
|
||||||
"won't be downloading OnionShare from Flathub, OnionShare depends on some "
|
"though you won't be downloading OnionShare from Flathub, OnionShare "
|
||||||
"packages that are only available there."
|
"depends on some packages that are only available there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Thêm kho lưu trữ Flathub bằng cách chạy ``flatpak remote-add --if-not-exists "
|
"Thêm kho lưu trữ Flathub bằng cách chạy ``flatpak remote-add --if-not-"
|
||||||
"flathub https://flathub.org/repo/flathub.flatpakrepo``. Mặc dù bạn sẽ không "
|
"exists flathub https://flathub.org/repo/flathub.flatpakrepo``. Mặc dù bạn"
|
||||||
"tải xuống OnionShare từ Flathub, nhưng OnionShare phụ thuộc vào một số gói "
|
" sẽ không tải xuống OnionShare từ Flathub, nhưng OnionShare phụ thuộc vào"
|
||||||
"package chỉ khả dụng ở đó mà thôi."
|
" một số gói package chỉ khả dụng ở đó mà thôi."
|
||||||
|
|
||||||
#: ../../source/install.rst:32
|
#: ../../source/install.rst:32
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
"OnionShare, and download the ``.flatpak`` and ``.flatpak.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Đi tới https://onionshare.org/dist/, lựa chọn phiên bản OnionShare mới nhất, "
|
"Đi tới https://onionshare.org/dist/, lựa chọn phiên bản OnionShare mới "
|
||||||
"và tải xuống các file tệp tin ``.flatpak`` và ``.flatpak.asc``."
|
"nhất, và tải xuống các file tệp tin ``.flatpak`` và ``.flatpak.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:33
|
#: ../../source/install.rst:33
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.flatpak`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.flatpak`` file. See "
|
||||||
"for more info."
|
":ref:`verifying_sigs` for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Xác minh chữ ký PGP của file tệp tin ``.flatpak``. Hãy xem "
|
"Xác minh chữ ký PGP của file tệp tin ``.flatpak``. Hãy xem "
|
||||||
":ref:`verifying_sigs` để biết thêm thông tin."
|
":ref:`verifying_sigs` để biết thêm thông tin."
|
||||||
@ -132,8 +136,8 @@ msgstr ""
|
|||||||
#: ../../source/install.rst:34
|
#: ../../source/install.rst:34
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
"Install the ``.flatpak`` file by running ``flatpak install OnionShare-"
|
||||||
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the file "
|
"VERSION.flatpak``. Replace ``VERSION`` with the version number of the "
|
||||||
"you downloaded."
|
"file you downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Cài đặt file tệp tin ``.flatpak`` bằng cách chạy ``flatpak install "
|
"Cài đặt file tệp tin ``.flatpak`` bằng cách chạy ``flatpak install "
|
||||||
"OnionShare-VERSION.flatpak``. Thay thế ``VERSION`` bằng số phiên bản của "
|
"OnionShare-VERSION.flatpak``. Thay thế ``VERSION`` bằng số phiên bản của "
|
||||||
@ -141,8 +145,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: ../../source/install.rst:36
|
#: ../../source/install.rst:36
|
||||||
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
msgid "You can run OnionShare with: `flatpak run org.onionshare.OnionShare`."
|
||||||
msgstr ""
|
msgstr "Bạn có thể chạy OnionShare với: `flatpak run org.onionshare.OnionShare`."
|
||||||
"Bạn có thể chạy OnionShare với: `flatpak run org.onionshare.OnionShare`."
|
|
||||||
|
|
||||||
#: ../../source/install.rst:39
|
#: ../../source/install.rst:39
|
||||||
msgid "Manual Snapcraft Installation"
|
msgid "Manual Snapcraft Installation"
|
||||||
@ -150,49 +153,51 @@ msgstr "Cài đặt Snapcraft theo cách thủ công"
|
|||||||
|
|
||||||
#: ../../source/install.rst:41
|
#: ../../source/install.rst:41
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you'd like to install OnionShare manually with Snapcraft using the PGP-"
|
"If you'd like to install OnionShare manually with Snapcraft using the "
|
||||||
"signed Snapcraft package, you can do so like this:"
|
"PGP-signed Snapcraft package, you can do so like this:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"nếu như bạn muốn cài đặt OnionShare theo cách thủ công với Snapcraft bằng "
|
"nếu như bạn muốn cài đặt OnionShare theo cách thủ công với Snapcraft bằng"
|
||||||
"cách sử dụng gói package Snapcraft có chữ ký PGP, bạn có thể làm như thế này:"
|
" cách sử dụng gói package Snapcraft có chữ ký PGP, bạn có thể làm như thế"
|
||||||
|
" này:"
|
||||||
|
|
||||||
#: ../../source/install.rst:43
|
#: ../../source/install.rst:43
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install Snapcraft by following the instructions at https://snapcraft.io/docs/"
|
"Install Snapcraft by following the instructions at "
|
||||||
"installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Cài đặt Snapcraft bằng cách làm theo các chỉ dẫn tại https://snapcraft.io/"
|
"Cài đặt Snapcraft bằng cách làm theo các chỉ dẫn tại "
|
||||||
"docs/installing-snapd."
|
"https://snapcraft.io/docs/installing-snapd."
|
||||||
|
|
||||||
#: ../../source/install.rst:44
|
#: ../../source/install.rst:44
|
||||||
msgid ""
|
msgid ""
|
||||||
"Go to https://onionshare.org/dist/, choose the latest version of OnionShare, "
|
"Go to https://onionshare.org/dist/, choose the latest version of "
|
||||||
"and download the ``.snap`` and ``.snap.asc`` files."
|
"OnionShare, and download the ``.snap`` and ``.snap.asc`` files."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Đi tới https://onionshare.org/dist/, lựa chọn phiên bản mới nhất của "
|
"Đi tới https://onionshare.org/dist/, lựa chọn phiên bản mới nhất của "
|
||||||
"OnionShare, và tải xuống các file tệp tin ``.snap`` và ``.snap.asc``."
|
"OnionShare, và tải xuống các file tệp tin ``.snap`` và ``.snap.asc``."
|
||||||
|
|
||||||
#: ../../source/install.rst:45
|
#: ../../source/install.rst:45
|
||||||
msgid ""
|
msgid ""
|
||||||
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs` "
|
"Verify the PGP signature of the ``.snap`` file. See :ref:`verifying_sigs`"
|
||||||
"for more info."
|
" for more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Xác minh chữ ký PGP của file tệp tin ``.snap``. hãy xem :ref:`verifying_sigs`"
|
"Xác minh chữ ký PGP của file tệp tin ``.snap``. hãy xem "
|
||||||
" để biết thêm thông tin."
|
":ref:`verifying_sigs` để biết thêm thông tin."
|
||||||
|
|
||||||
#: ../../source/install.rst:46
|
#: ../../source/install.rst:46
|
||||||
msgid ""
|
msgid ""
|
||||||
"Install the ``.snap`` file by running ``snap install --dangerous "
|
"Install the ``.snap`` file by running ``snap install --dangerous "
|
||||||
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version number "
|
"onionshare_VERSION_amd64.snap``. Replace ``VERSION`` with the version "
|
||||||
"of the file you downloaded. Note that you must use `--dangerous` because the "
|
"number of the file you downloaded. Note that you must use `--dangerous` "
|
||||||
"package is not signed by the Snapcraft store, however you did verify its PGP "
|
"because the package is not signed by the Snapcraft store, however you did"
|
||||||
"signature, so you know it's legitimate."
|
" verify its PGP signature, so you know it's legitimate."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Cài đặt file tệp tin ``.snap`` bằng cách chạy ``snap install --dangerous "
|
"Cài đặt file tệp tin ``.snap`` bằng cách chạy ``snap install --dangerous "
|
||||||
"onionshare_VERSION_amd64.snap``. Thay thế ``VERSION`` bằng số phiên bản của "
|
"onionshare_VERSION_amd64.snap``. Thay thế ``VERSION`` bằng số phiên bản "
|
||||||
"file tệp tin mà bạn đã tải xuống. Lưu ý rằng bạn phải sử dụng `--dangerous` "
|
"của file tệp tin mà bạn đã tải xuống. Lưu ý rằng bạn phải sử dụng "
|
||||||
"bởi vì gói package không được ký bởi cửa hàng Snapcraft store, tuy nhiên, "
|
"`--dangerous` bởi vì gói package không được ký bởi cửa hàng Snapcraft "
|
||||||
"bạn đã xác minh chữ ký PGP của nó, vì vậy bạn biết nó là chính chủ hợp pháp."
|
"store, tuy nhiên, bạn đã xác minh chữ ký PGP của nó, vì vậy bạn biết nó "
|
||||||
|
"là chính chủ hợp pháp."
|
||||||
|
|
||||||
#: ../../source/install.rst:48
|
#: ../../source/install.rst:48
|
||||||
msgid "You can run OnionShare with: `snap run onionshare`."
|
msgid "You can run OnionShare with: `snap run onionshare`."
|
||||||
@ -204,12 +209,13 @@ msgstr "Chỉ dòng lệnh command mà thôi"
|
|||||||
|
|
||||||
#: ../../source/install.rst:55
|
#: ../../source/install.rst:55
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can install just the command-line version of OnionShare on any operating "
|
"You can install just the command-line version of OnionShare on any "
|
||||||
"system using the Python package manager ``pip``. :ref:`cli` has more info."
|
"operating system using the Python package manager ``pip``. :ref:`cli` has"
|
||||||
|
" more info."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bạn có thể chỉ cài đặt phiên bản dòng lệnh command của OnionShare trên bất "
|
"Bạn có thể chỉ cài đặt phiên bản dòng lệnh command của OnionShare trên "
|
||||||
"kỳ hệ điều hành nào bằng cách sử dụng trình quản lý gói Python ``pip``. :ref:"
|
"bất kỳ hệ điều hành nào bằng cách sử dụng trình quản lý gói Python "
|
||||||
"`cli` có thêm thông tin."
|
"``pip``. :ref:`cli` có thêm thông tin."
|
||||||
|
|
||||||
#: ../../source/install.rst:60
|
#: ../../source/install.rst:60
|
||||||
msgid "Verifying PGP signatures"
|
msgid "Verifying PGP signatures"
|
||||||
@ -217,18 +223,18 @@ msgstr "Việc xác minh chữ ký PGP"
|
|||||||
|
|
||||||
#: ../../source/install.rst:62
|
#: ../../source/install.rst:62
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can verify that the package you download is legitimate and hasn't been "
|
"You can verify that the package you download is legitimate and hasn't "
|
||||||
"tampered with by verifying its PGP signature. For Windows and macOS, this "
|
"been tampered with by verifying its PGP signature. For Windows and macOS,"
|
||||||
"step is optional and provides defense in depth: the OnionShare binaries "
|
" this step is optional and provides defense in depth: the OnionShare "
|
||||||
"include operating system-specific signatures, and you can just rely on those "
|
"binaries include operating system-specific signatures, and you can just "
|
||||||
"alone if you'd like."
|
"rely on those alone if you'd like."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bạn có thể xác minh rằng gói mà bạn tải xuống là hợp pháp hợp lệ và không bị "
|
"Bạn có thể xác minh rằng gói mà bạn tải xuống là hợp pháp hợp lệ và không"
|
||||||
"giả mạo hoặc xáo trộn bằng cách xác minh chữ ký PGP của nó. Đối với hệ điều "
|
" bị giả mạo hoặc xáo trộn bằng cách xác minh chữ ký PGP của nó. Đối với "
|
||||||
"hành Windows và macOS, bước này là tùy chọn và cung cấp khả năng bảo vệ "
|
"hệ điều hành Windows và macOS, bước này là tùy chọn và cung cấp khả năng "
|
||||||
"chuyên sâu: các nhị phân OnionShare binaries bao gồm các chữ ký dành riêng "
|
"bảo vệ chuyên sâu: các nhị phân OnionShare binaries bao gồm các chữ ký "
|
||||||
"cho hệ điều hành, và bạn có thể chỉ cần dựa vào những chữ ký đó mà thôi nếu "
|
"dành riêng cho hệ điều hành, và bạn có thể chỉ cần dựa vào những chữ ký "
|
||||||
"bạn muốn."
|
"đó mà thôi nếu bạn muốn."
|
||||||
|
|
||||||
#: ../../source/install.rst:66
|
#: ../../source/install.rst:66
|
||||||
msgid "Signing key"
|
msgid "Signing key"
|
||||||
@ -236,44 +242,48 @@ msgstr "Khoá key chữ ký"
|
|||||||
|
|
||||||
#: ../../source/install.rst:68
|
#: ../../source/install.rst:68
|
||||||
msgid ""
|
msgid ""
|
||||||
"Packages are signed by Micah Lee, the core developer, using his PGP public "
|
"Packages are signed by Micah Lee, the core developer, using his PGP "
|
||||||
"key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``. You can "
|
"public key with fingerprint ``927F419D7EC82C2F149C1BD1403C2657CD994F73``."
|
||||||
"download Micah's key `from the keys.openpgp.org keyserver <https://keys."
|
" You can download Micah's key `from the keys.openpgp.org keyserver "
|
||||||
"openpgp.org/vks/v1/by-"
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Các gói được ký bởi Micah Lee, nhà phát triển cốt lõi, sử dụng khóa key công "
|
"Các gói được ký bởi Micah Lee, nhà phát triển cốt lõi, sử dụng khóa key "
|
||||||
"cộng PGP của anh ấy với dấu vân tay fingerprint "
|
"công cộng PGP của anh ấy với dấu vân tay fingerprint "
|
||||||
"``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Bạn có thể tải xuống khóa key "
|
"``927F419D7EC82C2F149C1BD1403C2657CD994F73``. Bạn có thể tải xuống khóa "
|
||||||
"của Micah `từ máy chủ khóa key keys.openpgp.org <https://keys.openpgp.org/"
|
"key của Micah `từ máy chủ khóa key keys.openpgp.org "
|
||||||
"vks/v1/by-fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
"<https://keys.openpgp.org/vks/v1/by-"
|
||||||
|
"fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:71
|
#: ../../source/install.rst:71
|
||||||
msgid ""
|
msgid ""
|
||||||
"You must have GnuPG installed to verify signatures. For macOS you probably "
|
"You must have GnuPG installed to verify signatures. For macOS you "
|
||||||
"want `GPGTools <https://gpgtools.org/>`_, and for Windows you probably want "
|
"probably want `GPGTools <https://gpgtools.org/>`_, and for Windows you "
|
||||||
"`Gpg4win <https://www.gpg4win.org/>`_."
|
"probably want `Gpg4win <https://www.gpg4win.org/>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bạn phải cài đặt GnuPG sẵn để xác minh chữ ký. Đối với hệ điều hành macOS, "
|
"Bạn phải cài đặt GnuPG sẵn để xác minh chữ ký. Đối với hệ điều hành "
|
||||||
"bạn có thể muốn `GPGTools <https://gpgtools.org/>`_, và đối với hệ điều hành "
|
"macOS, bạn có thể muốn `GPGTools <https://gpgtools.org/>`_, và đối với hệ"
|
||||||
"Windows, bạn có thể muốn `Gpg4win <https://www.gpg4win.org/>`_."
|
" điều hành Windows, bạn có thể muốn `Gpg4win "
|
||||||
|
"<https://www.gpg4win.org/>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:74
|
#: ../../source/install.rst:74
|
||||||
msgid "Signatures"
|
msgid "Signatures"
|
||||||
msgstr "Các chữ ký"
|
msgstr "Các chữ ký"
|
||||||
|
|
||||||
#: ../../source/install.rst:76
|
#: ../../source/install.rst:76
|
||||||
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can find the signatures (as ``.asc`` files), as well as Windows, macOS, "
|
"You can find the signatures (as ``.asc`` files), as well as Windows, "
|
||||||
"Flatpak, Snap, and source packages, at https://onionshare.org/dist/ in the "
|
"macOS, Flatpak, Snap, and source packages, at "
|
||||||
"folders named for each version of OnionShare. You can also find them on the "
|
"https://onionshare.org/dist/ in the folders named for each version of "
|
||||||
"`GitHub Releases page <https://github.com/micahflee/onionshare/releases>`_."
|
"OnionShare. You can also find them on the `GitHub Releases page "
|
||||||
|
"<https://github.com/onionshare/onionshare/releases>`_."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bạn có thể tìm thấy các chữ ký (dưới dạng tập tin ``.asc``), cũng như các "
|
"Bạn có thể tìm thấy các chữ ký (dưới dạng tập tin ``.asc``), cũng như các"
|
||||||
"gói Windows, macOS, Flatpak, Snap, và gói nguồn, tại https://onionshare.org/"
|
" gói Windows, macOS, Flatpak, Snap, và gói nguồn, tại "
|
||||||
"dist/ trong các thư mục được đặt tên cho từng phiên bản của OnionShare. Bạn "
|
"https://onionshare.org/dist/ trong các thư mục được đặt tên cho từng "
|
||||||
"cũng có thể tìm thấy chúng trên `trang Bản phát hành GitHub <https://github."
|
"phiên bản của OnionShare. Bạn cũng có thể tìm thấy chúng trên `trang Bản "
|
||||||
"com/micahflee/onionshare/releases>`_."
|
"phát hành GitHub <https://github.com/micahflee/onionshare/releases>`_."
|
||||||
|
|
||||||
#: ../../source/install.rst:80
|
#: ../../source/install.rst:80
|
||||||
msgid "Verifying"
|
msgid "Verifying"
|
||||||
@ -282,13 +292,13 @@ msgstr "Việc xác minh"
|
|||||||
#: ../../source/install.rst:82
|
#: ../../source/install.rst:82
|
||||||
msgid ""
|
msgid ""
|
||||||
"Once you have imported Micah's public key into your GnuPG keychain, "
|
"Once you have imported Micah's public key into your GnuPG keychain, "
|
||||||
"downloaded the binary and ``.asc`` signature, you can verify the binary for "
|
"downloaded the binary and ``.asc`` signature, you can verify the binary "
|
||||||
"macOS in a terminal like this::"
|
"for macOS in a terminal like this::"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Một khi bạn đã truy nhập import khóa key công cộng của Micah vào trong chuỗi "
|
"Một khi bạn đã truy nhập import khóa key công cộng của Micah vào trong "
|
||||||
"khóa keychain GnuPG của bạn, đã tải xuống nhị phân binary và chữ ký ``.asc``"
|
"chuỗi khóa keychain GnuPG của bạn, đã tải xuống nhị phân binary và chữ ký"
|
||||||
", bạn có thể xác minh file tệp tin nhị phân binary cho macOS trong một "
|
" ``.asc``, bạn có thể xác minh file tệp tin nhị phân binary cho macOS "
|
||||||
"Terminal như sau::"
|
"trong một Terminal như sau::"
|
||||||
|
|
||||||
#: ../../source/install.rst:86
|
#: ../../source/install.rst:86
|
||||||
msgid "Or for Windows, in a command-prompt like this::"
|
msgid "Or for Windows, in a command-prompt like this::"
|
||||||
@ -300,26 +310,27 @@ msgstr "Đầu ra output dự kiến trông như thế này::"
|
|||||||
|
|
||||||
#: ../../source/install.rst:102
|
#: ../../source/install.rst:102
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you don't see ``Good signature from``, there might be a problem with the "
|
"If you don't see ``Good signature from``, there might be a problem with "
|
||||||
"integrity of the file (malicious or otherwise), and you should not install "
|
"the integrity of the file (malicious or otherwise), and you should not "
|
||||||
"the package. (The ``WARNING:`` shown above, is not a problem with the "
|
"install the package. (The ``WARNING:`` shown above, is not a problem with"
|
||||||
"package, it only means you haven't defined a level of \"trust\" of Micah's "
|
" the package, it only means you haven't defined a level of \"trust\" of "
|
||||||
"(the core developer) PGP key.)"
|
"Micah's (the core developer) PGP key.)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nếu bạn không thấy ``Chữ ký tốt từ``, thì có thể có một vấn đề với tính toàn "
|
"Nếu bạn không thấy ``Chữ ký tốt từ``, thì có thể có một vấn đề với tính "
|
||||||
"vẹn của tập tin (độc hại hoặc theo một cách khác) và bạn không nên cài đặt "
|
"toàn vẹn của tập tin (độc hại hoặc theo một cách khác) và bạn không nên "
|
||||||
"gói. (``CẢNH BÁO:`` được hiển thị ở trên, không phải là vấn đề đối với gói, "
|
"cài đặt gói. (``CẢNH BÁO:`` được hiển thị ở trên, không phải là vấn đề "
|
||||||
"điều đó chỉ có nghĩa là bạn chưa xác định mức độ \"tin cậy\" của khóa key "
|
"đối với gói, điều đó chỉ có nghĩa là bạn chưa xác định mức độ \"tin cậy\""
|
||||||
"PGP của Micah (nhà phát triển cốt lõi).)"
|
" của khóa key PGP của Micah (nhà phát triển cốt lõi).)"
|
||||||
|
|
||||||
#: ../../source/install.rst:104
|
#: ../../source/install.rst:104
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you want to learn more about verifying PGP signatures, the guides for "
|
"If you want to learn more about verifying PGP signatures, the guides for "
|
||||||
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and "
|
"`Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ and"
|
||||||
"the `Tor Project <https://support.torproject.org/tbb/how-to-verify-signature/"
|
" the `Tor Project <https://support.torproject.org/tbb/how-to-verify-"
|
||||||
">`_ may be useful."
|
"signature/>`_ may be useful."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nếu bạn muốn tìm hiểu thêm về việc xác minh chữ ký PGP, các hướng dẫn dành "
|
"Nếu bạn muốn tìm hiểu thêm về việc xác minh chữ ký PGP, các hướng dẫn "
|
||||||
"cho `Qubes OS <https://www.qubes-os.org/security/verifying-signatures/>`_ và "
|
"dành cho `Qubes OS <https://www.qubes-os.org/security/verifying-"
|
||||||
"`Dự án Tor Project <https://support.torproject.org/tbb/"
|
"signatures/>`_ và `Dự án Tor Project <https://support.torproject.org/tbb"
|
||||||
"how-to-verify-signature/>`_ có thể hữu ích."
|
"/how-to-verify-signature/>`_ có thể hữu ích."
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user