diff --git a/cli/onionshare_cli/__init__.py b/cli/onionshare_cli/__init__.py index 0dffb493..3ea0d76d 100644 --- a/cli/onionshare_cli/__init__.py +++ b/cli/onionshare_cli/__init__.py @@ -515,7 +515,7 @@ def main(cwd=None): if not app.autostop_timer_thread.is_alive(): if mode == "share": # If there were no attempts to download the share, or all downloads are done, we can stop - if web.share_mode.cur_history_id == 0 or web.done: + if not web.share_mode.download_in_progress or web.share_mode.cur_history_id == 0 or web.done: print("Stopped because auto-stop timer ran out") web.stop(app.port) break @@ -541,6 +541,7 @@ def main(cwd=None): finally: # Shutdown web.cleanup() + t.join() onion.cleanup() diff --git a/cli/onionshare_cli/web/send_base_mode.py b/cli/onionshare_cli/web/send_base_mode.py index 3481f39a..e55841a8 100644 --- a/cli/onionshare_cli/web/send_base_mode.py +++ b/cli/onionshare_cli/web/send_base_mode.py @@ -132,6 +132,9 @@ class SendBaseModeWeb: self.set_file_info_custom(filenames, processed_size_callback) def directory_listing(self, filenames, path="", filesystem_path=None, add_trailing_slash=False): + """ + Display the front page of a share or index.html-less website, listing the files/directories. + """ # Tell the GUI about the directory listing history_id = self.cur_history_id self.cur_history_id += 1 @@ -151,6 +154,11 @@ class SendBaseModeWeb: # If filesystem_path is None, this is the root directory listing files, dirs = self.build_directory_listing(path, filenames, filesystem_path, add_trailing_slash) + + # Mark the request as done so we know we can close the share if in auto-stop mode. + self.web.done = True + + # Render and return the response. return self.directory_listing_template( path, files, dirs, breadcrumbs, breadcrumbs_leaf ) @@ -228,11 +236,11 @@ class SendBaseModeWeb: chunk_size = 102400 # 100kb fp = open(file_to_download, "rb") - done = False - while not done: + self.web.done = False + while not self.web.done: chunk = fp.read(chunk_size) if chunk == b"": - done = True + self.web.done = True else: try: yield chunk @@ -273,10 +281,10 @@ class SendBaseModeWeb: "filesize": filesize, }, ) - done = False + self.web.done = False except Exception: # Looks like the download was canceled - done = True + self.web.done = True # Tell the GUI the individual file was canceled self.web.add_request( diff --git a/desktop/onionshare/main_window.py b/desktop/onionshare/main_window.py index 986f8720..d6f0d914 100644 --- a/desktop/onionshare/main_window.py +++ b/desktop/onionshare/main_window.py @@ -81,13 +81,13 @@ class MainWindow(QtWidgets.QMainWindow): # Server status indicator icons self.status_bar.server_status_image_stopped = QtGui.QImage( - GuiCommon.get_resource_path("images/server_stopped.png") + GuiCommon.get_resource_path(f"images/{self.common.gui.color_mode}_server_stopped.svg") ) self.status_bar.server_status_image_working = QtGui.QImage( - GuiCommon.get_resource_path("images/server_working.png") + GuiCommon.get_resource_path("images/server_working.svg") ) self.status_bar.server_status_image_started = QtGui.QImage( - GuiCommon.get_resource_path("images/server_started.png") + GuiCommon.get_resource_path("images/server_started.svg") ) # Server status indicator on the status bar diff --git a/desktop/onionshare/resources/images/close_tab.png b/desktop/onionshare/resources/images/close_tab.png deleted file mode 100644 index a7984a6d..00000000 Binary files a/desktop/onionshare/resources/images/close_tab.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/dark_history_completed_none.svg b/desktop/onionshare/resources/images/dark_history_completed_none.svg new file mode 100644 index 00000000..6a0a1435 --- /dev/null +++ b/desktop/onionshare/resources/images/dark_history_completed_none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/dark_history_icon_toggle.svg b/desktop/onionshare/resources/images/dark_history_icon_toggle.svg new file mode 100644 index 00000000..9166e984 --- /dev/null +++ b/desktop/onionshare/resources/images/dark_history_icon_toggle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/dark_history_icon_toggle_selected.svg b/desktop/onionshare/resources/images/dark_history_icon_toggle_selected.svg new file mode 100644 index 00000000..f5f6231a --- /dev/null +++ b/desktop/onionshare/resources/images/dark_history_icon_toggle_selected.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/dark_history_in_progress_none.svg b/desktop/onionshare/resources/images/dark_history_in_progress_none.svg new file mode 100644 index 00000000..d72f4a6a --- /dev/null +++ b/desktop/onionshare/resources/images/dark_history_in_progress_none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/dark_history_requests_none.svg b/desktop/onionshare/resources/images/dark_history_requests_none.svg new file mode 100644 index 00000000..d5453b75 --- /dev/null +++ b/desktop/onionshare/resources/images/dark_history_requests_none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/dark_persistent_enabled.svg b/desktop/onionshare/resources/images/dark_persistent_enabled.svg new file mode 100644 index 00000000..239d6431 --- /dev/null +++ b/desktop/onionshare/resources/images/dark_persistent_enabled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/dark_server_stopped.svg b/desktop/onionshare/resources/images/dark_server_stopped.svg new file mode 100644 index 00000000..0f315177 --- /dev/null +++ b/desktop/onionshare/resources/images/dark_server_stopped.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/history_completed.png b/desktop/onionshare/resources/images/history_completed.png deleted file mode 100644 index e68fe5a2..00000000 Binary files a/desktop/onionshare/resources/images/history_completed.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/history_completed.svg b/desktop/onionshare/resources/images/history_completed.svg new file mode 100644 index 00000000..b59e8f08 --- /dev/null +++ b/desktop/onionshare/resources/images/history_completed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/history_completed_none.png b/desktop/onionshare/resources/images/history_completed_none.png deleted file mode 100644 index 8dbd6939..00000000 Binary files a/desktop/onionshare/resources/images/history_completed_none.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/history_in_progress.png b/desktop/onionshare/resources/images/history_in_progress.png deleted file mode 100644 index 19694659..00000000 Binary files a/desktop/onionshare/resources/images/history_in_progress.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/history_in_progress.svg b/desktop/onionshare/resources/images/history_in_progress.svg new file mode 100644 index 00000000..137e0533 --- /dev/null +++ b/desktop/onionshare/resources/images/history_in_progress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/history_in_progress_none.png b/desktop/onionshare/resources/images/history_in_progress_none.png deleted file mode 100644 index 2d61dba4..00000000 Binary files a/desktop/onionshare/resources/images/history_in_progress_none.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/history_requests.png b/desktop/onionshare/resources/images/history_requests.png deleted file mode 100644 index 4965744d..00000000 Binary files a/desktop/onionshare/resources/images/history_requests.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/history_requests.svg b/desktop/onionshare/resources/images/history_requests.svg new file mode 100644 index 00000000..c19698a3 --- /dev/null +++ b/desktop/onionshare/resources/images/history_requests.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/history_requests_none.png b/desktop/onionshare/resources/images/history_requests_none.png deleted file mode 100644 index 93a71ef3..00000000 Binary files a/desktop/onionshare/resources/images/history_requests_none.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/light_history_completed_none.svg b/desktop/onionshare/resources/images/light_history_completed_none.svg new file mode 100644 index 00000000..8ef9d629 --- /dev/null +++ b/desktop/onionshare/resources/images/light_history_completed_none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/light_history_icon_toggle.svg b/desktop/onionshare/resources/images/light_history_icon_toggle.svg new file mode 100644 index 00000000..ecdb8bb8 --- /dev/null +++ b/desktop/onionshare/resources/images/light_history_icon_toggle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/light_history_icon_toggle_selected.svg b/desktop/onionshare/resources/images/light_history_icon_toggle_selected.svg new file mode 100644 index 00000000..18d9db26 --- /dev/null +++ b/desktop/onionshare/resources/images/light_history_icon_toggle_selected.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/light_history_in_progress_none.svg b/desktop/onionshare/resources/images/light_history_in_progress_none.svg new file mode 100644 index 00000000..f489d5e7 --- /dev/null +++ b/desktop/onionshare/resources/images/light_history_in_progress_none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/light_history_requests_none.svg b/desktop/onionshare/resources/images/light_history_requests_none.svg new file mode 100644 index 00000000..e89e77fa --- /dev/null +++ b/desktop/onionshare/resources/images/light_history_requests_none.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/light_persistent_enabled.svg b/desktop/onionshare/resources/images/light_persistent_enabled.svg new file mode 100644 index 00000000..77fc5f48 --- /dev/null +++ b/desktop/onionshare/resources/images/light_persistent_enabled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/light_server_stopped.svg b/desktop/onionshare/resources/images/light_server_stopped.svg new file mode 100644 index 00000000..8023ea72 --- /dev/null +++ b/desktop/onionshare/resources/images/light_server_stopped.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/open_folder.png b/desktop/onionshare/resources/images/open_folder.png deleted file mode 100644 index 0a734c41..00000000 Binary files a/desktop/onionshare/resources/images/open_folder.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/open_folder.svg b/desktop/onionshare/resources/images/open_folder.svg new file mode 100644 index 00000000..5981597a --- /dev/null +++ b/desktop/onionshare/resources/images/open_folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/persistent_enabled.png b/desktop/onionshare/resources/images/persistent_enabled.png deleted file mode 100644 index 6c295db5..00000000 Binary files a/desktop/onionshare/resources/images/persistent_enabled.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/server_started.png b/desktop/onionshare/resources/images/server_started.png deleted file mode 100644 index 9c0c3176..00000000 Binary files a/desktop/onionshare/resources/images/server_started.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/server_started.svg b/desktop/onionshare/resources/images/server_started.svg new file mode 100644 index 00000000..8358e726 --- /dev/null +++ b/desktop/onionshare/resources/images/server_started.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/images/server_stopped.png b/desktop/onionshare/resources/images/server_stopped.png deleted file mode 100644 index 5c5b2ec0..00000000 Binary files a/desktop/onionshare/resources/images/server_stopped.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/server_working.png b/desktop/onionshare/resources/images/server_working.png deleted file mode 100644 index e5c8b318..00000000 Binary files a/desktop/onionshare/resources/images/server_working.png and /dev/null differ diff --git a/desktop/onionshare/resources/images/server_working.svg b/desktop/onionshare/resources/images/server_working.svg new file mode 100644 index 00000000..3717cbff --- /dev/null +++ b/desktop/onionshare/resources/images/server_working.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/desktop/onionshare/resources/locale/en.json b/desktop/onionshare/resources/locale/en.json index d279d206..79c9a14c 100644 --- a/desktop/onionshare/resources/locale/en.json +++ b/desktop/onionshare/resources/locale/en.json @@ -99,6 +99,7 @@ "gui_settings_button_help": "Help", "gui_settings_version_label": "You are using OnionShare {}", "gui_settings_help_label": "Need help? See docs.onionshare.org", + "gui_settings_license_label": "OnionShare is licensed under the GPL v3.
Third-party licenses can be viewed here:
https://github.com/onionshare/onionshare/tree/main/licenses", "settings_test_success": "Connected to the Tor controller.\n\nTor version: {}\nSupports ephemeral onion services: {}.\nSupports client authentication: {}.\nSupports next-gen .onion addresses: {}.", "connecting_to_tor": "Connecting to the Tor network", "update_available": "New OnionShare out. Click here to get it.

You are using {} and the latest is {}.", @@ -124,22 +125,22 @@ "gui_receive_url_public_description": "Anyone with this OnionShare address can upload files to your computer using the Tor Browser: ", "gui_chat_url_description": "Anyone with this OnionShare address and private key can join this chat room using the Tor Browser: ", "gui_chat_url_public_description": "Anyone with this OnionShare address can join this chat room using the Tor Browser: ", - "gui_url_label_persistent": "This share will not auto-stop.

Every subsequent share reuses the address. (To use one-time addresses, turn off \"Use persistent address\" in the settings.)", + "gui_url_label_persistent": "This share will not auto-stop.

Every subsequent share reuses the address. (To use one-time addresses, turn off \"Always open this tab when OnionShare is started\" in the settings.)", "gui_url_label_stay_open": "This share will not auto-stop.", "gui_url_label_onetime": "This share will stop after first completion.", - "gui_url_label_onetime_and_persistent": "This share will not auto-stop.

Every subsequent share will reuse the address. (To use one-time addresses, turn off \"Use persistent address\" in the settings.)", + "gui_url_label_onetime_and_persistent": "This share will not auto-stop.

Every subsequent share will reuse the address. (To use one-time addresses, turn off \"Always open this tab when OnionShare is started\" in the settings.)", "gui_url_instructions": "First, send the OnionShare address below:", "gui_url_instructions_public_mode": "Send the OnionShare address below:", "gui_client_auth_instructions": "Next, send the private key to allow access to your OnionShare service:", - "gui_status_indicator_share_stopped": "Ready to share", + "gui_status_indicator_share_stopped": "Stopped", "gui_status_indicator_share_working": "Starting…", "gui_status_indicator_share_scheduled": "Scheduled…", "gui_status_indicator_share_started": "Sharing", - "gui_status_indicator_receive_stopped": "Ready to receive", + "gui_status_indicator_receive_stopped": "Stopped", "gui_status_indicator_receive_working": "Starting…", "gui_status_indicator_receive_scheduled": "Scheduled…", "gui_status_indicator_receive_started": "Receiving", - "gui_status_indicator_chat_stopped": "Ready to chat", + "gui_status_indicator_chat_stopped": "Stopped", "gui_status_indicator_chat_working": "Starting…", "gui_status_indicator_chat_scheduled": "Scheduled…", "gui_status_indicator_chat_started": "Chatting", diff --git a/desktop/onionshare/resources/locale/fa.json b/desktop/onionshare/resources/locale/fa.json index 3d83539d..330792fd 100644 --- a/desktop/onionshare/resources/locale/fa.json +++ b/desktop/onionshare/resources/locale/fa.json @@ -72,16 +72,16 @@ "gui_server_autostop_timer_expired": "زمان‌سنج توقف خودکار به پایان رسید. لطفا برای آغاز هم‌رسانی آن را تنظیم کنید.", "gui_share_url_description": "هر کس با این نشانی OnionShare و کلید خصوصی می‌تواند توسط مرورگر Tor ‌‍‎‏‪‫ فایل‌های شما را بارگیری کند‮:‭", "gui_receive_url_description": "هر کس با این نشانی OnionShare و کلید خصوصی می‌تواند توسط مرورگر Tor ‌‍‎‏‪‫ فایل‌هایی را بر روی رایانه شما بارگذاری کند‮:‭", - "gui_url_label_persistent": "این هم‌رسانی به صورت خودکار متوقف نمی‌شود.

هم‌رسانی‌های بعدی هم از همین نشانی استفاده می‌کنند. (برای استفاده از نشانی‌های یک‌بارمصرف، گزینه «استفاده از آدرس پایا» را در تنظیمات غیرفعال کنید.)", + "gui_url_label_persistent": "این هم‌رسانی به صورت خودکار متوقف نمی‌شود.

هم‌رسانی‌های بعدی هم از همین نشانی استفاده می‌کنند. (برای استفاده از نشانی‌های یک‌بارمصرف، گزینهٔ «گشودن همیشگی این زبانه هنگام آغاز پیازرسان» را در تنظیمات غیرفعال کنید.)", "gui_url_label_stay_open": "این هم‌رسانی به صورت خودکار متوقف خواهد شد.", "gui_url_label_onetime": "این هم‌رسانی پس از اولین تکمیل متوقف خواهد شد.", - "gui_url_label_onetime_and_persistent": "این هم‌رسانی به صورت خودکار متوقّف نخواهد شد.

هم‌رسانی‌های بعدی نیز از همین نشانی استفاده خواهند کرد. (برای استفاده از نشانی‌های یک‌بارمصرف گزینهٔ «استفاده از نشانی پایا» را در تنظیمات خاموش کنید.)", - "gui_status_indicator_share_stopped": "آماده هم‌رسانی", + "gui_url_label_onetime_and_persistent": "این هم‌رسانی به صورت خودکار متوقّف نخواهد شد.

هم‌رسانی‌های بعدی نیز از همین نشانی استفاده خواهند کرد. (برای استفاده از نشانی‌های یک‌بارمصرف گزینهٔ «گشودن همیشگی این زبانه هنگام آغاز پیازرسان» را در تنظیمات خاموش کنید.)", + "gui_status_indicator_share_stopped": "متوقّف", "gui_status_indicator_share_working": "در حال شروع…", "gui_status_indicator_share_started": "در حال هم‌رسانی", - "gui_status_indicator_receive_stopped": "آماده دریافت", - "gui_status_indicator_receive_working": "در حال شروع…", - "gui_status_indicator_receive_started": "درحال دریافت", + "gui_status_indicator_receive_stopped": "متوقّف", + "gui_status_indicator_receive_working": "آغاز کردن…", + "gui_status_indicator_receive_started": "گرفتن", "gui_file_info": "{} پرونده‌ها، {}", "gui_file_info_single": "{} پرونده، {}", "history_in_progress_tooltip": "{} در حال انجام", @@ -122,7 +122,7 @@ "gui_server_autostart_timer_expired": "زمان برنامه‌ریزی شده سپری شده است. لطفا برای شروع هم‌رسانی، آن را تنظیم کنید.", "gui_autostop_timer_cant_be_earlier_than_autostart_timer": "زمان توقف خودکار نمی‌توان مشابه با و یا زودتر از زمان شروع خودکار باشد. لطفا برای شروع هم‌رسانی، آن را تنظیم کنید.", "gui_status_indicator_share_scheduled": "زمان‌بندی‌شده…", - "gui_status_indicator_receive_scheduled": "زمان‌بندی‌شده…", + "gui_status_indicator_receive_scheduled": "زمان‌بسته…", "days_first_letter": "ر", "hours_first_letter": "س", "minutes_first_letter": "د", @@ -156,10 +156,10 @@ "gui_copied_client_auth_title": "کلید خصوصی کپی شد", "gui_hide": "مخفی کردن", "gui_reveal": "آشکار کردن", - "gui_status_indicator_chat_started": "در حال گفتگو", + "gui_status_indicator_chat_started": "گپ زدن", "gui_url_instructions": "ابتدا، نشانی OnionShare را در زیر ارسال کنید:", - "gui_status_indicator_chat_stopped": "آماده برای گفتگو", - "gui_status_indicator_chat_working": "در حال شروع…", + "gui_status_indicator_chat_stopped": "متوقّف", + "gui_status_indicator_chat_working": "آغاز کردن…", "gui_color_mode_changed_notice": "OnionShare را برای رنگ‌های جدید دوباره راه‌اندازی کنید.", "gui_new_tab": "زبانه جدید", "gui_new_tab_tooltip": "بازکردن زبانه جدید", @@ -206,7 +206,7 @@ "gui_chat_url_public_description": "هر کس با این نشانی OnionShare می‌تواند توسط مرورگر Tor ‌‍‎‏‪‫ به این اتاق گفتگو بپیوندد‮:‭", "mode_settings_public_checkbox": "این خدمت عمومی OnionShare است (کلید خصوصی را غیرفعال می‌کند)", "mode_settings_receive_disable_files_checkbox": "غیرفعال سازی بارگذاری فایل‌ها", - "gui_status_indicator_chat_scheduled": "برنامه‌ریزی شد…", + "gui_status_indicator_chat_scheduled": "زمان‌بسته…", "gui_new_tab_website_button": "میزبانی یک وبسایت", "gui_open_folder_error": "نمی‌توان پوشه را با xdg-open باز کرد. فایل اینجاست:{}", "gui_close_tab_warning_receive_description": "بستن ‌زبانه‌ای که در حال درسافت فایل‌ها است؟", @@ -220,7 +220,7 @@ "mode_settings_advanced_toggle_show": "نمایش تنظیمات پیشرفته", "mode_settings_title_label": "عنوان سفارشی", "gui_close_tab_warning_persistent_description": "بستن زبانه دائمی و از دست رفتن نشانی پیازی مورد استفاده آن؟", - "mode_settings_persistent_checkbox": "همیشه موقع شروع OnionShare این زبانه باز شود", + "mode_settings_persistent_checkbox": "گشودن همیشگی این زبانه هنگام آغاز پیازرسان (نشانی پیازی یکسان خواهد ماند)", "mode_settings_receive_webhook_url_checkbox": "استفاده از اعلان Webhook", "mode_settings_website_disable_csp_checkbox": "سرتیتر پیش فرض سیاست امنیت محتوا (به وبسایت شما اجازه استفاده از منابع شخص ثالث را می‌دهد) را ارسال نکنید", "mode_settings_website_custom_csp_checkbox": "ارسال سرتیتر سفارشی سیاست امنیت محتوا", @@ -254,5 +254,6 @@ "gui_general_settings_window_title": "عمومی", "gui_chat_mode_explainer": "حالت گپ می‌گذارد با دیگران به صورت تعاملی در مرورگر تور گپ بزنید.

تاریخچهٔ گپ در OnionShare ذخیره نشده و هنگام بستن مرورگر تور ناپدید خواهد شد.", "waitress_web_server_error": "مشکلی با آغاز کارساز وب وجود دارد", - "gui_close_tab_warning_chat_description": "بستن زبانه‌ای که کارساز گپ را میزبانی می‌کند؟" + "gui_close_tab_warning_chat_description": "بستن زبانه‌ای که کارساز گپ را میزبانی می‌کند؟", + "mode_settings_persistent_autostart_on_launch_checkbox": "آغاز خودکار این خدمت پیازی هنگام آغاز پیازرسان" } diff --git a/desktop/onionshare/resources/locale/hr.json b/desktop/onionshare/resources/locale/hr.json index a1e2e891..008b1902 100644 --- a/desktop/onionshare/resources/locale/hr.json +++ b/desktop/onionshare/resources/locale/hr.json @@ -80,10 +80,10 @@ "gui_share_url_description": "Svatko s ovom OnionShare adresom i privatnim ključem može preuzeti tvoje datoteke koristeći Tor preglednik: ", "gui_website_url_description": "Svatko s ovom OnionShare adresom i privatnim ključem može posjetiti tvoju web-stranicu koristeći Tor preglednik: ", "gui_receive_url_description": "Svatko s ovom OnionShare adresom i privatnim ključem može prenijeti datoteke na tvoje računalo koristeći Tor preglednik: ", - "gui_url_label_persistent": "Ovo se dijeljenje neće automatski prekinuti.

Svako naredno dijeljenje koristit će istu adresu. (Za korištenje jednokratne adrese, u postavkama isključi opciju „Koristi trajnu adresu”.)", + "gui_url_label_persistent": "Ovo se dijeljenje neće automatski prekinuti.

Svako naredno dijeljenje ponovo koristi istu adresu. (Za korištenje jednokratne adrese, u postavkama isključi opciju „Uvijek otvori ovu karticu kad se pokrene OnionShare”.)", "gui_url_label_stay_open": "Ovo se dijeljenje neće automatski prekinuti.", "gui_url_label_onetime": "Ovo će se dijeljenje prekinuti nakon prvog završavanja.", - "gui_url_label_onetime_and_persistent": "Ovo se dijeljenje neće automatski prekinuti.

Svako naredno dijeljenje će koristit će istu adresu. (Za korištenje jednokratne adrese, u postavkama isključi opciju „Koristi trajnu adresu”.)", + "gui_url_label_onetime_and_persistent": "Ovo se dijeljenje neće automatski prekinuti.

Svako naredno dijeljenje će ponovo koristiti istu adresu. (Za korištenje jednokratne adrese, u postavkama isključi opciju „Uvijek otvori ovu karticu kad se pokrene OnionShare”.)", "gui_status_indicator_share_stopped": "Spremno za dijeljenje", "gui_status_indicator_share_working": "Pokretanje …", "gui_status_indicator_share_scheduled": "Planirano …", @@ -138,7 +138,7 @@ "mode_settings_autostop_timer_checkbox": "Prekini onion uslugu u planirano vrijeme", "mode_settings_autostart_timer_checkbox": "Pokreni onion uslugu u planirano vrijeme", "mode_settings_public_checkbox": "Ovo je javna OnionShare usluga (deaktivira privatni ključ)", - "mode_settings_persistent_checkbox": "Uvijek otvori ovu karticu kad se pokrene OnionShare", + "mode_settings_persistent_checkbox": "Uvijek otvori ovu karticu kad se pokrene OnionShare (onion adresa će ostati ista)", "mode_settings_advanced_toggle_hide": "Sakrij napredne postavke", "mode_settings_advanced_toggle_show": "Prikaži napredne postavke", "gui_quit_warning_cancel": "Odustani", @@ -254,5 +254,6 @@ "gui_autoconnect_circumventing_censorship_starting_meek": "Uspostavljanje meek mosta za domain-fronting …", "gui_dragdrop_sandbox_flatpak": "Kako bi Flatpak sandbox bio sigurniji, funkcija povlačenja i ispuštanja nije podržana. Umjesto toga koristi gumbe „Dodaj datoteke” i „Dodaj mapu” za biranje datoteka.", "gui_close_tab_warning_chat_description": "Zatvoriti karticu koja hostira server za razgovore?", - "gui_chat_mode_explainer": "Modus razgovora omogućuje interaktivni razgovor s drugima u Tor pregledniku.

Povijest razgovora se ne sprema u OnionShareu. Povijest razgovora će nestati kada zatvoriš Tor preglednik." + "gui_chat_mode_explainer": "Modus razgovora omogućuje interaktivni razgovor s drugima u Tor pregledniku.

Povijest razgovora se ne sprema u OnionShareu. Povijest razgovora će nestati kada zatvoriš Tor preglednik.", + "mode_settings_persistent_autostart_on_launch_checkbox": "Automatski pokreni ovu onion uslugu kad se pokrene OnionShare" } diff --git a/desktop/onionshare/resources/locale/is.json b/desktop/onionshare/resources/locale/is.json index 6343f57c..5a90c264 100644 --- a/desktop/onionshare/resources/locale/is.json +++ b/desktop/onionshare/resources/locale/is.json @@ -75,10 +75,10 @@ "gui_url_label_stay_open": "Deiling þessarar sameignar mun ekki stöðvast sjálfvirkt.", "gui_url_label_onetime": "Deiling þessarar sameignar mun stöðvast eftir fyrstu klárun.", "gui_url_label_onetime_and_persistent": "Deiling þessarar sameignar mun ekki stöðvast sjálfvirkt.

Allar deilingar sem á eftir koma munu endurnýta vistfangið. (Til að nota eins-skiptis vistföng skaltu slökkva á \"Nota viðvarandi vistföng\" í stillingunum.)", - "gui_status_indicator_share_stopped": "Tilbúið til að deila", + "gui_status_indicator_share_stopped": "Stöðvað", "gui_status_indicator_share_working": "Ræsi…", "gui_status_indicator_share_started": "Deiling", - "gui_status_indicator_receive_stopped": "Tilbúið til að taka við", + "gui_status_indicator_receive_stopped": "Stöðvað", "gui_status_indicator_receive_working": "Ræsi…", "gui_status_indicator_receive_started": "Tek á móti", "gui_file_info": "{} skrár, {}", @@ -153,7 +153,7 @@ "gui_close_tab_warning_title": "Loka flipa?", "gui_new_tab_website_button": "Hýsa vefsvæði", "gui_new_tab": "Nýr flipi", - "gui_close_tab_warning_close": "Ókei", + "gui_close_tab_warning_close": "Í lagi", "gui_close_tab_warning_cancel": "Hætta við", "mode_settings_autostop_timer_checkbox": "Stöðva onion-þjónustu á áætluðum tíma", "gui_receive_flatpak_data_dir": "Þar sem þú settir OnionShare upp með því að nota Flatpak, þá verður þú að vista skrár í möppu undir ~/OnionShare.", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_started": "Spjalla", "gui_status_indicator_chat_scheduled": "Áætlað…", "gui_status_indicator_chat_working": "Ræsi…", - "gui_status_indicator_chat_stopped": "Tilbúið í spjall", + "gui_status_indicator_chat_stopped": "Stöðvað", "gui_please_wait_no_button": "Ræsi…", "gui_settings_theme_dark": "Dökkt", "gui_settings_theme_light": "Ljóst", diff --git a/desktop/onionshare/resources/locale/it.json b/desktop/onionshare/resources/locale/it.json index a4ab3cf3..176c0d72 100644 --- a/desktop/onionshare/resources/locale/it.json +++ b/desktop/onionshare/resources/locale/it.json @@ -165,7 +165,7 @@ "mode_settings_receive_data_dir_browse_button": "Naviga", "mode_settings_autostop_timer_checkbox": "Interrompere il servizio onion all'ora pianificata", "mode_settings_autostart_timer_checkbox": "Avviare il servizio onion all'ora pianificata", - "mode_settings_persistent_checkbox": "Salva questa scheda e aprirla automaticamente quando apro OnionShare", + "mode_settings_persistent_checkbox": "Aprire sempre questa scheda quando si avvia OnionShare (l'indirizzo Onion rimarrà lo stesso)", "gui_quit_warning_cancel": "Annulla", "gui_close_tab_warning_cancel": "Annulla", "gui_close_tab_warning_persistent_description": "Questa scheda è persistente. Se lo chiudi perderai l'indirizzo onion che sta usando. Sei sicuro di volerlo chiudere?", @@ -254,5 +254,6 @@ "gui_status_indicator_chat_started": "\"In chat\"", "mode_settings_receive_disable_text_checkbox": "\"Disabilita l'invio di testo\"", "gui_server_doesnt_support_stealth": "Spiacenti, questa versione di Tor non supporta la modalità stealth (autenticazione del client). Prova con una versione più recente di Tor o utilizza la modalità 'pubblica' se non è necessario che sia privata.", - "gui_chat_mode_explainer": "La modalità chat ti consente di chattare in modo interattivo con gli altri, in Tor Browser.

La cronologia chat non viene archiviata in OnionShare. La cronologia della chat scomparirà quando chiudi Tor Browser." + "gui_chat_mode_explainer": "La modalità chat ti consente di chattare in modo interattivo con gli altri, in Tor Browser.

La cronologia chat non viene archiviata in OnionShare. La cronologia della chat scomparirà quando chiudi Tor Browser.", + "mode_settings_persistent_autostart_on_launch_checkbox": "Avvia automaticamente questo servizio onion all'avvio di OnionShare" } diff --git a/desktop/onionshare/resources/locale/pl.json b/desktop/onionshare/resources/locale/pl.json index 97d8d6b8..e7d0f679 100644 --- a/desktop/onionshare/resources/locale/pl.json +++ b/desktop/onionshare/resources/locale/pl.json @@ -72,14 +72,14 @@ "gui_server_autostop_timer_expired": "Czas automatycznego zatrzymania już upłynął. Dostosuj go, aby rozpocząć udostępnianie.", "gui_share_url_description": "Każdy z tym adresem OnionShare oraz kluczem prywatnym może pobrać Twoje pliki za pomocą przeglądarki Tor Browser: ", "gui_receive_url_description": "Każdy z tym adresem OnionShare oraz kluczem prywatnym może przesyłać pliki na Twój komputer za pomocą przeglądarki Tor Browser: ", - "gui_url_label_persistent": "Ten udział nie zatrzyma się automatycznie.

Każdy kolejny udział ponownie użyje tego adresu. (Aby użyć adresów jednorazowych, wyłącz w ustawieniach „Użyj stałego adresu”.)", + "gui_url_label_persistent": "Ten udział nie zatrzyma się automatycznie.

Każdy kolejny udział ponownie użyje tego adresu. (Aby używać adresów jednorazowych, wyłącz opcję „Zawsze otwieraj tę kartę po uruchomieniu OnionShare” w ustawieniach).", "gui_url_label_stay_open": "Ten udział nie zostanie automatycznie zatrzymany.", "gui_url_label_onetime": "Ten udział zatrzyma się po pierwszym zakończeniu.", - "gui_url_label_onetime_and_persistent": "Ten udział nie zatrzyma się automatycznie.

Każdy kolejny udział ponownie wykorzysta adres. (Aby użyć adresów jednorazowych, wyłącz w ustawieniach „Użyj stałego adresu”.)", - "gui_status_indicator_share_stopped": "Gotowy do udostępniania", + "gui_url_label_onetime_and_persistent": "Ten udział nie zatrzyma się automatycznie.

Każdy kolejny udział ponownie wykorzysta adres. (Aby używać adresów jednorazowych, wyłącz opcję „Zawsze otwieraj tę kartę po uruchomieniu OnionShare” w ustawieniach).", + "gui_status_indicator_share_stopped": "Zatrzymano", "gui_status_indicator_share_working": "Rozpoczynanie…", "gui_status_indicator_share_started": "Udostępnianie", - "gui_status_indicator_receive_stopped": "Gotowy do odbioru", + "gui_status_indicator_receive_stopped": "Zatrzymano", "gui_status_indicator_receive_working": "Rozpoczynanie…", "gui_status_indicator_receive_started": "Odbieram", "gui_file_info": "{} pliki/ów, {}", @@ -190,7 +190,7 @@ "gui_settings_theme_auto": "Automatyczny", "gui_settings_theme_label": "Motyw", "gui_status_indicator_chat_started": "Czatuje", - "gui_status_indicator_chat_stopped": "Gotowy do rozmowy", + "gui_status_indicator_chat_stopped": "Zatrzymano", "gui_client_auth_instructions": "Następnie wyślij klucz prywatny, by umożliwić dostęp do Twojego serwisu OnionShare:", "gui_url_instructions_public_mode": "Wyślij poniższy adres OnionShare:", "gui_url_instructions": "Najpierw wyślij poniższy adres OnionShare:", @@ -255,5 +255,6 @@ "waitress_web_server_error": "Wystąpił problem z uruchomieniem serwera WWW", "gui_close_tab_warning_chat_description": "Zamknąć kartę hostującą serwer czatu?", "gui_chat_mode_explainer": "Tryb czatu umożliwia interaktywną rozmowę z innymi osobami w Tor Browser.

Historia czatów nie jest przechowywana w OnionShare. Historia czatów zniknie, gdy zamkniesz Tor Browser.", - "mode_settings_persistent_autostart_on_launch_checkbox": "Automatycznie uruchom tę usługę onion podczas uruchamiania OnionShare" + "mode_settings_persistent_autostart_on_launch_checkbox": "Automatycznie uruchom tę usługę onion podczas uruchamiania OnionShare", + "gui_settings_license_label": "OnionShare jest licencjonowany na podstawie licencji GPL v3.
Licencje stron trzecich można przeglądać tutaj:
https://github.com/onionshare/onionshare/tree/main/licenses" } diff --git a/desktop/onionshare/resources/locale/sq.json b/desktop/onionshare/resources/locale/sq.json index 6267c5a3..105f08f7 100644 --- a/desktop/onionshare/resources/locale/sq.json +++ b/desktop/onionshare/resources/locale/sq.json @@ -124,22 +124,22 @@ "gui_receive_url_public_description": "Cilido me këtë adresë OnionShare mundet të ngarkojë kartela në kompjuterin tuaj duke përdorur Shfletuesin Tor: ", "gui_chat_url_description": "Cilido me këtë adresë OnionShare dhe kyç privat mundet të hyjë në këtë dhomë fjalosjesh duke përdorur Shfletuesin Tor: ", "gui_chat_url_public_description": "Cilido me këtë adresë OnionShare mundet të hyjë në këtë dhomë fjalosjesh duke përdorur Shfletuesin Tor: ", - "gui_url_label_persistent": "Kjo ndarje me të tjerë s’do të vetë-ndalet.

Çdo ndarje pasuese ripërdor adresën. (Që të përdoren adresa vetëm për një herë, çaktivizoni “Përdor adresë të qëndrueshme”, te rregullimet.)", + "gui_url_label_persistent": "Kjo ndarje me të tjerë s’do të vetë-ndalet.

Çdo ndarje pasuese ripërdor adresën. (Që të përdoren adresa vetëm për një herë, çaktivizoni “Hap përherë këtë skedë, kur niset OnionShare-i”, te rregullimet.)", "gui_url_label_stay_open": "Kjo ndarje me të tjerë s’do të vetë-ndalet.", "gui_url_label_onetime": "Kjo ndarje me të tjerë do të ndalet pas plotësimit të vet të parë.", - "gui_url_label_onetime_and_persistent": "Kjo ndarje me të tjerë s’do të vetë-ndalet.

Çdo ndarje pasuese do të ripërdorë adresën. (Që të përdoren adresa vetëm për një herë, çaktivizoni “Përdor adresë të qëndrueshme”, te rregullimet.)", + "gui_url_label_onetime_and_persistent": "Kjo ndarje me të tjerë s’do të vetë-ndalet.

Çdo ndarje pasuese do të ripërdorë adresën. (Që të përdoren adresa vetëm për një herë, çaktivizoni “Hap përherë këtë skedë, kur niset OnionShare-i”, te rregullimet.)", "gui_url_instructions": "Së pari, dërgoni adresën OnionShare më poshtë:", "gui_url_instructions_public_mode": "Dërgo adresën OnionShare më poshtë:", "gui_client_auth_instructions": "Më pas, dërgoni kyçin privat që të lejoni hyrje te shërbimi juaj OnionShare:", - "gui_status_indicator_share_stopped": "Gati për ndarje me të tjerë", + "gui_status_indicator_share_stopped": "U ndal", "gui_status_indicator_share_working": "Po niset…", "gui_status_indicator_share_scheduled": "Vënë në plan…", "gui_status_indicator_share_started": "Ndarje me të tjerë", - "gui_status_indicator_receive_stopped": "Gati për të marrë", + "gui_status_indicator_receive_stopped": "U ndal", "gui_status_indicator_receive_working": "Po niset…", "gui_status_indicator_receive_scheduled": "Vënë në plan…", "gui_status_indicator_receive_started": "Po merret", - "gui_status_indicator_chat_stopped": "Gati për fjalosje", + "gui_status_indicator_chat_stopped": "U ndal", "gui_status_indicator_chat_working": "Po niset…", "gui_status_indicator_chat_scheduled": "Vënë në plan…", "gui_status_indicator_chat_started": "Po fjaloset", @@ -255,5 +255,6 @@ "waitress_web_server_error": "Pati një problem me nisjen e shërbyesit", "gui_close_tab_warning_chat_description": "Të mbyllet skeda që strehon një shërbyes fjalosjeje?", "gui_chat_mode_explainer": "Mënyra fjalosje ju lejon të bisedoni në mënyrë ndërvepruese me të tjerë, në Shfletuesin Tor.

Historiku i fjalosjes nuk depozitohet në OnionShare. Historiku i fjalosjes do të zhduket, kur të mbyllni Shfletuesin Tor.", - "mode_settings_persistent_autostart_on_launch_checkbox": "Nise automatikisht këtë shërbim Onion, kur niset OnionShare" + "mode_settings_persistent_autostart_on_launch_checkbox": "Nise automatikisht këtë shërbim Onion, kur niset OnionShare", + "gui_settings_license_label": "OnionShare licencohet sipas GPL v3.
Licenca palësh të treta mund të shihen këtu:
https://github.com/onionshare/onionshare/tree/main/licenses" } diff --git a/desktop/onionshare/resources/locale/zh_Hans.json b/desktop/onionshare/resources/locale/zh_Hans.json index 0e181549..8f10931f 100644 --- a/desktop/onionshare/resources/locale/zh_Hans.json +++ b/desktop/onionshare/resources/locale/zh_Hans.json @@ -72,14 +72,14 @@ "gui_server_autostop_timer_expired": "自动停止定时器计时已到。请对其调整以开始共享。", "gui_share_url_description": "任何人只要有这个 OnionShare 地址和私钥,都可以用 Tor Browser 下载你的文件:", "gui_receive_url_description": "任何人只要有 OnionShare 地址和私钥,都可以用 Tor 浏览器上传文件到你的计算机:", - "gui_url_label_persistent": "这个共享不会自动停止。

每个后续共享都会重复使用这个地址。(要使用一次性地址,请在设置中关闭“使用持久地址”。)", + "gui_url_label_persistent": "此共享不会自动停止。

每个后续共享都会重复使用此地址。(要使用一次性地址,请在设置中关闭“启动 OnionShare 时始终打开此标签页”。)", "gui_url_label_stay_open": "这个共享不会自动停止。", "gui_url_label_onetime": "这个共享将在初次完成后停止。", - "gui_url_label_onetime_and_persistent": "这个共享不会自动停止。

每个后续共享都会重复使用这个地址。(要使用一次性地址,请在设置中关闭“使用持久地址”。)", - "gui_status_indicator_share_stopped": "已准备好共享", + "gui_url_label_onetime_and_persistent": "此共享不会自动停止。

每个后续共享都将重复使用此地址。(要使用一次性地址,请在设置中关闭“启动 OnionShare 时始终打开此标签页”。)", + "gui_status_indicator_share_stopped": "已停止", "gui_status_indicator_share_working": "正在开始…", "gui_status_indicator_share_started": "共享中", - "gui_status_indicator_receive_stopped": "已准备好接收", + "gui_status_indicator_receive_stopped": "已停止", "gui_status_indicator_receive_working": "正在开始…", "gui_status_indicator_receive_started": "正在接收", "gui_file_info": "{} 个文件,{}", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_started": "正在聊天", "gui_status_indicator_chat_scheduled": "已计划…", "gui_status_indicator_chat_working": "启动中…", - "gui_status_indicator_chat_stopped": "准备好聊天", + "gui_status_indicator_chat_stopped": "已停止", "gui_please_wait_no_button": "启动中…", "gui_settings_theme_dark": "深色", "gui_settings_theme_light": "浅色", @@ -255,5 +255,6 @@ "waitress_web_server_error": "启动 Web 服务器时出现问题", "gui_close_tab_warning_chat_description": "是否关闭托管聊天服务的标签页?", "gui_chat_mode_explainer": "聊天模式可让您在 Tor 浏览器中与其他人进行互动聊天。

OnionShare 中不存储聊天记录。关闭 Tor 浏览器后,聊天记录将消失。", - "mode_settings_persistent_autostart_on_launch_checkbox": "OnionShare 启动时自动启动此洋葱服务" + "mode_settings_persistent_autostart_on_launch_checkbox": "OnionShare 启动时自动启动此洋葱服务", + "gui_settings_license_label": "OnionShare 采用 GPL v3 许可。可在此处查看第三方许可:
https://github.com/onionshare/onionshare/tree/main/licenses" } diff --git a/desktop/onionshare/settings_tab.py b/desktop/onionshare/settings_tab.py index ad911412..16bf873e 100644 --- a/desktop/onionshare/settings_tab.py +++ b/desktop/onionshare/settings_tab.py @@ -126,6 +126,11 @@ class SettingsTab(QtWidgets.QWidget): help_label.setTextInteractionFlags(QtCore.Qt.TextBrowserInteraction) help_label.setOpenExternalLinks(True) + license_label = QtWidgets.QLabel(strings._("gui_settings_license_label")) + license_label.setAlignment(QtCore.Qt.AlignHCenter) + license_label.setTextInteractionFlags(QtCore.Qt.TextBrowserInteraction) + license_label.setOpenExternalLinks(True) + # Buttons self.save_button = QtWidgets.QPushButton(strings._("gui_settings_button_save")) self.save_button.clicked.connect(self.save_clicked) @@ -146,6 +151,8 @@ class SettingsTab(QtWidgets.QWidget): layout.addWidget(version_label) layout.addWidget(help_label) layout.addSpacing(20) + layout.addWidget(license_label) + layout.addSpacing(20) layout.addLayout(buttons_layout) layout.addStretch() diff --git a/desktop/onionshare/tab/mode/history.py b/desktop/onionshare/tab/mode/history.py index ad8af099..5e4b0304 100644 --- a/desktop/onionshare/tab/mode/history.py +++ b/desktop/onionshare/tab/mode/history.py @@ -201,9 +201,9 @@ class ReceiveHistoryItemFile(QtWidgets.QWidget): self.filesize_label.hide() # Folder button - folder_pixmap = QtGui.QPixmap.fromImage( - QtGui.QImage(GuiCommon.get_resource_path("images/open_folder.png")) - ) + image = QtGui.QImage(GuiCommon.get_resource_path("images/open_folder.svg")) + scaled_image = image.scaledToHeight(15, QtCore.Qt.SmoothTransformation) + folder_pixmap = QtGui.QPixmap.fromImage(scaled_image) folder_icon = QtGui.QIcon(folder_pixmap) self.folder_button = QtWidgets.QPushButton() self.folder_button.clicked.connect(self.open_folder) @@ -788,10 +788,10 @@ class History(QtWidgets.QWidget): Update the 'completed' widget. """ if self.completed_count == 0: - image = GuiCommon.get_resource_path("images/history_completed_none.png") + image = GuiCommon.get_resource_path(f"images/{self.common.gui.color_mode}_history_completed_none.svg") else: - image = GuiCommon.get_resource_path("images/history_completed.png") - self.completed_label.setText(f' {self.completed_count}') + image = GuiCommon.get_resource_path("images/history_completed.svg") + self.completed_label.setText(f' {self.completed_count}') self.completed_label.setToolTip( strings._("history_completed_tooltip").format(self.completed_count) ) @@ -801,12 +801,12 @@ class History(QtWidgets.QWidget): Update the 'in progress' widget. """ if self.in_progress_count == 0: - image = GuiCommon.get_resource_path("images/history_in_progress_none.png") + image = GuiCommon.get_resource_path(f"images/{self.common.gui.color_mode}_history_in_progress_none.svg") else: - image = GuiCommon.get_resource_path("images/history_in_progress.png") + image = GuiCommon.get_resource_path("images/history_in_progress.svg") self.in_progress_label.setText( - f' {self.in_progress_count}' + f' {self.in_progress_count}' ) self.in_progress_label.setToolTip( strings._("history_in_progress_tooltip").format(self.in_progress_count) @@ -817,11 +817,11 @@ class History(QtWidgets.QWidget): Update the 'web requests' widget. """ if self.requests_count == 0: - image = GuiCommon.get_resource_path("images/history_requests_none.png") + image = GuiCommon.get_resource_path(f"images/{self.common.gui.color_mode}_history_requests_none.svg") else: - image = GuiCommon.get_resource_path("images/history_requests.png") + image = GuiCommon.get_resource_path("images/history_requests.svg") - self.requests_label.setText(f' {self.requests_count}') + self.requests_label.setText(f' {self.requests_count}') self.requests_label.setToolTip( strings._("history_requests_tooltip").format(self.requests_count) ) diff --git a/desktop/onionshare/tab/mode/receive_mode/__init__.py b/desktop/onionshare/tab/mode/receive_mode/__init__.py index bfa85459..45b20c70 100644 --- a/desktop/onionshare/tab/mode/receive_mode/__init__.py +++ b/desktop/onionshare/tab/mode/receive_mode/__init__.py @@ -160,9 +160,9 @@ class ReceiveMode(Mode): self.common, self, self.history, - QtGui.QIcon(GuiCommon.get_resource_path("images/receive_icon_toggle.png")), + QtGui.QIcon(GuiCommon.get_resource_path(f"images/{self.common.gui.color_mode}_history_icon_toggle.svg")), QtGui.QIcon( - GuiCommon.get_resource_path("images/receive_icon_toggle_selected.png") + GuiCommon.get_resource_path(f"images/{self.common.gui.color_mode}_history_icon_toggle_selected.svg") ), ) diff --git a/desktop/onionshare/tab/mode/share_mode/__init__.py b/desktop/onionshare/tab/mode/share_mode/__init__.py index daa35a4d..d8a515dd 100644 --- a/desktop/onionshare/tab/mode/share_mode/__init__.py +++ b/desktop/onionshare/tab/mode/share_mode/__init__.py @@ -135,9 +135,9 @@ class ShareMode(Mode): self.common, self, self.history, - QtGui.QIcon(GuiCommon.get_resource_path("images/share_icon_toggle.png")), + QtGui.QIcon(GuiCommon.get_resource_path(f"images/{self.common.gui.color_mode}_history_icon_toggle.svg")), QtGui.QIcon( - GuiCommon.get_resource_path("images/share_icon_toggle_selected.png") + GuiCommon.get_resource_path(f"images/{self.common.gui.color_mode}_history_icon_toggle_selected.svg") ), ) diff --git a/desktop/onionshare/tab/mode/website_mode/__init__.py b/desktop/onionshare/tab/mode/website_mode/__init__.py index 47614cae..3faab913 100644 --- a/desktop/onionshare/tab/mode/website_mode/__init__.py +++ b/desktop/onionshare/tab/mode/website_mode/__init__.py @@ -157,9 +157,9 @@ class WebsiteMode(Mode): self.common, self, self.history, - QtGui.QIcon(GuiCommon.get_resource_path("images/share_icon_toggle.png")), + QtGui.QIcon(GuiCommon.get_resource_path(f"images/{self.common.gui.color_mode}_history_icon_toggle.svg")), QtGui.QIcon( - GuiCommon.get_resource_path("images/share_icon_toggle_selected.png") + GuiCommon.get_resource_path(f"images/{self.common.gui.color_mode}_history_icon_toggle_selected.svg") ), ) diff --git a/desktop/onionshare/tab/tab.py b/desktop/onionshare/tab/tab.py index ab6cc3e5..9e5dda20 100644 --- a/desktop/onionshare/tab/tab.py +++ b/desktop/onionshare/tab/tab.py @@ -217,14 +217,13 @@ class Tab(QtWidgets.QWidget): # Persistent image self.persistent_image_label = QtWidgets.QLabel() - self.persistent_image_label.setPixmap( - QtGui.QPixmap.fromImage( - QtGui.QImage( - GuiCommon.get_resource_path("images/persistent_enabled.png") - ) + image = QtGui.QImage( + GuiCommon.get_resource_path( + f"images/{self.common.gui.color_mode}_persistent_enabled.svg" ) ) - self.persistent_image_label.setFixedSize(20, 20) + scaled_image = image.scaledToHeight(15, QtCore.Qt.SmoothTransformation) + self.persistent_image_label.setPixmap(QtGui.QPixmap.fromImage(scaled_image)) # Create the close warning dialog -- the dialog widget needs to be in the constructor # in order to test it @@ -480,23 +479,31 @@ class Tab(QtWidgets.QWidget): ) def set_server_status_indicator_stopped(self, label_text): - self.change_icon.emit(self.tab_id, "images/server_stopped.png") + self.change_icon.emit( + self.tab_id, f"images/{self.common.gui.color_mode}_server_stopped.svg" + ) + image = self.status_bar.server_status_image_stopped + scaled_image = image.scaledToHeight(15, QtCore.Qt.SmoothTransformation) self.status_bar.server_status_image_label.setPixmap( - QtGui.QPixmap.fromImage(self.status_bar.server_status_image_stopped) + QtGui.QPixmap.fromImage(scaled_image) ) self.status_bar.server_status_label.setText(label_text) def set_server_status_indicator_working(self, label_text): - self.change_icon.emit(self.tab_id, "images/server_working.png") + self.change_icon.emit(self.tab_id, "images/server_working.svg") + image = self.status_bar.server_status_image_working + scaled_image = image.scaledToHeight(15, QtCore.Qt.SmoothTransformation) self.status_bar.server_status_image_label.setPixmap( - QtGui.QPixmap.fromImage(self.status_bar.server_status_image_working) + QtGui.QPixmap.fromImage(scaled_image) ) self.status_bar.server_status_label.setText(label_text) def set_server_status_indicator_started(self, label_text): - self.change_icon.emit(self.tab_id, "images/server_started.png") + self.change_icon.emit(self.tab_id, "images/server_started.svg") + image = self.status_bar.server_status_image_started + scaled_image = image.scaledToHeight(15, QtCore.Qt.SmoothTransformation) self.status_bar.server_status_image_label.setPixmap( - QtGui.QPixmap.fromImage(self.status_bar.server_status_image_started) + QtGui.QPixmap.fromImage(scaled_image) ) self.status_bar.server_status_label.setText(label_text) diff --git a/desktop/setup-freeze.py b/desktop/setup-freeze.py index d311a942..d6e81e81 100644 --- a/desktop/setup-freeze.py +++ b/desktop/setup-freeze.py @@ -35,7 +35,12 @@ with open(os.path.join("..", "cli", "onionshare_cli", "resources", "version.txt" version = version[0:-5] # Build -include_files = [(os.path.join("..", "LICENSE.txt"), "LICENSE.txt")] +include_files = [ + (os.path.join("..", "LICENSE.txt"), "LICENSE.txt"), + (os.path.join("..", "licenses", "license-obfs4.txt"), "license-obfs4.txt"), + (os.path.join("..", "licenses", "license-snowflake.txt"), "license-snowflake.txt"), + (os.path.join("..", "licenses", "license-tor.txt"), "license-tor.txt") +] if platform.system() == "Windows": include_msvcr = True diff --git a/desktop/tests/test_gui_tabs.py b/desktop/tests/test_gui_tabs.py index b0e24666..72cadca5 100644 --- a/desktop/tests/test_gui_tabs.py +++ b/desktop/tests/test_gui_tabs.py @@ -132,7 +132,7 @@ class TestTabs(GuiBaseTest): self.assertFalse(self.gui.tabs.widget(1).new_tab.isVisible()) self.assertTrue(self.gui.tabs.widget(1).share_mode.isVisible()) self.assertEqual( - self.gui.status_bar.server_status_label.text(), "Ready to share" + self.gui.status_bar.server_status_label.text(), "Stopped" ) # New tab, receive files @@ -141,7 +141,7 @@ class TestTabs(GuiBaseTest): self.assertFalse(self.gui.tabs.widget(2).new_tab.isVisible()) self.assertTrue(self.gui.tabs.widget(2).receive_mode.isVisible()) self.assertEqual( - self.gui.status_bar.server_status_label.text(), "Ready to receive" + self.gui.status_bar.server_status_label.text(), "Stopped" ) # New tab, publish website @@ -150,7 +150,7 @@ class TestTabs(GuiBaseTest): self.assertFalse(self.gui.tabs.widget(3).new_tab.isVisible()) self.assertTrue(self.gui.tabs.widget(3).website_mode.isVisible()) self.assertEqual( - self.gui.status_bar.server_status_label.text(), "Ready to share" + self.gui.status_bar.server_status_label.text(), "Stopped" ) # New tab, chat mode @@ -159,7 +159,7 @@ class TestTabs(GuiBaseTest): self.assertFalse(self.gui.tabs.widget(4).new_tab.isVisible()) self.assertTrue(self.gui.tabs.widget(4).chat_mode.isVisible()) self.assertEqual( - self.gui.status_bar.server_status_label.text(), "Ready to chat" + self.gui.status_bar.server_status_label.text(), "Stopped" ) # Close tabs diff --git a/docs/gettext/.doctrees/advanced.doctree b/docs/gettext/.doctrees/advanced.doctree index da2cb3f1..3e8c8b94 100644 Binary files a/docs/gettext/.doctrees/advanced.doctree and b/docs/gettext/.doctrees/advanced.doctree differ diff --git a/docs/gettext/.doctrees/develop.doctree b/docs/gettext/.doctrees/develop.doctree index a127cd8f..61c24c91 100644 Binary files a/docs/gettext/.doctrees/develop.doctree and b/docs/gettext/.doctrees/develop.doctree differ diff --git a/docs/gettext/.doctrees/environment.pickle b/docs/gettext/.doctrees/environment.pickle index b4ec79d1..506018bf 100644 Binary files a/docs/gettext/.doctrees/environment.pickle and b/docs/gettext/.doctrees/environment.pickle differ diff --git a/docs/gettext/.doctrees/features.doctree b/docs/gettext/.doctrees/features.doctree index f5e1edbc..fef7e33d 100644 Binary files a/docs/gettext/.doctrees/features.doctree and b/docs/gettext/.doctrees/features.doctree differ diff --git a/docs/gettext/.doctrees/help.doctree b/docs/gettext/.doctrees/help.doctree index aa2f4f1e..2bfcc275 100644 Binary files a/docs/gettext/.doctrees/help.doctree and b/docs/gettext/.doctrees/help.doctree differ diff --git a/docs/gettext/.doctrees/index.doctree b/docs/gettext/.doctrees/index.doctree index 0ebaf104..3e69d871 100644 Binary files a/docs/gettext/.doctrees/index.doctree and b/docs/gettext/.doctrees/index.doctree differ diff --git a/docs/gettext/.doctrees/install.doctree b/docs/gettext/.doctrees/install.doctree index 9ae25a82..4ffb92be 100644 Binary files a/docs/gettext/.doctrees/install.doctree and b/docs/gettext/.doctrees/install.doctree differ diff --git a/docs/gettext/.doctrees/security.doctree b/docs/gettext/.doctrees/security.doctree index 399685d8..a0f8f2e9 100644 Binary files a/docs/gettext/.doctrees/security.doctree and b/docs/gettext/.doctrees/security.doctree differ diff --git a/docs/gettext/.doctrees/tor.doctree b/docs/gettext/.doctrees/tor.doctree index 09905fd3..aed2b263 100644 Binary files a/docs/gettext/.doctrees/tor.doctree and b/docs/gettext/.doctrees/tor.doctree differ diff --git a/docs/gettext/advanced.pot b/docs/gettext/advanced.pot index 5037e44f..d7015829 100644 --- a/docs/gettext/advanced.pot +++ b/docs/gettext/advanced.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-12 14:33+1100\n" +"POT-Creation-Date: 2025-02-18 17:24+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -243,3 +243,487 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "OnionShare stores its settings in a JSON file. Both the CLI and the Desktop versions use this configuration file. The CLI also lets you specify a path to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "Below are the configuration file parameters and what they mean. If your configuration file has other parameters not listed here, they may be obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 +#: ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 +#: ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 +#: ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 +#: ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 +#: ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 +#: ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 +#: ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 +#: ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 +#: ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 +#: ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 +#: ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 +#: ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 +#: ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 +#: ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 +#: ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 +#: ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 +#: ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 +#: ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 +#: ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "The way in which OnionShare connects to Tor. Valid options are 'bundled', 'automatic' (use Tor Browser's Tor connection), 'control_port' or 'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "The IP address of Tor's Control port, if ``connection_type`` is set to 'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 +#: ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "The port number of Tor's Control port, if ``connection_type`` is set to 'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to 'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "The port number of Tor's SOCKS proxy, if ``connection_type`` is set to 'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "The path to Tor's socket file, if ``connection_type`` is set to 'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "If access to Tor's control port requires a password, this can be set to 'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "If access to Tor's control port requires a password, and ``auth_type`` is set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 +#: ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 +#: ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 +#: ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 +#: ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 +#: ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 +#: ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 +#: ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "Whether OnionShare should automatically connect to Tor when it starts. Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "Whether OnionShare should automatically check for updates (over Tor). This setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "When ``bridges_enabled`` is True, where to load bridges from. Options are \"built-in\" (bridges shipped with OnionShare and which may get updated from Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "When ``bridges_type`` is set to \"built-in\", this specifies which type of bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or \"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "When ``bridges_type`` is set to \"custom\", the bridges specified by the user are stored here. Separate each bridge line in the string with '\\n'. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 +#: ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "If the user has defined any tabs as 'saved' (meaning that they are persistent each time OnionShare starts, and their onion address doesn't change), these are given a random identifier which gets listed here. The persistent onion is stored as a JSON file with the same name as this identifier, in a subfolder of the OnionShare configuration folder called 'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "The locale used in OnionShare. Default: None (which is the same as 'en'). For valid locale codes, see 'available_locales' in https://github.com/onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "The theme for the OnionShare desktop app. Valid options are 0 (automatically detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "As described above, each 'persistent' onion has parameters of its own which are stored in its own JSON file. The path to this file can be specified for the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "Below are the configuration file parameters for a persistent onion and what they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "The mode used by this persistent onion. Options are \"share\", \"receive\", \"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "Whether persistence is enabled for this onion. When the persistent option is unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "Whether to automatically start this persistent onion when OnionShare starts and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "An optional custom title for displaying on the onion service. Default: null (\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "Whether the onion service can be accessed with or without a Private Key (Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "Whether the onion service is configured to start at a specific time. The time can be set in the desktop app or specified in seconds with ``--auto-start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "Whether the onion service is configured to stop at a specific time. The time can be set in the desktop app or specified in seconds with ``--auto-stop-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "The 32-character onion service URL, without the scheme and without the '.onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "The below are settings specific to the 'mode' specified in the ``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "Whether to automatically stop the share once files are downloaded the first time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 +#: ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 +#: ../../source/advanced.rst:466 +msgid "Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "The path where received files or text messages will be stored. Default: the 'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "A webhook URL that OnionShare will POST to when it receives files or text messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "If set to ``true``, OnionShare won't set its default Content Security Policy header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/gettext/develop.pot b/docs/gettext/develop.pot index 71635283..b37a7dea 100644 --- a/docs/gettext/develop.pot +++ b/docs/gettext/develop.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-12 14:33+1100\n" +"POT-Creation-Date: 2025-02-18 17:24+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/gettext/features.pot b/docs/gettext/features.pot index ef890d1b..e53a9cac 100644 --- a/docs/gettext/features.pot +++ b/docs/gettext/features.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-12 14:33+1100\n" +"POT-Creation-Date: 2025-02-18 17:24+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/gettext/help.pot b/docs/gettext/help.pot index 1906e5cc..0013e782 100644 --- a/docs/gettext/help.pot +++ b/docs/gettext/help.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-12 14:33+1100\n" +"POT-Creation-Date: 2025-02-18 17:24+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/gettext/index.pot b/docs/gettext/index.pot index f1618307..aaaf900e 100644 --- a/docs/gettext/index.pot +++ b/docs/gettext/index.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-12 14:33+1100\n" +"POT-Creation-Date: 2025-02-18 17:24+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/gettext/install.pot b/docs/gettext/install.pot index b99b1917..6e0faabc 100644 --- a/docs/gettext/install.pot +++ b/docs/gettext/install.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-12 14:33+1100\n" +"POT-Creation-Date: 2025-02-18 17:24+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/gettext/security.pot b/docs/gettext/security.pot index f01c57e1..c68ec40b 100644 --- a/docs/gettext/security.pot +++ b/docs/gettext/security.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-12 14:33+1100\n" +"POT-Creation-Date: 2025-02-18 17:24+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/gettext/sphinx.pot b/docs/gettext/sphinx.pot index 89f4b31d..07d6005e 100644 --- a/docs/gettext/sphinx.pot +++ b/docs/gettext/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-12 14:33+1100\n" +"POT-Creation-Date: 2025-02-18 17:24+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/gettext/tor.pot b/docs/gettext/tor.pot index 157afc20..49c0b3ca 100644 --- a/docs/gettext/tor.pot +++ b/docs/gettext/tor.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-12 14:33+1100\n" +"POT-Creation-Date: 2025-02-18 17:24+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/advanced.rst b/docs/source/advanced.rst index b8a7c9c9..c2f5e666 100644 --- a/docs/source/advanced.rst +++ b/docs/source/advanced.rst @@ -309,3 +309,165 @@ OnionShare stores all such data in a specific folder. Copy the relevant folder f * Linux: ``~/.config/onionshare`` * macOS: ``~/Library/Application Support/OnionShare`` * Windows: ``%APPDATA%\OnionShare`` + + +Configuration file parameters +----------------------------- + +OnionShare stores its settings in a JSON file. Both the CLI and the Desktop versions use this configuration file. The CLI also lets you specify a path to a custom configuration file with ``--config``. + +Below are the configuration file parameters and what they mean. If your configuration file has other parameters not listed here, they may be obsolete from older OnionShare versions. + +==================== =========== =========== +Parameter Type Explanation +==================== =========== =========== +version ``string`` The version of OnionShare. You should not ever need to change this value. +connection_type ``string`` The way in which OnionShare connects to Tor. Valid options are 'bundled', 'automatic' (use Tor Browser's Tor connection), 'control_port' or 'socket_file'. Default: 'bundled' +control_port_address ``string`` The IP address of Tor's Control port, if ``connection_type`` is set to 'control_port'. Default: '127.0.0.1' +control_port_port ``integer`` The port number of Tor's Control port, if ``connection_type`` is set to 'control_port'. Default: '9051' +socks_address ``string`` The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to 'control_port' or 'socket_file'. Default: '127.0.0.1' +socks_port ``integer`` The port number of Tor's SOCKS proxy, if ``connection_type`` is set to 'control_port' or 'socket_file'. Default: ''9050' +socket_file_path ``string`` The path to Tor's socket file, if ``connection_type`` is set to 'socket_file'. Default: '/var/run/tor/control' +auth_type ``string`` If access to Tor's control port requires a password, this can be set to 'password', otherwise 'no_auth'. Default: 'no_auth' +auth_password ``string`` If access to Tor's control port requires a password, and ``auth_type`` is set to 'password', specify the password here. Default: '' +auto_connect ``boolean`` Whether OnionShare should automatically connect to Tor when it starts. Default: False +use_autoupdate ``boolean`` Whether OnionShare should automatically check for updates (over Tor). This setting is only valid for MacOS or Windows installations. Default: True. +autoupdate_timestamp ``integer`` The last time OnionShare checked for updates. Default: None +bridges_enabled ``boolean`` Whether to connect to Tor using bridges. Default: False +bridges_type ``string`` When ``bridges_enabled`` is True, where to load bridges from. Options are "built-in" (bridges shipped with OnionShare and which may get updated from Tor), "moat" (request bridges from Tor's Moat API), or "custom" (user-supplied bridges). Default: "built-in" +bridges_builtin_pt ``string`` When ``bridges_type`` is set to "built-in", this specifies which type of bridge protocol to use. Options are "obfs4", "meek-azure" or "snowflake". Default: "obfs4" +bridges_moat ``string`` When ``bridges_type`` is set to "moat", the bridges returned from Tor's Moat API are stored here. Default: "" +bridges_custom ``string`` When ``bridges_type`` is set to "custom", the bridges specified by the user are stored here. Separate each bridge line in the string with '\n'. Default: "" +bridges_builtin ``dict`` When ``bridges_type`` is set to "built-in", OnionShare obtains the latest built-in bridges recommended by Tor and stores them here. Default: {} +persistent_tabs ``list`` If the user has defined any tabs as 'saved' (meaning that they are persistent each time OnionShare starts, and their onion address doesn't change), these are given a random identifier which gets listed here. The persistent onion is stored as a JSON file with the same name as this identifier, in a subfolder of the OnionShare configuration folder called 'persistent'. Default: [] +locale ``string`` The locale used in OnionShare. Default: None (which is the same as 'en'). For valid locale codes, see 'available_locales' in https://github.com/onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py +theme ``boolean`` The theme for the OnionShare desktop app. Valid options are 0 (automatically detect the user's computer's light or dark theme), 1 (light) or 2 (dark). +==================== =========== =========== + + +Configuration file parameters for persistent onions +--------------------------------------------------- + +As described above, each 'persistent' onion has parameters of its own which are stored in its own JSON file. The path to this file can be specified for the CLI tool with ``--persistent``. + +Here is an example persistent JSON configuration:: + + { + "onion": { + "private_key": "0HGxILDDwYhxAB2Zq8mM3Wu3MirBgK7Fw2/tVrTw1XraElH7MWbVn3lzKbcJEapVWz2TFjaoCAVN48hGqraiRg==", + "client_auth_priv_key": "UT55HDBA5VSRWOUERMGOHEIBKZCMOOGZAFFNI54GDQFZ6CMCUGIQ", + "client_auth_pub_key": "TPQCMCV26UEDMCWGZCWAWM4FOJSQKZZTVPC5TC3CAGMDWKV255OA" + }, + "persistent": { + "mode": "share", + "enabled": true, + "autostart_on_launch": false + }, + "general": { + "title": null, + "public": false, + "autostart_timer": false, + "autostop_timer": false, + "service_id": "hvsufvk2anyadehahfqiacy4wbrjt2atpnagk4itlkh4mdfsg6vhd5ad" + }, + "share": { + "autostop_sharing": true, + "filenames": [ + "/home/user/git/onionshare/desktop/org.onionshare.OnionShare.svg" + ], + "log_filenames": false + }, + "receive": { + "data_dir": "/home/user/OnionShare", + "webhook_url": null, + "disable_text": false, + "disable_files": false + }, + "website": { + "disable_csp": false, + "custom_csp": null, + "log_filenames": false, + "filenames": [] + }, + "chat": {} + } + + +Below are the configuration file parameters for a persistent onion and what they mean, for each section in the JSON + +onion +^^^^^ + +==================== ========== =========== +Parameter Type Explanation +==================== ========== =========== +private_key ``string`` Base64-encoded private key of the onion service +client_auth_priv_key ``string`` The private key when using Client Authentication. Send this to the user. +client_auth_pub_key ``string`` The public key when using Client Authentication. Used on OnionShare's side. +==================== ========== =========== + +persistent +^^^^^^^^^^ + +=================== =========== =========== +Parameter Type Explanation +=================== =========== =========== +mode ``string`` The mode used by this persistent onion. Options are "share", "receive", "website" or "chat". +enabled ``boolean`` Whether persistence is enabled for this onion. When the persistent option is unchecked in the desktop, this entire JSON file is deleted. Default: true +autostart_on_launch ``boolean`` Whether to automatically start this persistent onion when OnionShare starts and once Tor is connected. Default: false +=================== =========== =========== + +general +^^^^^^^ + +=============== =========== =========== +Parameter Type Explanation +=============== =========== =========== +title ``string`` An optional custom title for displaying on the onion service. Default: null ("OnionShare" will be shown instead) +public ``boolean`` Whether the onion service can be accessed with or without a Private Key (Client Authentication). If true, no Private Key is required. +autostart_timer ``boolean`` Whether the onion service is configured to start at a specific time. The time can be set in the desktop app or specified in seconds with ``--auto-start-timer`` with the CLI tool. Default: false +autostop_timer ``boolean`` Whether the onion service is configured to stop at a specific time. The time can be set in the desktop app or specified in seconds with ``--auto-stop-timer`` with the CLI tool. Default: false +service_id ``string`` The 32-character onion service URL, without the scheme and without the '.onion' suffix. +=============== =========== =========== + +The below are settings specific to the 'mode' specified in the ``persistent`` section above. + +share +^^^^^ + +================ =========== =========== +Parameter Type Explanation +================ =========== =========== +autostop_sharing ``boolean`` Whether to automatically stop the share once files are downloaded the first time. Default: true +filenames ``list`` A list of files to share. Default: [] +log_filenames ``boolean`` Whether to log URL requests to stdout when using the CLI tool. Default: false +================ =========== =========== + +receive +^^^^^^^ + +============= =========== =========== +Parameter Type Explanation +============= =========== =========== +data_dir ``string`` The path where received files or text messages will be stored. Default: the 'OnionShare' folder of the user's home directory. +webhook_url ``string`` A webhook URL that OnionShare will POST to when it receives files or text messages. Default: null +disable_text ``boolean`` Whether to disable receiving text messages. Default: false +disable_files ``boolean`` Whether to disable receiving files. Default: false +============= =========== =========== + +website +^^^^^^^ + +============= =========== =========== +Parameter Type Explanation +============= =========== =========== +disable_csp ``boolean`` If set to ``true``, OnionShare won't set its default Content Security Policy header for the website. Default: ``false`` +custom_csp ``string`` A custom Content Security Policy header to send instead of the default. +log_filenames ``boolean`` Whether to log URL requests to stdout when using the CLI tool. Default: false +filenames ``list`` A list of files to share. Default: [] +============= =========== =========== + +chat +^^^^ + +There are currently no configurable settings for the Chat mode. diff --git a/docs/source/locale/af/LC_MESSAGES/advanced.po b/docs/source/locale/af/LC_MESSAGES/advanced.po index b4f1c635..7dd99871 100644 --- a/docs/source/locale/af/LC_MESSAGES/advanced.po +++ b/docs/source/locale/af/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2022-11-06 19:08+0000\n" "Last-Translator: Gideon Wentink \n" "Language-Team: none\n" @@ -357,3 +357,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/af/LC_MESSAGES/develop.po b/docs/source/locale/af/LC_MESSAGES/develop.po index 099101d8..52158e84 100644 --- a/docs/source/locale/af/LC_MESSAGES/develop.po +++ b/docs/source/locale/af/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-11-16 07:48+0000\n" "Last-Translator: Gideon Wentink \n" "Language-Team: none\n" diff --git a/docs/source/locale/af/LC_MESSAGES/features.po b/docs/source/locale/af/LC_MESSAGES/features.po index 3b6344f8..5f456ca6 100644 --- a/docs/source/locale/af/LC_MESSAGES/features.po +++ b/docs/source/locale/af/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-11-01 10:03+0000\n" "Last-Translator: Gideon Wentink \n" "Language-Team: none\n" diff --git a/docs/source/locale/af/LC_MESSAGES/help.po b/docs/source/locale/af/LC_MESSAGES/help.po index 3d8ae55b..428d3565 100644 --- a/docs/source/locale/af/LC_MESSAGES/help.po +++ b/docs/source/locale/af/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-10-21 15:07+0000\n" "Last-Translator: Gideon Wentink \n" "Language-Team: none\n" diff --git a/docs/source/locale/af/LC_MESSAGES/index.po b/docs/source/locale/af/LC_MESSAGES/index.po index c59be9c1..ed1597b3 100644 --- a/docs/source/locale/af/LC_MESSAGES/index.po +++ b/docs/source/locale/af/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-10-19 10:07+0000\n" "Last-Translator: Gideon Wentink \n" "Language-Team: none\n" diff --git a/docs/source/locale/af/LC_MESSAGES/install.po b/docs/source/locale/af/LC_MESSAGES/install.po index 39b56ed9..9e668314 100644 --- a/docs/source/locale/af/LC_MESSAGES/install.po +++ b/docs/source/locale/af/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-02-10 08:02+0000\n" "Last-Translator: Gideon Wentink \n" "Language-Team: none\n" @@ -42,7 +42,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -56,7 +56,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -361,7 +361,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -383,7 +383,7 @@ msgstr "" "sleutelbediener `_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -399,7 +399,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/af/LC_MESSAGES/security.po b/docs/source/locale/af/LC_MESSAGES/security.po index 7af957b9..48c71236 100644 --- a/docs/source/locale/af/LC_MESSAGES/security.po +++ b/docs/source/locale/af/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-07-04 03:02+0000\n" "Last-Translator: Gideon Wentink \n" "Language-Team: none\n" diff --git a/docs/source/locale/af/LC_MESSAGES/sphinx.po b/docs/source/locale/af/LC_MESSAGES/sphinx.po index e4ed5a4d..69952ae1 100644 --- a/docs/source/locale/af/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/af/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-10-19 10:07+0000\n" "Last-Translator: Gideon Wentink \n" "Language-Team: none\n" diff --git a/docs/source/locale/af/LC_MESSAGES/tor.po b/docs/source/locale/af/LC_MESSAGES/tor.po index 68616566..4646b83e 100644 --- a/docs/source/locale/af/LC_MESSAGES/tor.po +++ b/docs/source/locale/af/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-07-05 12:52+0000\n" "Last-Translator: Gideon Wentink \n" "Language-Team: none\n" diff --git a/docs/source/locale/am/LC_MESSAGES/advanced.po b/docs/source/locale/am/LC_MESSAGES/advanced.po index 5119cbee..3bf7f331 100644 --- a/docs/source/locale/am/LC_MESSAGES/advanced.po +++ b/docs/source/locale/am/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/am/LC_MESSAGES/develop.po b/docs/source/locale/am/LC_MESSAGES/develop.po index dad2efa2..770338ee 100644 --- a/docs/source/locale/am/LC_MESSAGES/develop.po +++ b/docs/source/locale/am/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/am/LC_MESSAGES/features.po b/docs/source/locale/am/LC_MESSAGES/features.po index 08179f5b..321686a9 100644 --- a/docs/source/locale/am/LC_MESSAGES/features.po +++ b/docs/source/locale/am/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/am/LC_MESSAGES/help.po b/docs/source/locale/am/LC_MESSAGES/help.po index e5110091..08ff0b6c 100644 --- a/docs/source/locale/am/LC_MESSAGES/help.po +++ b/docs/source/locale/am/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/am/LC_MESSAGES/index.po b/docs/source/locale/am/LC_MESSAGES/index.po index b3201e2e..919115e0 100644 --- a/docs/source/locale/am/LC_MESSAGES/index.po +++ b/docs/source/locale/am/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/am/LC_MESSAGES/install.po b/docs/source/locale/am/LC_MESSAGES/install.po index fdf09750..3147c707 100644 --- a/docs/source/locale/am/LC_MESSAGES/install.po +++ b/docs/source/locale/am/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/am/LC_MESSAGES/security.po b/docs/source/locale/am/LC_MESSAGES/security.po index aea5ff3f..d50aa244 100644 --- a/docs/source/locale/am/LC_MESSAGES/security.po +++ b/docs/source/locale/am/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/am/LC_MESSAGES/sphinx.po b/docs/source/locale/am/LC_MESSAGES/sphinx.po index 17eca4b6..07c04927 100644 --- a/docs/source/locale/am/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/am/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/am/LC_MESSAGES/tor.po b/docs/source/locale/am/LC_MESSAGES/tor.po index 6a83f8a7..d3a4e659 100644 --- a/docs/source/locale/am/LC_MESSAGES/tor.po +++ b/docs/source/locale/am/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ar/LC_MESSAGES/advanced.po b/docs/source/locale/ar/LC_MESSAGES/advanced.po index d68508f0..ac46dadb 100644 --- a/docs/source/locale/ar/LC_MESSAGES/advanced.po +++ b/docs/source/locale/ar/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2024-02-05 09:03+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: LANGUAGE \n" @@ -344,3 +344,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/ar/LC_MESSAGES/develop.po b/docs/source/locale/ar/LC_MESSAGES/develop.po index 348002db..b53930ac 100644 --- a/docs/source/locale/ar/LC_MESSAGES/develop.po +++ b/docs/source/locale/ar/LC_MESSAGES/develop.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ar/LC_MESSAGES/features.po b/docs/source/locale/ar/LC_MESSAGES/features.po index 2105c86c..59d194d7 100644 --- a/docs/source/locale/ar/LC_MESSAGES/features.po +++ b/docs/source/locale/ar/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-09-18 20:19+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ar/LC_MESSAGES/help.po b/docs/source/locale/ar/LC_MESSAGES/help.po index 1f1737b1..d4f3bfa1 100644 --- a/docs/source/locale/ar/LC_MESSAGES/help.po +++ b/docs/source/locale/ar/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-29 13:53+0000\n" "Last-Translator: jonnysemon \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ar/LC_MESSAGES/index.po b/docs/source/locale/ar/LC_MESSAGES/index.po index 19a28724..6d9da971 100644 --- a/docs/source/locale/ar/LC_MESSAGES/index.po +++ b/docs/source/locale/ar/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-02-19 21:35+0000\n" "Last-Translator: Mohamed Elghdban \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ar/LC_MESSAGES/install.po b/docs/source/locale/ar/LC_MESSAGES/install.po index 4f4c99bd..1764bf4d 100644 --- a/docs/source/locale/ar/LC_MESSAGES/install.po +++ b/docs/source/locale/ar/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-07-31 22:05+0000\n" "Last-Translator: jonnysemon \n" "Language-Team: LANGUAGE \n" @@ -44,7 +44,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -58,7 +58,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -345,7 +345,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -361,7 +361,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -377,7 +377,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/ar/LC_MESSAGES/security.po b/docs/source/locale/ar/LC_MESSAGES/security.po index 5176ea6f..c294e876 100644 --- a/docs/source/locale/ar/LC_MESSAGES/security.po +++ b/docs/source/locale/ar/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-08-02 19:00+0000\n" "Last-Translator: jonnysemon \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ar/LC_MESSAGES/sphinx.po b/docs/source/locale/ar/LC_MESSAGES/sphinx.po index 94b07a95..93aa73e4 100644 --- a/docs/source/locale/ar/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/ar/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-02-19 21:35+0000\n" "Last-Translator: Mohamed Elghdban \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ar/LC_MESSAGES/tor.po b/docs/source/locale/ar/LC_MESSAGES/tor.po index 99788431..f33002e8 100644 --- a/docs/source/locale/ar/LC_MESSAGES/tor.po +++ b/docs/source/locale/ar/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-02-12 17:11+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ay/LC_MESSAGES/advanced.po b/docs/source/locale/ay/LC_MESSAGES/advanced.po index a07fd41e..b460f64b 100644 --- a/docs/source/locale/ay/LC_MESSAGES/advanced.po +++ b/docs/source/locale/ay/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/ay/LC_MESSAGES/develop.po b/docs/source/locale/ay/LC_MESSAGES/develop.po index 8de6a9f2..d30816a0 100644 --- a/docs/source/locale/ay/LC_MESSAGES/develop.po +++ b/docs/source/locale/ay/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ay/LC_MESSAGES/features.po b/docs/source/locale/ay/LC_MESSAGES/features.po index 5bae747d..1e53986c 100644 --- a/docs/source/locale/ay/LC_MESSAGES/features.po +++ b/docs/source/locale/ay/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ay/LC_MESSAGES/help.po b/docs/source/locale/ay/LC_MESSAGES/help.po index 23cee084..0be311b2 100644 --- a/docs/source/locale/ay/LC_MESSAGES/help.po +++ b/docs/source/locale/ay/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ay/LC_MESSAGES/index.po b/docs/source/locale/ay/LC_MESSAGES/index.po index 55cb990a..6cba0bd4 100644 --- a/docs/source/locale/ay/LC_MESSAGES/index.po +++ b/docs/source/locale/ay/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ay/LC_MESSAGES/install.po b/docs/source/locale/ay/LC_MESSAGES/install.po index e1377947..a1c352d9 100644 --- a/docs/source/locale/ay/LC_MESSAGES/install.po +++ b/docs/source/locale/ay/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/ay/LC_MESSAGES/security.po b/docs/source/locale/ay/LC_MESSAGES/security.po index c1847f43..0288aeba 100644 --- a/docs/source/locale/ay/LC_MESSAGES/security.po +++ b/docs/source/locale/ay/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ay/LC_MESSAGES/tor.po b/docs/source/locale/ay/LC_MESSAGES/tor.po index 1561e538..4f1c2a02 100644 --- a/docs/source/locale/ay/LC_MESSAGES/tor.po +++ b/docs/source/locale/ay/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/be/LC_MESSAGES/advanced.po b/docs/source/locale/be/LC_MESSAGES/advanced.po index 7558e69e..4e3c6ff8 100644 --- a/docs/source/locale/be/LC_MESSAGES/advanced.po +++ b/docs/source/locale/be/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/be/LC_MESSAGES/develop.po b/docs/source/locale/be/LC_MESSAGES/develop.po index b0eb2760..ac7f29fb 100644 --- a/docs/source/locale/be/LC_MESSAGES/develop.po +++ b/docs/source/locale/be/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/be/LC_MESSAGES/features.po b/docs/source/locale/be/LC_MESSAGES/features.po index be36cb4d..ac0bf653 100644 --- a/docs/source/locale/be/LC_MESSAGES/features.po +++ b/docs/source/locale/be/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/be/LC_MESSAGES/help.po b/docs/source/locale/be/LC_MESSAGES/help.po index 7023e7da..30911dcd 100644 --- a/docs/source/locale/be/LC_MESSAGES/help.po +++ b/docs/source/locale/be/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-20 18:52+0000\n" "Last-Translator: Maksim \n" "Language-Team: none\n" diff --git a/docs/source/locale/be/LC_MESSAGES/index.po b/docs/source/locale/be/LC_MESSAGES/index.po index e0388aaa..d58fbb79 100644 --- a/docs/source/locale/be/LC_MESSAGES/index.po +++ b/docs/source/locale/be/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-11-20 16:03+0000\n" "Last-Translator: kopatych \n" "Language-Team: none\n" diff --git a/docs/source/locale/be/LC_MESSAGES/install.po b/docs/source/locale/be/LC_MESSAGES/install.po index fbe064ee..77a0be18 100644 --- a/docs/source/locale/be/LC_MESSAGES/install.po +++ b/docs/source/locale/be/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-11-20 16:03+0000\n" "Last-Translator: kopatych \n" "Language-Team: none\n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -367,7 +367,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -389,7 +389,7 @@ msgstr "" "openpgp.org/vks/v1/by-" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -405,7 +405,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/be/LC_MESSAGES/security.po b/docs/source/locale/be/LC_MESSAGES/security.po index 3ed6dacb..252acae1 100644 --- a/docs/source/locale/be/LC_MESSAGES/security.po +++ b/docs/source/locale/be/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-20 18:52+0000\n" "Last-Translator: Maksim \n" "Language-Team: none\n" diff --git a/docs/source/locale/be/LC_MESSAGES/sphinx.po b/docs/source/locale/be/LC_MESSAGES/sphinx.po index 2694edeb..f9251d71 100644 --- a/docs/source/locale/be/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/be/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-05-24 07:49+0000\n" "Last-Translator: Maksim \n" "Language-Team: none\n" diff --git a/docs/source/locale/be/LC_MESSAGES/tor.po b/docs/source/locale/be/LC_MESSAGES/tor.po index a14bbc82..15245108 100644 --- a/docs/source/locale/be/LC_MESSAGES/tor.po +++ b/docs/source/locale/be/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-11-29 17:05+0000\n" "Last-Translator: kopatych \n" "Language-Team: none\n" diff --git a/docs/source/locale/bg/LC_MESSAGES/advanced.po b/docs/source/locale/bg/LC_MESSAGES/advanced.po index b76481b6..ad93b848 100644 --- a/docs/source/locale/bg/LC_MESSAGES/advanced.po +++ b/docs/source/locale/bg/LC_MESSAGES/advanced.po @@ -6,11 +6,11 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" -"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2025-02-14 00:02+0000\n" -"Last-Translator: 109247019824 <109247019824@users.noreply.hosted.weblate.org>" -"\n" +"Last-Translator: 109247019824 <109247019824@users.noreply.hosted.weblate." +"org>\n" "Language-Team: none\n" "Language: bg\n" "MIME-Version: 1.0\n" @@ -315,8 +315,8 @@ msgid "" "user/.config/onionshare/persistent/my-persistent-onion.json``, that looks " "like this::" msgstr "" -"Забележете секцията „persistent_tabs“. Ще създадем файла ``/home/user/" -".config/onionshare/persistent/my-persistent-onion.json`` със следното " +"Забележете секцията „persistent_tabs“. Ще създадем файла ``/home/user/." +"config/onionshare/persistent/my-persistent-onion.json`` със следното " "съдържание::" #: ../../source/advanced.rst:247 @@ -416,3 +416,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/bg/LC_MESSAGES/develop.po b/docs/source/locale/bg/LC_MESSAGES/develop.po index 0ba04939..1366692a 100644 --- a/docs/source/locale/bg/LC_MESSAGES/develop.po +++ b/docs/source/locale/bg/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-07-24 11:09+0000\n" "Last-Translator: 109247019824 \n" "Language-Team: none\n" diff --git a/docs/source/locale/bg/LC_MESSAGES/features.po b/docs/source/locale/bg/LC_MESSAGES/features.po index e94edf48..94fe4786 100644 --- a/docs/source/locale/bg/LC_MESSAGES/features.po +++ b/docs/source/locale/bg/LC_MESSAGES/features.po @@ -6,11 +6,11 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" -"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-12 22:02+0000\n" -"Last-Translator: 109247019824 <109247019824@users.noreply.hosted.weblate.org>" -"\n" +"Last-Translator: 109247019824 <109247019824@users.noreply.hosted.weblate." +"org>\n" "Language-Team: none\n" "Language: bg\n" "MIME-Version: 1.0\n" diff --git a/docs/source/locale/bg/LC_MESSAGES/help.po b/docs/source/locale/bg/LC_MESSAGES/help.po index c9991b4d..8586aec5 100644 --- a/docs/source/locale/bg/LC_MESSAGES/help.po +++ b/docs/source/locale/bg/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-09-17 21:00+0000\n" "Last-Translator: 109247019824 \n" "Language-Team: none\n" diff --git a/docs/source/locale/bg/LC_MESSAGES/index.po b/docs/source/locale/bg/LC_MESSAGES/index.po index 68e4c2a7..7916987e 100644 --- a/docs/source/locale/bg/LC_MESSAGES/index.po +++ b/docs/source/locale/bg/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-08-05 22:50+0000\n" "Last-Translator: Salif Mehmed \n" "Language-Team: none\n" diff --git a/docs/source/locale/bg/LC_MESSAGES/install.po b/docs/source/locale/bg/LC_MESSAGES/install.po index 887287ac..7df4dc0f 100644 --- a/docs/source/locale/bg/LC_MESSAGES/install.po +++ b/docs/source/locale/bg/LC_MESSAGES/install.po @@ -6,11 +6,11 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" -"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-11 21:35+0000\n" -"Last-Translator: 109247019824 <109247019824@users.noreply.hosted.weblate.org>" -"\n" +"Last-Translator: 109247019824 <109247019824@users.noreply.hosted.weblate." +"org>\n" "Language-Team: none\n" "Language: bg\n" "MIME-Version: 1.0\n" @@ -43,7 +43,7 @@ msgstr "Мобилно" msgid "You can download OnionShare for Mobile from the follow links" msgstr "Можете да изтеглите OnionShare за мобилни платформи от следните места" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Андроид" @@ -59,7 +59,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -401,7 +401,7 @@ msgstr "" "издание. По-долу е дадена информация за ключовете на GPG на всеки от " "основните разработчици на OnionShare:" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Майка Лий:" @@ -422,7 +422,7 @@ msgstr "" "org `_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Саптак Сенгупта:" @@ -443,7 +443,7 @@ msgstr "" "org `_." -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "Мигел Жак:" @@ -460,9 +460,9 @@ msgid "" "keys.openpgp.org/vks/v1/by-" "fingerprint/00AE817C24A10C2540461A9C1D7CDE0234DB458D>`_." msgstr "" -"Можете да изтеглите ключа на Мигел `от сървъра за ключове на " -"keys.openpgp.org `_." +"Можете да изтеглите ключа на Мигел `от сървъра за ключове на keys.openpgp." +"org `_." #: ../../source/install.rst:132 msgid "" diff --git a/docs/source/locale/bg/LC_MESSAGES/security.po b/docs/source/locale/bg/LC_MESSAGES/security.po index a9517f7d..f2c84d19 100644 --- a/docs/source/locale/bg/LC_MESSAGES/security.po +++ b/docs/source/locale/bg/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-07-15 14:06+0000\n" "Last-Translator: 109247019824 \n" "Language-Team: none\n" diff --git a/docs/source/locale/bg/LC_MESSAGES/sphinx.po b/docs/source/locale/bg/LC_MESSAGES/sphinx.po index 016efe81..b23ed85f 100644 --- a/docs/source/locale/bg/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-07-16 14:09+0000\n" "Last-Translator: 109247019824 \n" "Language-Team: none\n" diff --git a/docs/source/locale/bg/LC_MESSAGES/tor.po b/docs/source/locale/bg/LC_MESSAGES/tor.po index 40c5c53f..75e9ce6d 100644 --- a/docs/source/locale/bg/LC_MESSAGES/tor.po +++ b/docs/source/locale/bg/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-10-20 20:15+0000\n" "Last-Translator: 109247019824 \n" "Language-Team: none\n" diff --git a/docs/source/locale/bn/LC_MESSAGES/advanced.po b/docs/source/locale/bn/LC_MESSAGES/advanced.po index b48e7080..fd3787b9 100644 --- a/docs/source/locale/bn/LC_MESSAGES/advanced.po +++ b/docs/source/locale/bn/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2023-08-19 20:51+0000\n" "Last-Translator: Sabbir Ahmed Shameem \n" "Language-Team: none\n" @@ -343,6 +343,547 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "Everything in OnionShare is temporary by default. If you close an " #~ "OnionShare tab, its address no longer exists and it can't be used again. " diff --git a/docs/source/locale/bn/LC_MESSAGES/develop.po b/docs/source/locale/bn/LC_MESSAGES/develop.po index 51a97368..fd331788 100644 --- a/docs/source/locale/bn/LC_MESSAGES/develop.po +++ b/docs/source/locale/bn/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/bn/LC_MESSAGES/features.po b/docs/source/locale/bn/LC_MESSAGES/features.po index 9f6243aa..7bd06e52 100644 --- a/docs/source/locale/bn/LC_MESSAGES/features.po +++ b/docs/source/locale/bn/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/bn/LC_MESSAGES/help.po b/docs/source/locale/bn/LC_MESSAGES/help.po index cb2159e1..06656212 100644 --- a/docs/source/locale/bn/LC_MESSAGES/help.po +++ b/docs/source/locale/bn/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/bn/LC_MESSAGES/index.po b/docs/source/locale/bn/LC_MESSAGES/index.po index 845009fc..66553031 100644 --- a/docs/source/locale/bn/LC_MESSAGES/index.po +++ b/docs/source/locale/bn/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-04-24 23:31+0000\n" "Last-Translator: Oymate \n" "Language-Team: none\n" diff --git a/docs/source/locale/bn/LC_MESSAGES/install.po b/docs/source/locale/bn/LC_MESSAGES/install.po index 108a2508..18ea96e0 100644 --- a/docs/source/locale/bn/LC_MESSAGES/install.po +++ b/docs/source/locale/bn/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-08-18 19:50+0000\n" "Last-Translator: Sabbir Ahmed Shameem \n" "Language-Team: none\n" @@ -42,7 +42,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -56,7 +56,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -318,7 +318,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -334,7 +334,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -350,7 +350,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/bn/LC_MESSAGES/security.po b/docs/source/locale/bn/LC_MESSAGES/security.po index 2aae30cd..a0c8fc84 100644 --- a/docs/source/locale/bn/LC_MESSAGES/security.po +++ b/docs/source/locale/bn/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-08-20 17:50+0000\n" "Last-Translator: Sabbir Ahmed Shameem \n" "Language-Team: none\n" diff --git a/docs/source/locale/bn/LC_MESSAGES/sphinx.po b/docs/source/locale/bn/LC_MESSAGES/sphinx.po index 40d8376e..0769428b 100644 --- a/docs/source/locale/bn/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/bn/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-05-27 13:16+0000\n" "Last-Translator: Oymate \n" "Language-Team: none\n" diff --git a/docs/source/locale/bn/LC_MESSAGES/tor.po b/docs/source/locale/bn/LC_MESSAGES/tor.po index f64a0aab..951e170c 100644 --- a/docs/source/locale/bn/LC_MESSAGES/tor.po +++ b/docs/source/locale/bn/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/bo/LC_MESSAGES/advanced.po b/docs/source/locale/bo/LC_MESSAGES/advanced.po index 384aca3e..7ed77130 100644 --- a/docs/source/locale/bo/LC_MESSAGES/advanced.po +++ b/docs/source/locale/bo/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/bo/LC_MESSAGES/develop.po b/docs/source/locale/bo/LC_MESSAGES/develop.po index 1086cf7d..70e1e7f9 100644 --- a/docs/source/locale/bo/LC_MESSAGES/develop.po +++ b/docs/source/locale/bo/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/bo/LC_MESSAGES/features.po b/docs/source/locale/bo/LC_MESSAGES/features.po index 1d25c373..7cf59548 100644 --- a/docs/source/locale/bo/LC_MESSAGES/features.po +++ b/docs/source/locale/bo/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/bo/LC_MESSAGES/help.po b/docs/source/locale/bo/LC_MESSAGES/help.po index 5cd603f6..21515f4b 100644 --- a/docs/source/locale/bo/LC_MESSAGES/help.po +++ b/docs/source/locale/bo/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/bo/LC_MESSAGES/index.po b/docs/source/locale/bo/LC_MESSAGES/index.po index d123431f..41b92f48 100644 --- a/docs/source/locale/bo/LC_MESSAGES/index.po +++ b/docs/source/locale/bo/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/bo/LC_MESSAGES/install.po b/docs/source/locale/bo/LC_MESSAGES/install.po index 097231fe..2db1a93b 100644 --- a/docs/source/locale/bo/LC_MESSAGES/install.po +++ b/docs/source/locale/bo/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/bo/LC_MESSAGES/security.po b/docs/source/locale/bo/LC_MESSAGES/security.po index fd90b230..b9a022b8 100644 --- a/docs/source/locale/bo/LC_MESSAGES/security.po +++ b/docs/source/locale/bo/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/bo/LC_MESSAGES/sphinx.po b/docs/source/locale/bo/LC_MESSAGES/sphinx.po index 06b07be3..9cdbef44 100644 --- a/docs/source/locale/bo/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/bo/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/bo/LC_MESSAGES/tor.po b/docs/source/locale/bo/LC_MESSAGES/tor.po index 22a3450d..2addfac2 100644 --- a/docs/source/locale/bo/LC_MESSAGES/tor.po +++ b/docs/source/locale/bo/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ca/LC_MESSAGES/advanced.po b/docs/source/locale/ca/LC_MESSAGES/advanced.po index 07c00fc0..cd6adcc5 100644 --- a/docs/source/locale/ca/LC_MESSAGES/advanced.po +++ b/docs/source/locale/ca/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2020-11-25 18:28+0000\n" "Last-Translator: fadelkon \n" "Language-Team: LANGUAGE \n" @@ -343,3 +343,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/ca/LC_MESSAGES/develop.po b/docs/source/locale/ca/LC_MESSAGES/develop.po index 33666093..d3ffb4b8 100644 --- a/docs/source/locale/ca/LC_MESSAGES/develop.po +++ b/docs/source/locale/ca/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-25 18:28+0000\n" "Last-Translator: fadelkon \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ca/LC_MESSAGES/features.po b/docs/source/locale/ca/LC_MESSAGES/features.po index fe2e6d4f..bd703185 100644 --- a/docs/source/locale/ca/LC_MESSAGES/features.po +++ b/docs/source/locale/ca/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-11-28 19:16+0000\n" "Last-Translator: fadelkon \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ca/LC_MESSAGES/help.po b/docs/source/locale/ca/LC_MESSAGES/help.po index 449d6961..e5df36f4 100644 --- a/docs/source/locale/ca/LC_MESSAGES/help.po +++ b/docs/source/locale/ca/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-04-12 19:02+0000\n" "Last-Translator: Ecron \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ca/LC_MESSAGES/index.po b/docs/source/locale/ca/LC_MESSAGES/index.po index 4a18d31d..565dee5d 100644 --- a/docs/source/locale/ca/LC_MESSAGES/index.po +++ b/docs/source/locale/ca/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-11-28 19:16+0000\n" "Last-Translator: fadelkon \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ca/LC_MESSAGES/install.po b/docs/source/locale/ca/LC_MESSAGES/install.po index 49ddbfe9..8db01e84 100644 --- a/docs/source/locale/ca/LC_MESSAGES/install.po +++ b/docs/source/locale/ca/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-09-29 20:15+0000\n" "Last-Translator: victor dargallo \n" "Language-Team: ca \n" @@ -41,7 +41,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -55,7 +55,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -313,7 +313,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -329,7 +329,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -345,7 +345,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/ca/LC_MESSAGES/security.po b/docs/source/locale/ca/LC_MESSAGES/security.po index b6bcd445..574a0f89 100644 --- a/docs/source/locale/ca/LC_MESSAGES/security.po +++ b/docs/source/locale/ca/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-04-12 19:02+0000\n" "Last-Translator: Ecron \n" "Language-Team: ca \n" diff --git a/docs/source/locale/ca/LC_MESSAGES/sphinx.po b/docs/source/locale/ca/LC_MESSAGES/sphinx.po index 6a5b9237..71fae617 100644 --- a/docs/source/locale/ca/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/ca/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-25 18:28+0000\n" "Last-Translator: fadelkon \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ca/LC_MESSAGES/tor.po b/docs/source/locale/ca/LC_MESSAGES/tor.po index 518e1fd7..8dc6799b 100644 --- a/docs/source/locale/ca/LC_MESSAGES/tor.po +++ b/docs/source/locale/ca/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-25 18:28+0000\n" "Last-Translator: fadelkon \n" "Language-Team: ca \n" diff --git a/docs/source/locale/ckb/LC_MESSAGES/advanced.po b/docs/source/locale/ckb/LC_MESSAGES/advanced.po index a934a5cf..071de4f3 100644 --- a/docs/source/locale/ckb/LC_MESSAGES/advanced.po +++ b/docs/source/locale/ckb/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2020-11-28 11:29+0000\n" "Last-Translator: Lecwan Munzur \n" "Language-Team: none\n" @@ -343,6 +343,547 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "Everything in OnionShare is temporary by default. If you close an " #~ "OnionShare tab, its address no longer exists and it can't be used again. " diff --git a/docs/source/locale/ckb/LC_MESSAGES/develop.po b/docs/source/locale/ckb/LC_MESSAGES/develop.po index 8f32007b..71716644 100644 --- a/docs/source/locale/ckb/LC_MESSAGES/develop.po +++ b/docs/source/locale/ckb/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-22 18:29+0000\n" "Last-Translator: Lecwan Munzur \n" "Language-Team: none\n" diff --git a/docs/source/locale/ckb/LC_MESSAGES/features.po b/docs/source/locale/ckb/LC_MESSAGES/features.po index 6460eee6..5d19623f 100644 --- a/docs/source/locale/ckb/LC_MESSAGES/features.po +++ b/docs/source/locale/ckb/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ckb/LC_MESSAGES/help.po b/docs/source/locale/ckb/LC_MESSAGES/help.po index 69ccfb2b..3b12ca98 100644 --- a/docs/source/locale/ckb/LC_MESSAGES/help.po +++ b/docs/source/locale/ckb/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-24 09:28+0000\n" "Last-Translator: Lecwan Munzur \n" "Language-Team: none\n" diff --git a/docs/source/locale/ckb/LC_MESSAGES/index.po b/docs/source/locale/ckb/LC_MESSAGES/index.po index 25d45af7..511f8c48 100644 --- a/docs/source/locale/ckb/LC_MESSAGES/index.po +++ b/docs/source/locale/ckb/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-26 19:28+0000\n" "Last-Translator: Lecwan Munzur \n" "Language-Team: none\n" diff --git a/docs/source/locale/ckb/LC_MESSAGES/install.po b/docs/source/locale/ckb/LC_MESSAGES/install.po index 0b8101ad..20404856 100644 --- a/docs/source/locale/ckb/LC_MESSAGES/install.po +++ b/docs/source/locale/ckb/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-24 09:28+0000\n" "Last-Translator: Lecwan Munzur \n" "Language-Team: none\n" @@ -42,7 +42,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -56,7 +56,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -327,7 +327,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -343,7 +343,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -359,7 +359,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/ckb/LC_MESSAGES/security.po b/docs/source/locale/ckb/LC_MESSAGES/security.po index 63d81652..aadba1e1 100644 --- a/docs/source/locale/ckb/LC_MESSAGES/security.po +++ b/docs/source/locale/ckb/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-22 18:29+0000\n" "Last-Translator: Lecwan Munzur \n" "Language-Team: none\n" diff --git a/docs/source/locale/ckb/LC_MESSAGES/sphinx.po b/docs/source/locale/ckb/LC_MESSAGES/sphinx.po index ce3bf565..68d391a3 100644 --- a/docs/source/locale/ckb/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/ckb/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-20 17:28+0000\n" "Last-Translator: Lecwan Munzur \n" "Language-Team: none\n" diff --git a/docs/source/locale/ckb/LC_MESSAGES/tor.po b/docs/source/locale/ckb/LC_MESSAGES/tor.po index 0d490404..2743ba41 100644 --- a/docs/source/locale/ckb/LC_MESSAGES/tor.po +++ b/docs/source/locale/ckb/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-20 17:28+0000\n" "Last-Translator: Lecwan Munzur \n" "Language-Team: none\n" diff --git a/docs/source/locale/cs/LC_MESSAGES/advanced.po b/docs/source/locale/cs/LC_MESSAGES/advanced.po index 6cf1b494..caf71e78 100644 --- a/docs/source/locale/cs/LC_MESSAGES/advanced.po +++ b/docs/source/locale/cs/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2023-01-24 17:48+0000\n" "Last-Translator: Toro \n" "Language-Team: none\n" @@ -359,6 +359,547 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "Everything in OnionShare is temporary by default. If you close an " #~ "OnionShare tab, its address no longer exists and it can't be used again. " diff --git a/docs/source/locale/cs/LC_MESSAGES/develop.po b/docs/source/locale/cs/LC_MESSAGES/develop.po index 87b066af..73a52544 100644 --- a/docs/source/locale/cs/LC_MESSAGES/develop.po +++ b/docs/source/locale/cs/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 17:06+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/cs/LC_MESSAGES/features.po b/docs/source/locale/cs/LC_MESSAGES/features.po index 257d3731..54e8c967 100644 --- a/docs/source/locale/cs/LC_MESSAGES/features.po +++ b/docs/source/locale/cs/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-01-25 18:49+0000\n" "Last-Translator: Toro \n" "Language-Team: none\n" diff --git a/docs/source/locale/cs/LC_MESSAGES/help.po b/docs/source/locale/cs/LC_MESSAGES/help.po index f74afbda..7a86179b 100644 --- a/docs/source/locale/cs/LC_MESSAGES/help.po +++ b/docs/source/locale/cs/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-01-24 17:48+0000\n" "Last-Translator: Toro \n" "Language-Team: none\n" diff --git a/docs/source/locale/cs/LC_MESSAGES/index.po b/docs/source/locale/cs/LC_MESSAGES/index.po index f21e80c5..8d945e1e 100644 --- a/docs/source/locale/cs/LC_MESSAGES/index.po +++ b/docs/source/locale/cs/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-08-09 18:18+0000\n" "Last-Translator: Toro \n" "Language-Team: none\n" diff --git a/docs/source/locale/cs/LC_MESSAGES/install.po b/docs/source/locale/cs/LC_MESSAGES/install.po index 468ee4a4..f461e6eb 100644 --- a/docs/source/locale/cs/LC_MESSAGES/install.po +++ b/docs/source/locale/cs/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 12:39+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" @@ -42,7 +42,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -56,7 +56,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -338,7 +338,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -359,7 +359,7 @@ msgstr "" "klíč si můžete stáhnout `z keyserveru keys.openpgp.org >`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -375,7 +375,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/cs/LC_MESSAGES/security.po b/docs/source/locale/cs/LC_MESSAGES/security.po index 64c3dd4d..8dfcee82 100644 --- a/docs/source/locale/cs/LC_MESSAGES/security.po +++ b/docs/source/locale/cs/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-08-10 19:21+0000\n" "Last-Translator: Toro \n" "Language-Team: none\n" diff --git a/docs/source/locale/cs/LC_MESSAGES/sphinx.po b/docs/source/locale/cs/LC_MESSAGES/sphinx.po index 3ac2b492..e4792d39 100644 --- a/docs/source/locale/cs/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/cs/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-08-09 18:18+0000\n" "Last-Translator: Toro \n" "Language-Team: none\n" diff --git a/docs/source/locale/cs/LC_MESSAGES/tor.po b/docs/source/locale/cs/LC_MESSAGES/tor.po index 46d13d66..3925ce2f 100644 --- a/docs/source/locale/cs/LC_MESSAGES/tor.po +++ b/docs/source/locale/cs/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-02 11:21+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/da/LC_MESSAGES/advanced.po b/docs/source/locale/da/LC_MESSAGES/advanced.po index debf29d5..a3b131a0 100644 --- a/docs/source/locale/da/LC_MESSAGES/advanced.po +++ b/docs/source/locale/da/LC_MESSAGES/advanced.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -342,3 +342,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/da/LC_MESSAGES/develop.po b/docs/source/locale/da/LC_MESSAGES/develop.po index 348002db..b53930ac 100644 --- a/docs/source/locale/da/LC_MESSAGES/develop.po +++ b/docs/source/locale/da/LC_MESSAGES/develop.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/da/LC_MESSAGES/features.po b/docs/source/locale/da/LC_MESSAGES/features.po index 0b315ef1..2fd76557 100644 --- a/docs/source/locale/da/LC_MESSAGES/features.po +++ b/docs/source/locale/da/LC_MESSAGES/features.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/da/LC_MESSAGES/help.po b/docs/source/locale/da/LC_MESSAGES/help.po index 04607c6b..84e33d66 100644 --- a/docs/source/locale/da/LC_MESSAGES/help.po +++ b/docs/source/locale/da/LC_MESSAGES/help.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/da/LC_MESSAGES/index.po b/docs/source/locale/da/LC_MESSAGES/index.po index c8682bc1..7fa03ed2 100644 --- a/docs/source/locale/da/LC_MESSAGES/index.po +++ b/docs/source/locale/da/LC_MESSAGES/index.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/da/LC_MESSAGES/install.po b/docs/source/locale/da/LC_MESSAGES/install.po index edfa7177..175d5561 100644 --- a/docs/source/locale/da/LC_MESSAGES/install.po +++ b/docs/source/locale/da/LC_MESSAGES/install.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,7 +40,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -54,7 +54,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -309,7 +309,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -325,7 +325,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -341,7 +341,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/da/LC_MESSAGES/security.po b/docs/source/locale/da/LC_MESSAGES/security.po index d55a381b..871a9d12 100644 --- a/docs/source/locale/da/LC_MESSAGES/security.po +++ b/docs/source/locale/da/LC_MESSAGES/security.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/da/LC_MESSAGES/sphinx.po b/docs/source/locale/da/LC_MESSAGES/sphinx.po index cf7b2edc..82f66457 100644 --- a/docs/source/locale/da/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/da/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/da/LC_MESSAGES/tor.po b/docs/source/locale/da/LC_MESSAGES/tor.po index daa2e2ef..9eaf8eaa 100644 --- a/docs/source/locale/da/LC_MESSAGES/tor.po +++ b/docs/source/locale/da/LC_MESSAGES/tor.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/de/LC_MESSAGES/advanced.po b/docs/source/locale/de/LC_MESSAGES/advanced.po index e96d1c81..405115ff 100644 --- a/docs/source/locale/de/LC_MESSAGES/advanced.po +++ b/docs/source/locale/de/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2025-02-11 08:01+0000\n" "Last-Translator: Ettore Atalan \n" "Language-Team: de \n" @@ -16,8 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.10-dev\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.17.0\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" @@ -413,6 +412,550 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +#, fuzzy +msgid "private_key" +msgstr "Privaten Schlüssel deaktivieren" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +#, fuzzy +msgid "share" +msgstr "Benutzung" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +#, fuzzy +msgid "custom_csp" +msgstr "Benutzerdefinierte Titel" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "By default, everything in OnionShare is temporary. As soon as you close " #~ "an OnionShare tab its address no longer exists and can't be used again. " diff --git a/docs/source/locale/de/LC_MESSAGES/develop.po b/docs/source/locale/de/LC_MESSAGES/develop.po index 5282750b..b6b6e7a7 100644 --- a/docs/source/locale/de/LC_MESSAGES/develop.po +++ b/docs/source/locale/de/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-01-25 13:17+0000\n" "Last-Translator: emma peel \n" "Language-Team: de \n" diff --git a/docs/source/locale/de/LC_MESSAGES/features.po b/docs/source/locale/de/LC_MESSAGES/features.po index 56a125b2..adea81af 100644 --- a/docs/source/locale/de/LC_MESSAGES/features.po +++ b/docs/source/locale/de/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-01-25 13:17+0000\n" "Last-Translator: emma peel \n" "Language-Team: de \n" diff --git a/docs/source/locale/de/LC_MESSAGES/help.po b/docs/source/locale/de/LC_MESSAGES/help.po index de221058..ad26c31d 100644 --- a/docs/source/locale/de/LC_MESSAGES/help.po +++ b/docs/source/locale/de/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-01-25 13:17+0000\n" "Last-Translator: emma peel \n" "Language-Team: de \n" diff --git a/docs/source/locale/de/LC_MESSAGES/index.po b/docs/source/locale/de/LC_MESSAGES/index.po index d1ed94d0..0f329ea3 100644 --- a/docs/source/locale/de/LC_MESSAGES/index.po +++ b/docs/source/locale/de/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-08 00:00+0000\n" "Last-Translator: mv87 \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/de/LC_MESSAGES/install.po b/docs/source/locale/de/LC_MESSAGES/install.po index eb05242f..75682cb3 100644 --- a/docs/source/locale/de/LC_MESSAGES/install.po +++ b/docs/source/locale/de/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-15 10:02+0000\n" "Last-Translator: curtisb \n" "Language-Team: de \n" @@ -43,7 +43,7 @@ msgid "You can download OnionShare for Mobile from the follow links" msgstr "" "Du kannst OnionShare für Mobilgeräte über die folgenden Links herunterladen" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -59,7 +59,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -403,7 +403,7 @@ msgstr "" "verantwortlich ist. Nachfolgend findest du die Informationen zu den Core-" "Entwicklern von OnionShare:" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee:" @@ -424,7 +424,7 @@ msgstr "" "`_ herunterladen." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta:" @@ -445,7 +445,7 @@ msgstr "" "openpgp.org/vks/v1/by-" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_ herunterladen." -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/de/LC_MESSAGES/security.po b/docs/source/locale/de/LC_MESSAGES/security.po index 36983c30..02c6c0c3 100644 --- a/docs/source/locale/de/LC_MESSAGES/security.po +++ b/docs/source/locale/de/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-12-24 10:38+0000\n" "Last-Translator: curtisb \n" "Language-Team: de \n" diff --git a/docs/source/locale/de/LC_MESSAGES/sphinx.po b/docs/source/locale/de/LC_MESSAGES/sphinx.po index 2592ca99..e0377fd1 100644 --- a/docs/source/locale/de/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/de/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-08 00:00+0000\n" "Last-Translator: mv87 \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/de/LC_MESSAGES/tor.po b/docs/source/locale/de/LC_MESSAGES/tor.po index 18d1ef2d..deaf1543 100644 --- a/docs/source/locale/de/LC_MESSAGES/tor.po +++ b/docs/source/locale/de/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-01-14 12:31+0000\n" "Last-Translator: curtisb \n" "Language-Team: de \n" diff --git a/docs/source/locale/el/LC_MESSAGES/advanced.po b/docs/source/locale/el/LC_MESSAGES/advanced.po index f0f70df6..19374ae2 100644 --- a/docs/source/locale/el/LC_MESSAGES/advanced.po +++ b/docs/source/locale/el/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2023-10-28 04:15+0000\n" "Last-Translator: george kitsoukakis \n" "Language-Team: el \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.17.0\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" @@ -408,6 +408,550 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +#, fuzzy +msgid "private_key" +msgstr "Απενεργοποίηση ιδιωτικού κλειδιού" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +#, fuzzy +msgid "share" +msgstr "Χρήση" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +#, fuzzy +msgid "custom_csp" +msgstr "Προσαρμοσμένοι Τίτλοι" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "Turn Off Passwords" #~ msgstr "Απενεργοποίηση κωδικών πρόσβασης" diff --git a/docs/source/locale/el/LC_MESSAGES/develop.po b/docs/source/locale/el/LC_MESSAGES/develop.po index 9f14da11..1cf4bc2e 100644 --- a/docs/source/locale/el/LC_MESSAGES/develop.po +++ b/docs/source/locale/el/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 17:06+0000\n" "Last-Translator: emma peel \n" "Language-Team: el \n" diff --git a/docs/source/locale/el/LC_MESSAGES/features.po b/docs/source/locale/el/LC_MESSAGES/features.po index cbdca86a..35f5d641 100644 --- a/docs/source/locale/el/LC_MESSAGES/features.po +++ b/docs/source/locale/el/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-01-23 09:55+0000\n" "Last-Translator: george kitsoukakis \n" "Language-Team: el \n" diff --git a/docs/source/locale/el/LC_MESSAGES/help.po b/docs/source/locale/el/LC_MESSAGES/help.po index 78db4c82..4fb25ce8 100644 --- a/docs/source/locale/el/LC_MESSAGES/help.po +++ b/docs/source/locale/el/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-10-09 09:04+0000\n" "Last-Translator: george kitsoukakis \n" "Language-Team: el \n" diff --git a/docs/source/locale/el/LC_MESSAGES/index.po b/docs/source/locale/el/LC_MESSAGES/index.po index 2b352b99..0764de11 100644 --- a/docs/source/locale/el/LC_MESSAGES/index.po +++ b/docs/source/locale/el/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-28 11:28+0000\n" "Last-Translator: george k \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/el/LC_MESSAGES/install.po b/docs/source/locale/el/LC_MESSAGES/install.po index 9ba99d99..563a06ed 100644 --- a/docs/source/locale/el/LC_MESSAGES/install.po +++ b/docs/source/locale/el/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-08-05 15:39+0000\n" "Last-Translator: george kitsoukakis \n" "Language-Team: el \n" @@ -43,7 +43,7 @@ msgid "You can download OnionShare for Mobile from the follow links" msgstr "" "Κάντε λήψη του OnionShare για κινητό τηλέφωνο από τους παρακάτω συνδέσμους" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -59,7 +59,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -371,7 +371,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee:" @@ -391,7 +391,7 @@ msgstr "" "openpgp.org `_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta:" @@ -411,7 +411,7 @@ msgstr "" "openpgp.org `_." -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/el/LC_MESSAGES/security.po b/docs/source/locale/el/LC_MESSAGES/security.po index 31b42063..54c59550 100644 --- a/docs/source/locale/el/LC_MESSAGES/security.po +++ b/docs/source/locale/el/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-10-28 04:15+0000\n" "Last-Translator: george kitsoukakis \n" "Language-Team: el \n" diff --git a/docs/source/locale/el/LC_MESSAGES/sphinx.po b/docs/source/locale/el/LC_MESSAGES/sphinx.po index 3baf13d4..0868ab40 100644 --- a/docs/source/locale/el/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/el/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-28 11:28+0000\n" "Last-Translator: george k \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/el/LC_MESSAGES/tor.po b/docs/source/locale/el/LC_MESSAGES/tor.po index 3f4a6776..57627160 100644 --- a/docs/source/locale/el/LC_MESSAGES/tor.po +++ b/docs/source/locale/el/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-14 17:22+0000\n" "Last-Translator: george kitsoukakis \n" "Language-Team: el \n" diff --git a/docs/source/locale/en/LC_MESSAGES/advanced.po b/docs/source/locale/en/LC_MESSAGES/advanced.po index efb3b738..1591ce1f 100644 --- a/docs/source/locale/en/LC_MESSAGES/advanced.po +++ b/docs/source/locale/en/LC_MESSAGES/advanced.po @@ -8,14 +8,14 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-09 10:21+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.17.0\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" @@ -349,6 +349,552 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the " +"Desktop versions use this configuration file. The CLI also lets you " +"specify a path to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled'," +" 'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is" +" set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). " +"This setting is only valid for MacOS or Windows installations. Default: " +"True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are" +" \"built-in\" (bridges shipped with OnionShare and which may get updated " +"from Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" " +"(user-supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type " +"of bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's" +" Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'." +" Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +#, python-brace-format +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the " +"latest built-in bridges recommended by Tor and stores them here. Default:" +" {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en')." +" For valid locale codes, see 'available_locales' in " +"https://github.com/onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 " +"(automatically detect the user's computer's light or dark theme), 1 " +"(light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own " +"which are stored in its own JSON file. The path to this file can be " +"specified for the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and " +"what they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's " +"side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", " +"\"receive\", \"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option" +" is unchecked in the desktop, this entire JSON file is deleted. Default: " +"true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare " +"starts and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: " +"null (\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"stop-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the " +"'.onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the " +"first time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: " +"false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: " +"the 'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text" +" messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security " +"Policy header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "Services scheduled to start in the " #~ "future display a countdown timer when" @@ -385,3 +931,10 @@ msgstr "" #~ "anyone.__" #~ msgstr "" +#~ msgid "" +#~ "The port number of Tor's SOCKS " +#~ "proxy, if ``connection_type`` is set to" +#~ " 'control_port' or 'socket_file'. Default: " +#~ "'127.0.0.1'" +#~ msgstr "" + diff --git a/docs/source/locale/eo/LC_MESSAGES/advanced.po b/docs/source/locale/eo/LC_MESSAGES/advanced.po index d806a377..4078d4bf 100644 --- a/docs/source/locale/eo/LC_MESSAGES/advanced.po +++ b/docs/source/locale/eo/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/eo/LC_MESSAGES/develop.po b/docs/source/locale/eo/LC_MESSAGES/develop.po index 31f4b355..dce72653 100644 --- a/docs/source/locale/eo/LC_MESSAGES/develop.po +++ b/docs/source/locale/eo/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/eo/LC_MESSAGES/features.po b/docs/source/locale/eo/LC_MESSAGES/features.po index e0e573d0..475a9b38 100644 --- a/docs/source/locale/eo/LC_MESSAGES/features.po +++ b/docs/source/locale/eo/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/eo/LC_MESSAGES/help.po b/docs/source/locale/eo/LC_MESSAGES/help.po index c4d2fd6d..e636dad8 100644 --- a/docs/source/locale/eo/LC_MESSAGES/help.po +++ b/docs/source/locale/eo/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/eo/LC_MESSAGES/index.po b/docs/source/locale/eo/LC_MESSAGES/index.po index 5ae28814..f98e1445 100644 --- a/docs/source/locale/eo/LC_MESSAGES/index.po +++ b/docs/source/locale/eo/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-08-21 10:30+0000\n" "Last-Translator: Assem Askarova \n" diff --git a/docs/source/locale/eo/LC_MESSAGES/install.po b/docs/source/locale/eo/LC_MESSAGES/install.po index 4c364ac0..2e78b0cb 100644 --- a/docs/source/locale/eo/LC_MESSAGES/install.po +++ b/docs/source/locale/eo/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/eo/LC_MESSAGES/security.po b/docs/source/locale/eo/LC_MESSAGES/security.po index 1ef3f430..9dfcd0bb 100644 --- a/docs/source/locale/eo/LC_MESSAGES/security.po +++ b/docs/source/locale/eo/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/eo/LC_MESSAGES/sphinx.po b/docs/source/locale/eo/LC_MESSAGES/sphinx.po index 81803af5..07e1e572 100644 --- a/docs/source/locale/eo/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/eo/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/eo/LC_MESSAGES/tor.po b/docs/source/locale/eo/LC_MESSAGES/tor.po index 71c97062..d0f45a46 100644 --- a/docs/source/locale/eo/LC_MESSAGES/tor.po +++ b/docs/source/locale/eo/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/es/LC_MESSAGES/advanced.po b/docs/source/locale/es/LC_MESSAGES/advanced.po index f709345a..d2e9e385 100644 --- a/docs/source/locale/es/LC_MESSAGES/advanced.po +++ b/docs/source/locale/es/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2023-06-02 11:21+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.17.0\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" @@ -406,6 +406,550 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +#, fuzzy +msgid "private_key" +msgstr "Desactivar la Clave Privada" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +#, fuzzy +msgid "share" +msgstr "Uso" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +#, fuzzy +msgid "custom_csp" +msgstr "Títulos Personalizados" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "By default, everything in OnionShare is temporary. As soon as you close " #~ "an OnionShare tab its address no longer exists and can't be used again. " diff --git a/docs/source/locale/es/LC_MESSAGES/develop.po b/docs/source/locale/es/LC_MESSAGES/develop.po index e25f6327..a2d3713a 100644 --- a/docs/source/locale/es/LC_MESSAGES/develop.po +++ b/docs/source/locale/es/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-01-13 14:50+0000\n" "Last-Translator: gallegonovato \n" "Language-Team: none\n" diff --git a/docs/source/locale/es/LC_MESSAGES/features.po b/docs/source/locale/es/LC_MESSAGES/features.po index 61b1acb5..d6bfbaa7 100644 --- a/docs/source/locale/es/LC_MESSAGES/features.po +++ b/docs/source/locale/es/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-03 17:52+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/es/LC_MESSAGES/help.po b/docs/source/locale/es/LC_MESSAGES/help.po index 615b2b29..406125f9 100644 --- a/docs/source/locale/es/LC_MESSAGES/help.po +++ b/docs/source/locale/es/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-01-21 19:12+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: none\n" diff --git a/docs/source/locale/es/LC_MESSAGES/index.po b/docs/source/locale/es/LC_MESSAGES/index.po index b4d94873..dbc51d32 100644 --- a/docs/source/locale/es/LC_MESSAGES/index.po +++ b/docs/source/locale/es/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-09-14 21:36+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/es/LC_MESSAGES/install.po b/docs/source/locale/es/LC_MESSAGES/install.po index 960ef75c..553809e1 100644 --- a/docs/source/locale/es/LC_MESSAGES/install.po +++ b/docs/source/locale/es/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-03-22 16:07+0000\n" "Last-Translator: gallegonovato \n" "Language-Team: none\n" @@ -44,7 +44,7 @@ msgstr "" "Puede descargar OnionShare para dispositivos móviles desde los siguientes " "enlaces" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -60,7 +60,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -399,7 +399,7 @@ msgstr "" "versión. A continuación se muestra la información de los desarrolladores " "principales de OnionShare:" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee:" @@ -420,7 +420,7 @@ msgstr "" "org `_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta:" @@ -441,7 +441,7 @@ msgstr "" "org `_." -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/es/LC_MESSAGES/security.po b/docs/source/locale/es/LC_MESSAGES/security.po index ea4334f5..ac078a2c 100644 --- a/docs/source/locale/es/LC_MESSAGES/security.po +++ b/docs/source/locale/es/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-08-28 18:21+0000\n" "Last-Translator: eulalio \n" "Language-Team: none\n" diff --git a/docs/source/locale/es/LC_MESSAGES/sphinx.po b/docs/source/locale/es/LC_MESSAGES/sphinx.po index 9ba088e8..4ffc8f5d 100644 --- a/docs/source/locale/es/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/es/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-09-14 21:36+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/es/LC_MESSAGES/tor.po b/docs/source/locale/es/LC_MESSAGES/tor.po index 299d7244..8fa076da 100644 --- a/docs/source/locale/es/LC_MESSAGES/tor.po +++ b/docs/source/locale/es/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-07 16:33+0000\n" "Last-Translator: gallegonovato \n" "Language-Team: none\n" diff --git a/docs/source/locale/fa/LC_MESSAGES/advanced.po b/docs/source/locale/fa/LC_MESSAGES/advanced.po index debf29d5..a3b131a0 100644 --- a/docs/source/locale/fa/LC_MESSAGES/advanced.po +++ b/docs/source/locale/fa/LC_MESSAGES/advanced.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -342,3 +342,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/fa/LC_MESSAGES/develop.po b/docs/source/locale/fa/LC_MESSAGES/develop.po index 348002db..b53930ac 100644 --- a/docs/source/locale/fa/LC_MESSAGES/develop.po +++ b/docs/source/locale/fa/LC_MESSAGES/develop.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/fa/LC_MESSAGES/features.po b/docs/source/locale/fa/LC_MESSAGES/features.po index 0b315ef1..2fd76557 100644 --- a/docs/source/locale/fa/LC_MESSAGES/features.po +++ b/docs/source/locale/fa/LC_MESSAGES/features.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/fa/LC_MESSAGES/help.po b/docs/source/locale/fa/LC_MESSAGES/help.po index 04607c6b..84e33d66 100644 --- a/docs/source/locale/fa/LC_MESSAGES/help.po +++ b/docs/source/locale/fa/LC_MESSAGES/help.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/fa/LC_MESSAGES/index.po b/docs/source/locale/fa/LC_MESSAGES/index.po index 29e751ac..83a53649 100644 --- a/docs/source/locale/fa/LC_MESSAGES/index.po +++ b/docs/source/locale/fa/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-10-19 19:38+0000\n" "Last-Translator: Danial Behzadi \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/fa/LC_MESSAGES/install.po b/docs/source/locale/fa/LC_MESSAGES/install.po index 5cf1860f..f0ad44a6 100644 --- a/docs/source/locale/fa/LC_MESSAGES/install.po +++ b/docs/source/locale/fa/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-06-13 13:09+0000\n" "Last-Translator: Danial Behzadi \n" "Language-Team: LANGUAGE \n" @@ -41,7 +41,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "اندروید" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "اف‌دروید: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "آی‌اواس" @@ -313,7 +313,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -329,7 +329,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -345,7 +345,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/fa/LC_MESSAGES/security.po b/docs/source/locale/fa/LC_MESSAGES/security.po index d55a381b..871a9d12 100644 --- a/docs/source/locale/fa/LC_MESSAGES/security.po +++ b/docs/source/locale/fa/LC_MESSAGES/security.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/fa/LC_MESSAGES/sphinx.po b/docs/source/locale/fa/LC_MESSAGES/sphinx.po index 6b351aae..4eb6f1e3 100644 --- a/docs/source/locale/fa/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/fa/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-11-14 19:42+0000\n" "Last-Translator: Rezaparsanilo \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/fa/LC_MESSAGES/tor.po b/docs/source/locale/fa/LC_MESSAGES/tor.po index b0cf2bfc..a526b41c 100644 --- a/docs/source/locale/fa/LC_MESSAGES/tor.po +++ b/docs/source/locale/fa/LC_MESSAGES/tor.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/fi/LC_MESSAGES/advanced.po b/docs/source/locale/fi/LC_MESSAGES/advanced.po index 6a5eee7c..92a75ed3 100644 --- a/docs/source/locale/fi/LC_MESSAGES/advanced.po +++ b/docs/source/locale/fi/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2021-08-24 17:33+0000\n" "Last-Translator: Kaantaja \n" "Language-Team: none\n" @@ -393,6 +393,547 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "Everything in OnionShare is temporary by default. If you close an " #~ "OnionShare tab, its address no longer exists and it can't be used again. " diff --git a/docs/source/locale/fi/LC_MESSAGES/develop.po b/docs/source/locale/fi/LC_MESSAGES/develop.po index e38380a9..4a802727 100644 --- a/docs/source/locale/fi/LC_MESSAGES/develop.po +++ b/docs/source/locale/fi/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-31 17:07+0000\n" "Last-Translator: Ricky Tigg \n" "Language-Team: none\n" diff --git a/docs/source/locale/fi/LC_MESSAGES/features.po b/docs/source/locale/fi/LC_MESSAGES/features.po index 0b3d77fe..bddb0e79 100644 --- a/docs/source/locale/fi/LC_MESSAGES/features.po +++ b/docs/source/locale/fi/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-31 17:07+0000\n" "Last-Translator: Ricky Tigg \n" "Language-Team: none\n" diff --git a/docs/source/locale/fi/LC_MESSAGES/help.po b/docs/source/locale/fi/LC_MESSAGES/help.po index 6fa540d1..7a839942 100644 --- a/docs/source/locale/fi/LC_MESSAGES/help.po +++ b/docs/source/locale/fi/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-08-24 17:33+0000\n" "Last-Translator: Kaantaja \n" "Language-Team: none\n" diff --git a/docs/source/locale/fi/LC_MESSAGES/index.po b/docs/source/locale/fi/LC_MESSAGES/index.po index ad8413c8..51c3d2d1 100644 --- a/docs/source/locale/fi/LC_MESSAGES/index.po +++ b/docs/source/locale/fi/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-08-24 17:33+0000\n" "Last-Translator: Kaantaja \n" "Language-Team: none\n" diff --git a/docs/source/locale/fi/LC_MESSAGES/install.po b/docs/source/locale/fi/LC_MESSAGES/install.po index 6ae7365d..ebd0e0f3 100644 --- a/docs/source/locale/fi/LC_MESSAGES/install.po +++ b/docs/source/locale/fi/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-31 17:07+0000\n" "Last-Translator: Ricky Tigg \n" "Language-Team: none\n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -334,7 +334,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -353,7 +353,7 @@ msgstr "" "keys.openpgp.org/vks/v1/by-" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -369,7 +369,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/fi/LC_MESSAGES/security.po b/docs/source/locale/fi/LC_MESSAGES/security.po index 04472156..ab9d5940 100644 --- a/docs/source/locale/fi/LC_MESSAGES/security.po +++ b/docs/source/locale/fi/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-31 17:07+0000\n" "Last-Translator: Ricky Tigg \n" "Language-Team: none\n" diff --git a/docs/source/locale/fi/LC_MESSAGES/sphinx.po b/docs/source/locale/fi/LC_MESSAGES/sphinx.po index 99e3a03f..a9e77bc9 100644 --- a/docs/source/locale/fi/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/fi/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-08-24 17:33+0000\n" "Last-Translator: Kaantaja \n" "Language-Team: none\n" diff --git a/docs/source/locale/fi/LC_MESSAGES/tor.po b/docs/source/locale/fi/LC_MESSAGES/tor.po index 41c07f78..353a3577 100644 --- a/docs/source/locale/fi/LC_MESSAGES/tor.po +++ b/docs/source/locale/fi/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-31 17:07+0000\n" "Last-Translator: Ricky Tigg \n" "Language-Team: none\n" diff --git a/docs/source/locale/fil/LC_MESSAGES/develop.po b/docs/source/locale/fil/LC_MESSAGES/develop.po index 89b04b54..31f2078e 100644 --- a/docs/source/locale/fil/LC_MESSAGES/develop.po +++ b/docs/source/locale/fil/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-12-07 23:55+0000\n" "Last-Translator: Cyndaquissshhh \n" "Language-Team: none\n" diff --git a/docs/source/locale/fil/LC_MESSAGES/index.po b/docs/source/locale/fil/LC_MESSAGES/index.po index 84c77fd3..788f6204 100644 --- a/docs/source/locale/fil/LC_MESSAGES/index.po +++ b/docs/source/locale/fil/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-12-07 23:55+0000\n" "Last-Translator: Cyndaquissshhh \n" "Language-Team: none\n" diff --git a/docs/source/locale/fr/LC_MESSAGES/advanced.po b/docs/source/locale/fr/LC_MESSAGES/advanced.po index 4d441dec..2559d7a8 100644 --- a/docs/source/locale/fr/LC_MESSAGES/advanced.po +++ b/docs/source/locale/fr/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2024-04-03 16:01+0000\n" "Last-Translator: AO Localisation Lab \n" "Language-Team: none\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.17.0\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" @@ -407,6 +407,550 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +#, fuzzy +msgid "private_key" +msgstr "Désactiver la Clé Privée" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +#, fuzzy +msgid "share" +msgstr "Utilisation" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +#, fuzzy +msgid "custom_csp" +msgstr "Titres personnalisés" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "Everything in OnionShare is temporary by default. If you close an " #~ "OnionShare tab, its address no longer exists and it can't be used again. " diff --git a/docs/source/locale/fr/LC_MESSAGES/develop.po b/docs/source/locale/fr/LC_MESSAGES/develop.po index 0df25894..a79a7b68 100644 --- a/docs/source/locale/fr/LC_MESSAGES/develop.po +++ b/docs/source/locale/fr/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-03-15 19:57+0000\n" "Last-Translator: aezjrareareare \n" "Language-Team: none\n" diff --git a/docs/source/locale/fr/LC_MESSAGES/features.po b/docs/source/locale/fr/LC_MESSAGES/features.po index c367badc..b2a3e20b 100644 --- a/docs/source/locale/fr/LC_MESSAGES/features.po +++ b/docs/source/locale/fr/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-03 16:01+0000\n" "Last-Translator: AO Localisation Lab \n" "Language-Team: none\n" diff --git a/docs/source/locale/fr/LC_MESSAGES/help.po b/docs/source/locale/fr/LC_MESSAGES/help.po index 9bbc4e38..5c4f5eca 100644 --- a/docs/source/locale/fr/LC_MESSAGES/help.po +++ b/docs/source/locale/fr/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-05-03 21:13+0000\n" "Last-Translator: aezjrareareare \n" "Language-Team: none\n" diff --git a/docs/source/locale/fr/LC_MESSAGES/index.po b/docs/source/locale/fr/LC_MESSAGES/index.po index 0ae827f3..64c4e444 100644 --- a/docs/source/locale/fr/LC_MESSAGES/index.po +++ b/docs/source/locale/fr/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-02-29 00:02+0000\n" "Last-Translator: AO Localisation Lab \n" "Language-Team: none\n" diff --git a/docs/source/locale/fr/LC_MESSAGES/install.po b/docs/source/locale/fr/LC_MESSAGES/install.po index 0211fe4b..1906c965 100644 --- a/docs/source/locale/fr/LC_MESSAGES/install.po +++ b/docs/source/locale/fr/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-06 09:02+0000\n" "Last-Translator: aleksej0R \n" "Language-Team: none\n" @@ -43,7 +43,7 @@ msgid "You can download OnionShare for Mobile from the follow links" msgstr "" "Vous pouvez télécharger OnionShare pour mobile depuis les liens suivants" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -59,7 +59,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid : https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -368,7 +368,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee :" @@ -390,7 +390,7 @@ msgstr "" "`depuis le serveur de clé openpgp.org. `_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta :" @@ -406,7 +406,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/fr/LC_MESSAGES/security.po b/docs/source/locale/fr/LC_MESSAGES/security.po index ccaec9a2..efbce80f 100644 --- a/docs/source/locale/fr/LC_MESSAGES/security.po +++ b/docs/source/locale/fr/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-03 16:01+0000\n" "Last-Translator: AO Localisation Lab \n" "Language-Team: none\n" diff --git a/docs/source/locale/fr/LC_MESSAGES/sphinx.po b/docs/source/locale/fr/LC_MESSAGES/sphinx.po index 3f8b7dff..02aceb9b 100644 --- a/docs/source/locale/fr/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/fr/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-19 08:28+0000\n" "Last-Translator: EdwardCage \n" "Language-Team: none\n" diff --git a/docs/source/locale/fr/LC_MESSAGES/tor.po b/docs/source/locale/fr/LC_MESSAGES/tor.po index d16df96a..0aa18624 100644 --- a/docs/source/locale/fr/LC_MESSAGES/tor.po +++ b/docs/source/locale/fr/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-12-09 16:00+0000\n" "Last-Translator: AO Localisation Lab \n" "Language-Team: none\n" diff --git a/docs/source/locale/ga/LC_MESSAGES/advanced.po b/docs/source/locale/ga/LC_MESSAGES/advanced.po index 9fb1d725..18b85851 100644 --- a/docs/source/locale/ga/LC_MESSAGES/advanced.po +++ b/docs/source/locale/ga/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2025-02-11 08:01+0000\n" "Last-Translator: Aindriú Mac Giolla Eoin \n" "Language-Team: LANGUAGE \n" @@ -456,3 +456,544 @@ msgstr "macOS: ``~/Library/Application Support/OnionShare``" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "Windows: ``%APPDATA%\\OnionShare``" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/ga/LC_MESSAGES/develop.po b/docs/source/locale/ga/LC_MESSAGES/develop.po index 83adc869..970b3d43 100644 --- a/docs/source/locale/ga/LC_MESSAGES/develop.po +++ b/docs/source/locale/ga/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-07-13 10:09+0000\n" "Last-Translator: Aindriú Mac Giolla Eoin \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ga/LC_MESSAGES/features.po b/docs/source/locale/ga/LC_MESSAGES/features.po index 647317c2..1b9664b2 100644 --- a/docs/source/locale/ga/LC_MESSAGES/features.po +++ b/docs/source/locale/ga/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-11 08:01+0000\n" "Last-Translator: Aindriú Mac Giolla Eoin \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ga/LC_MESSAGES/help.po b/docs/source/locale/ga/LC_MESSAGES/help.po index 4dd288ed..73643407 100644 --- a/docs/source/locale/ga/LC_MESSAGES/help.po +++ b/docs/source/locale/ga/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-07-09 19:28+0000\n" "Last-Translator: Aindriú Mac Giolla Eoin \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ga/LC_MESSAGES/index.po b/docs/source/locale/ga/LC_MESSAGES/index.po index 3be820f0..97ea583e 100644 --- a/docs/source/locale/ga/LC_MESSAGES/index.po +++ b/docs/source/locale/ga/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-03-31 16:38+0000\n" "Last-Translator: Kevin Scannell \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ga/LC_MESSAGES/install.po b/docs/source/locale/ga/LC_MESSAGES/install.po index af127216..adcf38be 100644 --- a/docs/source/locale/ga/LC_MESSAGES/install.po +++ b/docs/source/locale/ga/LC_MESSAGES/install.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" -"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-12 22:02+0000\n" "Last-Translator: Aindriú Mac Giolla Eoin \n" "Language-Team: LANGUAGE \n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :(" -"n>6 && n<11) ? 3 : 4;\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :" +"(n>6 && n<11) ? 3 : 4;\n" "X-Generator: Weblate 5.10-dev\n" "Generated-By: Babel 2.9.0\n" @@ -45,7 +45,7 @@ msgid "You can download OnionShare for Mobile from the follow links" msgstr "" "Is féidir leat OnionShare for Mobile a íoslódáil ó na naisc seo a leanas" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -61,7 +61,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -405,7 +405,7 @@ msgstr "" "pacáistí. Seo é an príomhfhaisnéis GPG do gach ceann de na forbróirí " "lárnacha de OnionShare:" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee:" @@ -425,7 +425,7 @@ msgstr "" "`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta:" @@ -445,7 +445,7 @@ msgstr "" "openpgp.org `_." -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "Miguel Jacq:" @@ -461,9 +461,9 @@ msgid "" "keys.openpgp.org/vks/v1/by-" "fingerprint/00AE817C24A10C2540461A9C1D7CDE0234DB458D>`_." msgstr "" -"Is féidir leat eochair Miguel `a íoslódáil ón bhfreastalaí eochracha " -"keys.openpgp.org `_." +"Is féidir leat eochair Miguel `a íoslódáil ón bhfreastalaí eochracha keys." +"openpgp.org `_." #: ../../source/install.rst:132 msgid "" diff --git a/docs/source/locale/ga/LC_MESSAGES/security.po b/docs/source/locale/ga/LC_MESSAGES/security.po index 80d39635..a8551e68 100644 --- a/docs/source/locale/ga/LC_MESSAGES/security.po +++ b/docs/source/locale/ga/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-07-11 15:09+0000\n" "Last-Translator: Aindriú Mac Giolla Eoin \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ga/LC_MESSAGES/sphinx.po b/docs/source/locale/ga/LC_MESSAGES/sphinx.po index 032cd201..75d16fbc 100644 --- a/docs/source/locale/ga/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/ga/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-09-18 20:19+0000\n" "Last-Translator: Kevin Scannell \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ga/LC_MESSAGES/tor.po b/docs/source/locale/ga/LC_MESSAGES/tor.po index 48d385e8..be09449a 100644 --- a/docs/source/locale/ga/LC_MESSAGES/tor.po +++ b/docs/source/locale/ga/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-07-20 12:09+0000\n" "Last-Translator: Aindriú Mac Giolla Eoin \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/gl/LC_MESSAGES/advanced.po b/docs/source/locale/gl/LC_MESSAGES/advanced.po index de72f1c9..10fe2632 100644 --- a/docs/source/locale/gl/LC_MESSAGES/advanced.po +++ b/docs/source/locale/gl/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/gl/LC_MESSAGES/develop.po b/docs/source/locale/gl/LC_MESSAGES/develop.po index 8cfc104b..fa5f9a83 100644 --- a/docs/source/locale/gl/LC_MESSAGES/develop.po +++ b/docs/source/locale/gl/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/gl/LC_MESSAGES/features.po b/docs/source/locale/gl/LC_MESSAGES/features.po index 540b0465..716511be 100644 --- a/docs/source/locale/gl/LC_MESSAGES/features.po +++ b/docs/source/locale/gl/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/gl/LC_MESSAGES/help.po b/docs/source/locale/gl/LC_MESSAGES/help.po index ea8ced84..78f0a2ff 100644 --- a/docs/source/locale/gl/LC_MESSAGES/help.po +++ b/docs/source/locale/gl/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/gl/LC_MESSAGES/index.po b/docs/source/locale/gl/LC_MESSAGES/index.po index 53b0299e..9d475614 100644 --- a/docs/source/locale/gl/LC_MESSAGES/index.po +++ b/docs/source/locale/gl/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-11-26 18:25+0000\n" "Last-Translator: gallegonovato \n" "Language-Team: none\n" diff --git a/docs/source/locale/gl/LC_MESSAGES/install.po b/docs/source/locale/gl/LC_MESSAGES/install.po index 4d7dc280..a27a8036 100644 --- a/docs/source/locale/gl/LC_MESSAGES/install.po +++ b/docs/source/locale/gl/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-03-26 23:27+0000\n" "Last-Translator: Xosé M \n" "Language-Team: none\n" @@ -40,7 +40,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -54,7 +54,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -309,7 +309,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -325,7 +325,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -341,7 +341,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/gl/LC_MESSAGES/security.po b/docs/source/locale/gl/LC_MESSAGES/security.po index e2bf992e..66da2c88 100644 --- a/docs/source/locale/gl/LC_MESSAGES/security.po +++ b/docs/source/locale/gl/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-11-30 10:47+0000\n" "Last-Translator: gallegonovato \n" "Language-Team: none\n" diff --git a/docs/source/locale/gl/LC_MESSAGES/sphinx.po b/docs/source/locale/gl/LC_MESSAGES/sphinx.po index fbb8186c..a870933d 100644 --- a/docs/source/locale/gl/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/gl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-11-30 10:47+0000\n" "Last-Translator: gallegonovato \n" "Language-Team: none\n" diff --git a/docs/source/locale/gl/LC_MESSAGES/tor.po b/docs/source/locale/gl/LC_MESSAGES/tor.po index 29bfe63a..a8432ea0 100644 --- a/docs/source/locale/gl/LC_MESSAGES/tor.po +++ b/docs/source/locale/gl/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/gu/LC_MESSAGES/advanced.po b/docs/source/locale/gu/LC_MESSAGES/advanced.po index 254b2be1..e50bae16 100644 --- a/docs/source/locale/gu/LC_MESSAGES/advanced.po +++ b/docs/source/locale/gu/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/gu/LC_MESSAGES/develop.po b/docs/source/locale/gu/LC_MESSAGES/develop.po index e9e6f6f7..dad045b8 100644 --- a/docs/source/locale/gu/LC_MESSAGES/develop.po +++ b/docs/source/locale/gu/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/gu/LC_MESSAGES/features.po b/docs/source/locale/gu/LC_MESSAGES/features.po index 2988e0f8..1e2cb564 100644 --- a/docs/source/locale/gu/LC_MESSAGES/features.po +++ b/docs/source/locale/gu/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/gu/LC_MESSAGES/help.po b/docs/source/locale/gu/LC_MESSAGES/help.po index 259a1c99..7c6a21a7 100644 --- a/docs/source/locale/gu/LC_MESSAGES/help.po +++ b/docs/source/locale/gu/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/gu/LC_MESSAGES/index.po b/docs/source/locale/gu/LC_MESSAGES/index.po index 6043d320..a116818d 100644 --- a/docs/source/locale/gu/LC_MESSAGES/index.po +++ b/docs/source/locale/gu/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/gu/LC_MESSAGES/install.po b/docs/source/locale/gu/LC_MESSAGES/install.po index c83b7d8d..c7383b83 100644 --- a/docs/source/locale/gu/LC_MESSAGES/install.po +++ b/docs/source/locale/gu/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/gu/LC_MESSAGES/security.po b/docs/source/locale/gu/LC_MESSAGES/security.po index 97461c28..151b059b 100644 --- a/docs/source/locale/gu/LC_MESSAGES/security.po +++ b/docs/source/locale/gu/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/gu/LC_MESSAGES/sphinx.po b/docs/source/locale/gu/LC_MESSAGES/sphinx.po index fc1a34b7..d311156c 100644 --- a/docs/source/locale/gu/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/gu/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/gu/LC_MESSAGES/tor.po b/docs/source/locale/gu/LC_MESSAGES/tor.po index cf8c2a28..3b5b7ef9 100644 --- a/docs/source/locale/gu/LC_MESSAGES/tor.po +++ b/docs/source/locale/gu/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/he/LC_MESSAGES/advanced.po b/docs/source/locale/he/LC_MESSAGES/advanced.po index 86a1407c..a92f170a 100644 --- a/docs/source/locale/he/LC_MESSAGES/advanced.po +++ b/docs/source/locale/he/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/he/LC_MESSAGES/develop.po b/docs/source/locale/he/LC_MESSAGES/develop.po index 9d6d7887..5e16b460 100644 --- a/docs/source/locale/he/LC_MESSAGES/develop.po +++ b/docs/source/locale/he/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/he/LC_MESSAGES/features.po b/docs/source/locale/he/LC_MESSAGES/features.po index 4eb86a47..7025888f 100644 --- a/docs/source/locale/he/LC_MESSAGES/features.po +++ b/docs/source/locale/he/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/he/LC_MESSAGES/help.po b/docs/source/locale/he/LC_MESSAGES/help.po index 17d70a5c..3fd3c510 100644 --- a/docs/source/locale/he/LC_MESSAGES/help.po +++ b/docs/source/locale/he/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/he/LC_MESSAGES/index.po b/docs/source/locale/he/LC_MESSAGES/index.po index 96d6b0b7..4dd9566d 100644 --- a/docs/source/locale/he/LC_MESSAGES/index.po +++ b/docs/source/locale/he/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/he/LC_MESSAGES/install.po b/docs/source/locale/he/LC_MESSAGES/install.po index 10cbf428..4f33a415 100644 --- a/docs/source/locale/he/LC_MESSAGES/install.po +++ b/docs/source/locale/he/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/he/LC_MESSAGES/security.po b/docs/source/locale/he/LC_MESSAGES/security.po index b08d38c2..386bd62e 100644 --- a/docs/source/locale/he/LC_MESSAGES/security.po +++ b/docs/source/locale/he/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/he/LC_MESSAGES/sphinx.po b/docs/source/locale/he/LC_MESSAGES/sphinx.po index 1d6230f7..e2328e5f 100644 --- a/docs/source/locale/he/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/he/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/he/LC_MESSAGES/tor.po b/docs/source/locale/he/LC_MESSAGES/tor.po index da023302..af9ab013 100644 --- a/docs/source/locale/he/LC_MESSAGES/tor.po +++ b/docs/source/locale/he/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/hi/LC_MESSAGES/advanced.po b/docs/source/locale/hi/LC_MESSAGES/advanced.po index d63897f1..bfb40033 100644 --- a/docs/source/locale/hi/LC_MESSAGES/advanced.po +++ b/docs/source/locale/hi/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/hi/LC_MESSAGES/develop.po b/docs/source/locale/hi/LC_MESSAGES/develop.po index b2b110c8..b832be63 100644 --- a/docs/source/locale/hi/LC_MESSAGES/develop.po +++ b/docs/source/locale/hi/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/hi/LC_MESSAGES/features.po b/docs/source/locale/hi/LC_MESSAGES/features.po index 4a09318b..555d8269 100644 --- a/docs/source/locale/hi/LC_MESSAGES/features.po +++ b/docs/source/locale/hi/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/hi/LC_MESSAGES/help.po b/docs/source/locale/hi/LC_MESSAGES/help.po index 6f8c4869..4451b46f 100644 --- a/docs/source/locale/hi/LC_MESSAGES/help.po +++ b/docs/source/locale/hi/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/hi/LC_MESSAGES/index.po b/docs/source/locale/hi/LC_MESSAGES/index.po index 5f660d84..931e91ab 100644 --- a/docs/source/locale/hi/LC_MESSAGES/index.po +++ b/docs/source/locale/hi/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/hi/LC_MESSAGES/install.po b/docs/source/locale/hi/LC_MESSAGES/install.po index 636539c0..4bf40555 100644 --- a/docs/source/locale/hi/LC_MESSAGES/install.po +++ b/docs/source/locale/hi/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/hi/LC_MESSAGES/security.po b/docs/source/locale/hi/LC_MESSAGES/security.po index 7896b33c..f5392783 100644 --- a/docs/source/locale/hi/LC_MESSAGES/security.po +++ b/docs/source/locale/hi/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/hi/LC_MESSAGES/sphinx.po b/docs/source/locale/hi/LC_MESSAGES/sphinx.po index 379dc9db..49410644 100644 --- a/docs/source/locale/hi/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/hi/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/hi/LC_MESSAGES/tor.po b/docs/source/locale/hi/LC_MESSAGES/tor.po index c9c8d457..451f0b96 100644 --- a/docs/source/locale/hi/LC_MESSAGES/tor.po +++ b/docs/source/locale/hi/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/hr/LC_MESSAGES/advanced.po b/docs/source/locale/hr/LC_MESSAGES/advanced.po index 09a6b0b0..cbf5be12 100644 --- a/docs/source/locale/hr/LC_MESSAGES/advanced.po +++ b/docs/source/locale/hr/LC_MESSAGES/advanced.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" -"PO-Revision-Date: 2024-06-14 08:17+0000\n" +"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" +"PO-Revision-Date: 2025-02-17 14:01+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: none\n" "Language: hr\n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "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" -"X-Generator: Weblate 5.6-dev\n" +"X-Generator: Weblate 5.10.1-dev\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" @@ -101,7 +101,7 @@ msgstr "" #: ../../source/advanced.rst:45 msgid "Scheduled Times" -msgstr "Planiranje" +msgstr "Planirana vremena" #: ../../source/advanced.rst:47 msgid "" @@ -142,7 +142,7 @@ msgstr "Sučelje naredbenog retka" msgid "" "In addition to its graphical interface, OnionShare has a command-line " "interface." -msgstr "Pored grafičkog sučelja, OnionShare ima sučelje naredbenog retka." +msgstr "Pored grafičkog sučelja, OnionShare ima sučelje za naredbeni redak." #: ../../source/advanced.rst:73 msgid "Installing the CLI version" @@ -357,6 +357,547 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "Turn Off Passwords" #~ msgstr "Isključi lozinke" diff --git a/docs/source/locale/hr/LC_MESSAGES/develop.po b/docs/source/locale/hr/LC_MESSAGES/develop.po index f1980e82..657f4500 100644 --- a/docs/source/locale/hr/LC_MESSAGES/develop.po +++ b/docs/source/locale/hr/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-11-28 13:05+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: none\n" diff --git a/docs/source/locale/hr/LC_MESSAGES/features.po b/docs/source/locale/hr/LC_MESSAGES/features.po index 4ea4485b..bd0560ea 100644 --- a/docs/source/locale/hr/LC_MESSAGES/features.po +++ b/docs/source/locale/hr/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/hr/LC_MESSAGES/help.po b/docs/source/locale/hr/LC_MESSAGES/help.po index 344264bd..7ef35d66 100644 --- a/docs/source/locale/hr/LC_MESSAGES/help.po +++ b/docs/source/locale/hr/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-03-26 13:29+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: none\n" diff --git a/docs/source/locale/hr/LC_MESSAGES/index.po b/docs/source/locale/hr/LC_MESSAGES/index.po index 4a9304a7..ea5f2da4 100644 --- a/docs/source/locale/hr/LC_MESSAGES/index.po +++ b/docs/source/locale/hr/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-07-27 13:32+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: none\n" diff --git a/docs/source/locale/hr/LC_MESSAGES/install.po b/docs/source/locale/hr/LC_MESSAGES/install.po index b2954ecd..b0457beb 100644 --- a/docs/source/locale/hr/LC_MESSAGES/install.po +++ b/docs/source/locale/hr/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-11-28 13:05+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: none\n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -318,7 +318,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -334,7 +334,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -350,7 +350,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/hr/LC_MESSAGES/security.po b/docs/source/locale/hr/LC_MESSAGES/security.po index 27339dd0..907b7dac 100644 --- a/docs/source/locale/hr/LC_MESSAGES/security.po +++ b/docs/source/locale/hr/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/hr/LC_MESSAGES/sphinx.po b/docs/source/locale/hr/LC_MESSAGES/sphinx.po index 7b1fbff4..094f8706 100644 --- a/docs/source/locale/hr/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/hr/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-12-17 19:29+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: none\n" diff --git a/docs/source/locale/hr/LC_MESSAGES/tor.po b/docs/source/locale/hr/LC_MESSAGES/tor.po index ab4fe965..c7425a19 100644 --- a/docs/source/locale/hr/LC_MESSAGES/tor.po +++ b/docs/source/locale/hr/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-01-31 10:01+0000\n" "Last-Translator: Milo Ivir \n" "Language-Team: none\n" diff --git a/docs/source/locale/hu/LC_MESSAGES/advanced.po b/docs/source/locale/hu/LC_MESSAGES/advanced.po index 22ca5625..f22fc0d6 100644 --- a/docs/source/locale/hu/LC_MESSAGES/advanced.po +++ b/docs/source/locale/hu/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2024-04-21 10:07+0000\n" "Last-Translator: Jenő László \n" "Language-Team: none\n" @@ -346,3 +346,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/hu/LC_MESSAGES/develop.po b/docs/source/locale/hu/LC_MESSAGES/develop.po index dd8c76f3..47ae8d11 100644 --- a/docs/source/locale/hu/LC_MESSAGES/develop.po +++ b/docs/source/locale/hu/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-21 10:07+0000\n" "Last-Translator: Jenő László \n" "Language-Team: none\n" diff --git a/docs/source/locale/hu/LC_MESSAGES/features.po b/docs/source/locale/hu/LC_MESSAGES/features.po index d60df798..ff636a84 100644 --- a/docs/source/locale/hu/LC_MESSAGES/features.po +++ b/docs/source/locale/hu/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-21 10:07+0000\n" "Last-Translator: Jenő László \n" "Language-Team: none\n" diff --git a/docs/source/locale/hu/LC_MESSAGES/help.po b/docs/source/locale/hu/LC_MESSAGES/help.po index c2d068ec..48179fff 100644 --- a/docs/source/locale/hu/LC_MESSAGES/help.po +++ b/docs/source/locale/hu/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-21 10:07+0000\n" "Last-Translator: Jenő László \n" "Language-Team: none\n" diff --git a/docs/source/locale/hu/LC_MESSAGES/index.po b/docs/source/locale/hu/LC_MESSAGES/index.po index 145654e2..9e211d25 100644 --- a/docs/source/locale/hu/LC_MESSAGES/index.po +++ b/docs/source/locale/hu/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-21 10:07+0000\n" "Last-Translator: Jenő László \n" "Language-Team: none\n" diff --git a/docs/source/locale/hu/LC_MESSAGES/install.po b/docs/source/locale/hu/LC_MESSAGES/install.po index 07c5db62..ad56410f 100644 --- a/docs/source/locale/hu/LC_MESSAGES/install.po +++ b/docs/source/locale/hu/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-21 10:07+0000\n" "Last-Translator: Jenő László \n" "Language-Team: none\n" @@ -42,7 +42,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -56,7 +56,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -311,7 +311,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -327,7 +327,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -343,7 +343,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/hu/LC_MESSAGES/security.po b/docs/source/locale/hu/LC_MESSAGES/security.po index e77bbdce..c409970b 100644 --- a/docs/source/locale/hu/LC_MESSAGES/security.po +++ b/docs/source/locale/hu/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-21 10:07+0000\n" "Last-Translator: Jenő László \n" "Language-Team: none\n" diff --git a/docs/source/locale/hu/LC_MESSAGES/sphinx.po b/docs/source/locale/hu/LC_MESSAGES/sphinx.po index 12831e8a..a54d71ae 100644 --- a/docs/source/locale/hu/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/hu/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-21 10:07+0000\n" "Last-Translator: Jenő László \n" "Language-Team: none\n" diff --git a/docs/source/locale/hu/LC_MESSAGES/tor.po b/docs/source/locale/hu/LC_MESSAGES/tor.po index d39eadc5..381c7c49 100644 --- a/docs/source/locale/hu/LC_MESSAGES/tor.po +++ b/docs/source/locale/hu/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-21 10:07+0000\n" "Last-Translator: Jenő László \n" "Language-Team: none\n" diff --git a/docs/source/locale/ia/LC_MESSAGES/index.po b/docs/source/locale/ia/LC_MESSAGES/index.po index 6a72ce0d..cfcf2975 100644 --- a/docs/source/locale/ia/LC_MESSAGES/index.po +++ b/docs/source/locale/ia/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-09-26 16:15+0000\n" "Last-Translator: Software In Interlingua \n" "Language-Team: none\n" diff --git a/docs/source/locale/ia/LC_MESSAGES/tor.po b/docs/source/locale/ia/LC_MESSAGES/tor.po index cd06ad03..0777ee36 100644 --- a/docs/source/locale/ia/LC_MESSAGES/tor.po +++ b/docs/source/locale/ia/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/id/LC_MESSAGES/advanced.po b/docs/source/locale/id/LC_MESSAGES/advanced.po index 3772ff89..1a799056 100644 --- a/docs/source/locale/id/LC_MESSAGES/advanced.po +++ b/docs/source/locale/id/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2024-03-20 20:01+0000\n" "Last-Translator: Reza Almanda \n" "Language-Team: none\n" @@ -342,3 +342,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/id/LC_MESSAGES/develop.po b/docs/source/locale/id/LC_MESSAGES/develop.po index 0e130356..f002b126 100644 --- a/docs/source/locale/id/LC_MESSAGES/develop.po +++ b/docs/source/locale/id/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/id/LC_MESSAGES/features.po b/docs/source/locale/id/LC_MESSAGES/features.po index 867ec0a9..5587f2f6 100644 --- a/docs/source/locale/id/LC_MESSAGES/features.po +++ b/docs/source/locale/id/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/id/LC_MESSAGES/help.po b/docs/source/locale/id/LC_MESSAGES/help.po index ff2eb450..f244189f 100644 --- a/docs/source/locale/id/LC_MESSAGES/help.po +++ b/docs/source/locale/id/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/id/LC_MESSAGES/index.po b/docs/source/locale/id/LC_MESSAGES/index.po index f51adf64..af089d4d 100644 --- a/docs/source/locale/id/LC_MESSAGES/index.po +++ b/docs/source/locale/id/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-05-07 18:32+0000\n" "Last-Translator: Algustionesa Yoshi \n" "Language-Team: none\n" diff --git a/docs/source/locale/id/LC_MESSAGES/install.po b/docs/source/locale/id/LC_MESSAGES/install.po index 5707a24b..789043d0 100644 --- a/docs/source/locale/id/LC_MESSAGES/install.po +++ b/docs/source/locale/id/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-11-03 05:01+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" @@ -42,7 +42,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -56,7 +56,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -326,7 +326,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -348,7 +348,7 @@ msgstr "" "Micah `dari server kunci keys.openpgp.org `_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -364,7 +364,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/id/LC_MESSAGES/security.po b/docs/source/locale/id/LC_MESSAGES/security.po index 1e26fb2a..aa0b351d 100644 --- a/docs/source/locale/id/LC_MESSAGES/security.po +++ b/docs/source/locale/id/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/id/LC_MESSAGES/sphinx.po b/docs/source/locale/id/LC_MESSAGES/sphinx.po index 2a03f9af..60f1f996 100644 --- a/docs/source/locale/id/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/id/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/id/LC_MESSAGES/tor.po b/docs/source/locale/id/LC_MESSAGES/tor.po index dc1bea20..4b7dd9a7 100644 --- a/docs/source/locale/id/LC_MESSAGES/tor.po +++ b/docs/source/locale/id/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/is/LC_MESSAGES/advanced.po b/docs/source/locale/is/LC_MESSAGES/advanced.po index debf29d5..a3b131a0 100644 --- a/docs/source/locale/is/LC_MESSAGES/advanced.po +++ b/docs/source/locale/is/LC_MESSAGES/advanced.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -342,3 +342,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/is/LC_MESSAGES/develop.po b/docs/source/locale/is/LC_MESSAGES/develop.po index 348002db..b53930ac 100644 --- a/docs/source/locale/is/LC_MESSAGES/develop.po +++ b/docs/source/locale/is/LC_MESSAGES/develop.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/is/LC_MESSAGES/features.po b/docs/source/locale/is/LC_MESSAGES/features.po index 0b315ef1..2fd76557 100644 --- a/docs/source/locale/is/LC_MESSAGES/features.po +++ b/docs/source/locale/is/LC_MESSAGES/features.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/is/LC_MESSAGES/help.po b/docs/source/locale/is/LC_MESSAGES/help.po index 04607c6b..84e33d66 100644 --- a/docs/source/locale/is/LC_MESSAGES/help.po +++ b/docs/source/locale/is/LC_MESSAGES/help.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/is/LC_MESSAGES/index.po b/docs/source/locale/is/LC_MESSAGES/index.po index 827c8ae2..721f0ee0 100644 --- a/docs/source/locale/is/LC_MESSAGES/index.po +++ b/docs/source/locale/is/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-01-09 15:33+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/is/LC_MESSAGES/install.po b/docs/source/locale/is/LC_MESSAGES/install.po index 0c5d8344..d716a7fc 100644 --- a/docs/source/locale/is/LC_MESSAGES/install.po +++ b/docs/source/locale/is/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-06-13 13:09+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: LANGUAGE \n" @@ -41,7 +41,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -55,7 +55,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -310,7 +310,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -326,7 +326,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -342,7 +342,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/is/LC_MESSAGES/security.po b/docs/source/locale/is/LC_MESSAGES/security.po index d55a381b..871a9d12 100644 --- a/docs/source/locale/is/LC_MESSAGES/security.po +++ b/docs/source/locale/is/LC_MESSAGES/security.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/is/LC_MESSAGES/sphinx.po b/docs/source/locale/is/LC_MESSAGES/sphinx.po index ab1acc2c..3f6695e6 100644 --- a/docs/source/locale/is/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/is/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-01-09 15:33+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/is/LC_MESSAGES/tor.po b/docs/source/locale/is/LC_MESSAGES/tor.po index daa2e2ef..9eaf8eaa 100644 --- a/docs/source/locale/is/LC_MESSAGES/tor.po +++ b/docs/source/locale/is/LC_MESSAGES/tor.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/it/LC_MESSAGES/advanced.po b/docs/source/locale/it/LC_MESSAGES/advanced.po index d46aa817..b18600de 100644 --- a/docs/source/locale/it/LC_MESSAGES/advanced.po +++ b/docs/source/locale/it/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2023-02-28 18:45+0000\n" "Last-Translator: Gabriele \n" "Language-Team: it \n" @@ -375,6 +375,547 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "Turn Off Passwords" #~ msgstr "Disattiva le Password" diff --git a/docs/source/locale/it/LC_MESSAGES/develop.po b/docs/source/locale/it/LC_MESSAGES/develop.po index 6d014700..18bfe107 100644 --- a/docs/source/locale/it/LC_MESSAGES/develop.po +++ b/docs/source/locale/it/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-01-25 13:17+0000\n" "Last-Translator: emma peel \n" "Language-Team: it \n" diff --git a/docs/source/locale/it/LC_MESSAGES/features.po b/docs/source/locale/it/LC_MESSAGES/features.po index 83e441d4..0507c6b3 100644 --- a/docs/source/locale/it/LC_MESSAGES/features.po +++ b/docs/source/locale/it/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-03-01 19:40+0000\n" "Last-Translator: Gabriele \n" "Language-Team: it \n" diff --git a/docs/source/locale/it/LC_MESSAGES/help.po b/docs/source/locale/it/LC_MESSAGES/help.po index b2dcf229..192d0671 100644 --- a/docs/source/locale/it/LC_MESSAGES/help.po +++ b/docs/source/locale/it/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-02-28 18:46+0000\n" "Last-Translator: Gabriele \n" "Language-Team: it \n" diff --git a/docs/source/locale/it/LC_MESSAGES/index.po b/docs/source/locale/it/LC_MESSAGES/index.po index b6cad804..6dd2d69f 100644 --- a/docs/source/locale/it/LC_MESSAGES/index.po +++ b/docs/source/locale/it/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-22 18:28+0000\n" "Last-Translator: rc \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/it/LC_MESSAGES/install.po b/docs/source/locale/it/LC_MESSAGES/install.po index 8fcc83ad..d7e7b930 100644 --- a/docs/source/locale/it/LC_MESSAGES/install.po +++ b/docs/source/locale/it/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-11-03 05:01+0000\n" "Last-Translator: emma peel \n" "Language-Team: it \n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -336,7 +336,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -358,7 +358,7 @@ msgstr "" "Micah `dal server delle chiavi keys.openpgp.org `_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -374,7 +374,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/it/LC_MESSAGES/security.po b/docs/source/locale/it/LC_MESSAGES/security.po index 54f3039e..b0408552 100644 --- a/docs/source/locale/it/LC_MESSAGES/security.po +++ b/docs/source/locale/it/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-11-12 15:03+0000\n" "Last-Translator: albanobattistella \n" "Language-Team: it \n" diff --git a/docs/source/locale/it/LC_MESSAGES/sphinx.po b/docs/source/locale/it/LC_MESSAGES/sphinx.po index 17d98d73..0a08eb48 100644 --- a/docs/source/locale/it/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/it/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-22 18:28+0000\n" "Last-Translator: rc \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/it/LC_MESSAGES/tor.po b/docs/source/locale/it/LC_MESSAGES/tor.po index 108a9197..c93a6d01 100644 --- a/docs/source/locale/it/LC_MESSAGES/tor.po +++ b/docs/source/locale/it/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-31 17:07+0000\n" "Last-Translator: Lupo Cosentino \n" "Language-Team: it \n" diff --git a/docs/source/locale/ja/LC_MESSAGES/advanced.po b/docs/source/locale/ja/LC_MESSAGES/advanced.po index 63e0e306..385f5221 100644 --- a/docs/source/locale/ja/LC_MESSAGES/advanced.po +++ b/docs/source/locale/ja/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2025-02-11 08:01+0000\n" "Last-Translator: Himmel \n" "Language-Team: ja \n" @@ -16,8 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.10-dev\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.17.0\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" @@ -440,6 +439,550 @@ msgstr "macOS: ``~/Library/Application Support/OnionShare``" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "Windows: ``%APPDATA%\\OnionShare``" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +#, fuzzy +msgid "private_key" +msgstr "秘密鍵を無効にする" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +#, fuzzy +msgid "share" +msgstr "使い方" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +#, fuzzy +msgid "custom_csp" +msgstr "カスタムタイトル" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "Everything in OnionShare is temporary by default. If you close an " #~ "OnionShare tab, its address no longer exists and it can't be used again. " diff --git a/docs/source/locale/ja/LC_MESSAGES/develop.po b/docs/source/locale/ja/LC_MESSAGES/develop.po index 5592d072..444d8458 100644 --- a/docs/source/locale/ja/LC_MESSAGES/develop.po +++ b/docs/source/locale/ja/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-11 08:02+0000\n" "Last-Translator: Himmel \n" "Language-Team: ja \n" diff --git a/docs/source/locale/ja/LC_MESSAGES/features.po b/docs/source/locale/ja/LC_MESSAGES/features.po index 929f8e86..22327801 100644 --- a/docs/source/locale/ja/LC_MESSAGES/features.po +++ b/docs/source/locale/ja/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-11 08:01+0000\n" "Last-Translator: Himmel \n" "Language-Team: ja \n" diff --git a/docs/source/locale/ja/LC_MESSAGES/help.po b/docs/source/locale/ja/LC_MESSAGES/help.po index f630c1bd..075b9d5b 100644 --- a/docs/source/locale/ja/LC_MESSAGES/help.po +++ b/docs/source/locale/ja/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-02-27 18:05+0000\n" "Last-Translator: Suguru Hirahara \n" diff --git a/docs/source/locale/ja/LC_MESSAGES/index.po b/docs/source/locale/ja/LC_MESSAGES/index.po index 387ca462..6b164ff2 100644 --- a/docs/source/locale/ja/LC_MESSAGES/index.po +++ b/docs/source/locale/ja/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-09-23 09:55+0000\n" "Last-Translator: Himmel \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ja/LC_MESSAGES/install.po b/docs/source/locale/ja/LC_MESSAGES/install.po index e7e78bc8..aa512ce2 100644 --- a/docs/source/locale/ja/LC_MESSAGES/install.po +++ b/docs/source/locale/ja/LC_MESSAGES/install.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" -"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-14 00:02+0000\n" "Last-Translator: Himmel \n" "Language-Team: ja \n" @@ -43,7 +43,7 @@ msgstr "モバイル" msgid "You can download OnionShare for Mobile from the follow links" msgstr "モバイル版 OnionShare は、以下のリンクからダウンロードできます。" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -59,7 +59,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -390,10 +390,11 @@ msgid "" "Packages are signed by the core developer who is responsible for the " "particular release. Here is the GPG key information for each of the core " "developers of OnionShare:" -msgstr "パッケージは、特定のリリースを担当するコア開発者によって署名されます。" +msgstr "" +"パッケージは、特定のリリースを担当するコア開発者によって署名されます。" "OnionShare の各コア開発者の GPG 鍵情報は次のとおりです。" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee:" @@ -413,7 +414,7 @@ msgstr "" "v1/by-fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_\\ からダウン" "ロードできます。" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta:" @@ -433,14 +434,15 @@ msgstr "" "vks/v1/by-fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_\\ からダウ" "ンロードできます。" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "Miguel Jacq:" #: ../../source/install.rst:129 msgid "" "PGP public key fingerprint ``00AE817C24A10C2540461A9C1D7CDE0234DB458D``." -msgstr "PGP 公開鍵のフィンガープリント ``00AE817C24A10C2540461A9C1D7CDE0234DB458D``." +msgstr "" +"PGP 公開鍵のフィンガープリント ``00AE817C24A10C2540461A9C1D7CDE0234DB458D``." #: ../../source/install.rst:130 msgid "" @@ -449,8 +451,8 @@ msgid "" "fingerprint/00AE817C24A10C2540461A9C1D7CDE0234DB458D>`_." msgstr "" "Miguel の鍵は keys.openpgp.org の`鍵サーバー `_ " -"からダウンロードできます。" +"v1/by-fingerprint/00AE817C24A10C2540461A9C1D7CDE0234DB458D>`_ からダウンロー" +"ドできます。" #: ../../source/install.rst:132 msgid "" diff --git a/docs/source/locale/ja/LC_MESSAGES/security.po b/docs/source/locale/ja/LC_MESSAGES/security.po index bf4a23e1..e9a30081 100644 --- a/docs/source/locale/ja/LC_MESSAGES/security.po +++ b/docs/source/locale/ja/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-11 08:02+0000\n" "Last-Translator: Himmel \n" "Language-Team: ja \n" diff --git a/docs/source/locale/ja/LC_MESSAGES/sphinx.po b/docs/source/locale/ja/LC_MESSAGES/sphinx.po index ca0f7491..ee6fa0f3 100644 --- a/docs/source/locale/ja/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/ja/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-12-10 02:52+0000\n" "Last-Translator: Taro Tanaka \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ja/LC_MESSAGES/tor.po b/docs/source/locale/ja/LC_MESSAGES/tor.po index de671173..0be8b6a0 100644 --- a/docs/source/locale/ja/LC_MESSAGES/tor.po +++ b/docs/source/locale/ja/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-09-23 09:55+0000\n" "Last-Translator: Himmel \n" "Language-Team: ja \n" diff --git a/docs/source/locale/ka/LC_MESSAGES/advanced.po b/docs/source/locale/ka/LC_MESSAGES/advanced.po index 29bc281b..dc16dc60 100644 --- a/docs/source/locale/ka/LC_MESSAGES/advanced.po +++ b/docs/source/locale/ka/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/ka/LC_MESSAGES/develop.po b/docs/source/locale/ka/LC_MESSAGES/develop.po index ad02a813..4b071e70 100644 --- a/docs/source/locale/ka/LC_MESSAGES/develop.po +++ b/docs/source/locale/ka/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ka/LC_MESSAGES/features.po b/docs/source/locale/ka/LC_MESSAGES/features.po index bef8c715..60a44704 100644 --- a/docs/source/locale/ka/LC_MESSAGES/features.po +++ b/docs/source/locale/ka/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ka/LC_MESSAGES/help.po b/docs/source/locale/ka/LC_MESSAGES/help.po index f9125674..dc78dfbf 100644 --- a/docs/source/locale/ka/LC_MESSAGES/help.po +++ b/docs/source/locale/ka/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ka/LC_MESSAGES/index.po b/docs/source/locale/ka/LC_MESSAGES/index.po index 0f0d893f..225b2138 100644 --- a/docs/source/locale/ka/LC_MESSAGES/index.po +++ b/docs/source/locale/ka/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ka/LC_MESSAGES/install.po b/docs/source/locale/ka/LC_MESSAGES/install.po index a08cd41e..dfbbc4a5 100644 --- a/docs/source/locale/ka/LC_MESSAGES/install.po +++ b/docs/source/locale/ka/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/ka/LC_MESSAGES/security.po b/docs/source/locale/ka/LC_MESSAGES/security.po index 271c2398..3b1db208 100644 --- a/docs/source/locale/ka/LC_MESSAGES/security.po +++ b/docs/source/locale/ka/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ka/LC_MESSAGES/sphinx.po b/docs/source/locale/ka/LC_MESSAGES/sphinx.po index 87867e1f..57a217dd 100644 --- a/docs/source/locale/ka/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/ka/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ka/LC_MESSAGES/tor.po b/docs/source/locale/ka/LC_MESSAGES/tor.po index a3946525..62d8eeea 100644 --- a/docs/source/locale/ka/LC_MESSAGES/tor.po +++ b/docs/source/locale/ka/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-02-22 11:39+0000\n" "Last-Translator: Temuri Doghonadze \n" "Language-Team: none\n" diff --git a/docs/source/locale/kab/LC_MESSAGES/features.po b/docs/source/locale/kab/LC_MESSAGES/features.po index 07bbadd4..b7bd6fd0 100644 --- a/docs/source/locale/kab/LC_MESSAGES/features.po +++ b/docs/source/locale/kab/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-03-08 14:02+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: none\n" diff --git a/docs/source/locale/kab/LC_MESSAGES/index.po b/docs/source/locale/kab/LC_MESSAGES/index.po index 34739c66..a564bda4 100644 --- a/docs/source/locale/kab/LC_MESSAGES/index.po +++ b/docs/source/locale/kab/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-03-16 16:27+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: none\n" diff --git a/docs/source/locale/kab/LC_MESSAGES/install.po b/docs/source/locale/kab/LC_MESSAGES/install.po index 1f503e0f..45d7f699 100644 --- a/docs/source/locale/kab/LC_MESSAGES/install.po +++ b/docs/source/locale/kab/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-03-16 16:27+0000\n" "Last-Translator: ButterflyOfFire \n" "Language-Team: none\n" @@ -42,7 +42,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -56,7 +56,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -316,7 +316,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -332,7 +332,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -348,7 +348,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/kab/LC_MESSAGES/security.po b/docs/source/locale/kab/LC_MESSAGES/security.po index 661d6c33..f50d8a3b 100644 --- a/docs/source/locale/kab/LC_MESSAGES/security.po +++ b/docs/source/locale/kab/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/km/LC_MESSAGES/advanced.po b/docs/source/locale/km/LC_MESSAGES/advanced.po index 0ea0a859..97d38062 100644 --- a/docs/source/locale/km/LC_MESSAGES/advanced.po +++ b/docs/source/locale/km/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2022-02-26 08:56+0000\n" "Last-Translator: Sophat CHY \n" "Language-Team: none\n" @@ -381,6 +381,547 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "Everything in OnionShare is temporary by default. If you close an " #~ "OnionShare tab, its address no longer exists and it can't be used again. " diff --git a/docs/source/locale/km/LC_MESSAGES/develop.po b/docs/source/locale/km/LC_MESSAGES/develop.po index 98f641d5..c16b2f1a 100644 --- a/docs/source/locale/km/LC_MESSAGES/develop.po +++ b/docs/source/locale/km/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 17:06+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/km/LC_MESSAGES/features.po b/docs/source/locale/km/LC_MESSAGES/features.po index 0c4a59c3..4c208167 100644 --- a/docs/source/locale/km/LC_MESSAGES/features.po +++ b/docs/source/locale/km/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 17:06+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/km/LC_MESSAGES/help.po b/docs/source/locale/km/LC_MESSAGES/help.po index c3502b14..0cd8a0ee 100644 --- a/docs/source/locale/km/LC_MESSAGES/help.po +++ b/docs/source/locale/km/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-02-24 10:02+0000\n" "Last-Translator: Rasy Chum \n" "Language-Team: none\n" diff --git a/docs/source/locale/km/LC_MESSAGES/index.po b/docs/source/locale/km/LC_MESSAGES/index.po index f9b57160..14b55caa 100644 --- a/docs/source/locale/km/LC_MESSAGES/index.po +++ b/docs/source/locale/km/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-02-23 17:08+0000\n" "Last-Translator: Rasy Chum \n" "Language-Team: none\n" diff --git a/docs/source/locale/km/LC_MESSAGES/install.po b/docs/source/locale/km/LC_MESSAGES/install.po index 248e22d5..ce7e8609 100644 --- a/docs/source/locale/km/LC_MESSAGES/install.po +++ b/docs/source/locale/km/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-02-16 18:02+0000\n" "Last-Translator: Edeth Meng \n" "Language-Team: none\n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -349,7 +349,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -370,7 +370,7 @@ msgstr "" "អ្នកអាចទាញយកកូនសោរបស់ Micah ពី `keys.openpgp.org keyserver `_។" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -386,7 +386,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/km/LC_MESSAGES/security.po b/docs/source/locale/km/LC_MESSAGES/security.po index 309fed3b..e6604f28 100644 --- a/docs/source/locale/km/LC_MESSAGES/security.po +++ b/docs/source/locale/km/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-02-16 13:01+0000\n" "Last-Translator: Edeth Meng \n" "Language-Team: none\n" diff --git a/docs/source/locale/km/LC_MESSAGES/sphinx.po b/docs/source/locale/km/LC_MESSAGES/sphinx.po index 10f8ee10..7c310ea4 100644 --- a/docs/source/locale/km/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/km/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-02-20 14:56+0000\n" "Last-Translator: Moses Ngeth \n" "Language-Team: none\n" diff --git a/docs/source/locale/km/LC_MESSAGES/tor.po b/docs/source/locale/km/LC_MESSAGES/tor.po index 12531d97..fceaa1b5 100644 --- a/docs/source/locale/km/LC_MESSAGES/tor.po +++ b/docs/source/locale/km/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-03 17:52+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/ko/LC_MESSAGES/advanced.po b/docs/source/locale/ko/LC_MESSAGES/advanced.po index b70c62c1..ae2f11a4 100644 --- a/docs/source/locale/ko/LC_MESSAGES/advanced.po +++ b/docs/source/locale/ko/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2024-08-23 01:09+0000\n" "Last-Translator: Assem Askarova \n" @@ -402,3 +402,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/ko/LC_MESSAGES/develop.po b/docs/source/locale/ko/LC_MESSAGES/develop.po index dfdc0c8d..dca0a9a3 100644 --- a/docs/source/locale/ko/LC_MESSAGES/develop.po +++ b/docs/source/locale/ko/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-08-21 10:30+0000\n" "Last-Translator: Assem Askarova \n" diff --git a/docs/source/locale/ko/LC_MESSAGES/features.po b/docs/source/locale/ko/LC_MESSAGES/features.po index 44bfc4cc..a07826c7 100644 --- a/docs/source/locale/ko/LC_MESSAGES/features.po +++ b/docs/source/locale/ko/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ko/LC_MESSAGES/help.po b/docs/source/locale/ko/LC_MESSAGES/help.po index f847c0e0..a5880ef5 100644 --- a/docs/source/locale/ko/LC_MESSAGES/help.po +++ b/docs/source/locale/ko/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-10-19 10:07+0000\n" "Last-Translator: 이정희 \n" "Language-Team: none\n" diff --git a/docs/source/locale/ko/LC_MESSAGES/index.po b/docs/source/locale/ko/LC_MESSAGES/index.po index 00bf93d7..2d346e2c 100644 --- a/docs/source/locale/ko/LC_MESSAGES/index.po +++ b/docs/source/locale/ko/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-08-21 10:30+0000\n" "Last-Translator: Assem Askarova \n" diff --git a/docs/source/locale/ko/LC_MESSAGES/install.po b/docs/source/locale/ko/LC_MESSAGES/install.po index 7dbb20b3..0c35465f 100644 --- a/docs/source/locale/ko/LC_MESSAGES/install.po +++ b/docs/source/locale/ko/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-08-22 00:52+0000\n" "Last-Translator: Assem Askarova \n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "안드로이드" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -326,7 +326,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -348,7 +348,7 @@ msgstr "" "openpgp.org/vks/v1/by-fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_" "에서 다운로드할 수 있습니다." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -364,7 +364,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/ko/LC_MESSAGES/security.po b/docs/source/locale/ko/LC_MESSAGES/security.po index 24b51fb8..98c21d33 100644 --- a/docs/source/locale/ko/LC_MESSAGES/security.po +++ b/docs/source/locale/ko/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-10-19 10:07+0000\n" "Last-Translator: 이정희 \n" "Language-Team: none\n" diff --git a/docs/source/locale/ko/LC_MESSAGES/sphinx.po b/docs/source/locale/ko/LC_MESSAGES/sphinx.po index 64e1cd98..fd02a23c 100644 --- a/docs/source/locale/ko/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/ko/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-10-19 10:07+0000\n" "Last-Translator: 이정희 \n" "Language-Team: none\n" diff --git a/docs/source/locale/ko/LC_MESSAGES/tor.po b/docs/source/locale/ko/LC_MESSAGES/tor.po index 04bb0101..d5fcb708 100644 --- a/docs/source/locale/ko/LC_MESSAGES/tor.po +++ b/docs/source/locale/ko/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-08-21 10:30+0000\n" "Last-Translator: Assem Askarova \n" diff --git a/docs/source/locale/lg/LC_MESSAGES/advanced.po b/docs/source/locale/lg/LC_MESSAGES/advanced.po index 26d5d235..18b1810a 100644 --- a/docs/source/locale/lg/LC_MESSAGES/advanced.po +++ b/docs/source/locale/lg/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/lg/LC_MESSAGES/develop.po b/docs/source/locale/lg/LC_MESSAGES/develop.po index 9dd74836..01352d23 100644 --- a/docs/source/locale/lg/LC_MESSAGES/develop.po +++ b/docs/source/locale/lg/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lg/LC_MESSAGES/features.po b/docs/source/locale/lg/LC_MESSAGES/features.po index b4d88229..ee3b47b4 100644 --- a/docs/source/locale/lg/LC_MESSAGES/features.po +++ b/docs/source/locale/lg/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lg/LC_MESSAGES/help.po b/docs/source/locale/lg/LC_MESSAGES/help.po index a0836aba..638d4957 100644 --- a/docs/source/locale/lg/LC_MESSAGES/help.po +++ b/docs/source/locale/lg/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lg/LC_MESSAGES/index.po b/docs/source/locale/lg/LC_MESSAGES/index.po index bb793dbb..60e20224 100644 --- a/docs/source/locale/lg/LC_MESSAGES/index.po +++ b/docs/source/locale/lg/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lg/LC_MESSAGES/install.po b/docs/source/locale/lg/LC_MESSAGES/install.po index 142c613c..be0fae74 100644 --- a/docs/source/locale/lg/LC_MESSAGES/install.po +++ b/docs/source/locale/lg/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/lg/LC_MESSAGES/security.po b/docs/source/locale/lg/LC_MESSAGES/security.po index 66eabaa9..fbaf7916 100644 --- a/docs/source/locale/lg/LC_MESSAGES/security.po +++ b/docs/source/locale/lg/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lg/LC_MESSAGES/sphinx.po b/docs/source/locale/lg/LC_MESSAGES/sphinx.po index 7b03ee97..13728566 100644 --- a/docs/source/locale/lg/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/lg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lg/LC_MESSAGES/tor.po b/docs/source/locale/lg/LC_MESSAGES/tor.po index 56891e46..95aec834 100644 --- a/docs/source/locale/lg/LC_MESSAGES/tor.po +++ b/docs/source/locale/lg/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lt/LC_MESSAGES/advanced.po b/docs/source/locale/lt/LC_MESSAGES/advanced.po index 31a533b4..40b9c036 100644 --- a/docs/source/locale/lt/LC_MESSAGES/advanced.po +++ b/docs/source/locale/lt/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/lt/LC_MESSAGES/develop.po b/docs/source/locale/lt/LC_MESSAGES/develop.po index ddec50c0..c2e1b837 100644 --- a/docs/source/locale/lt/LC_MESSAGES/develop.po +++ b/docs/source/locale/lt/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lt/LC_MESSAGES/features.po b/docs/source/locale/lt/LC_MESSAGES/features.po index d8c5b6a2..96b4e82f 100644 --- a/docs/source/locale/lt/LC_MESSAGES/features.po +++ b/docs/source/locale/lt/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lt/LC_MESSAGES/help.po b/docs/source/locale/lt/LC_MESSAGES/help.po index 3a4ab99c..da05fc64 100644 --- a/docs/source/locale/lt/LC_MESSAGES/help.po +++ b/docs/source/locale/lt/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lt/LC_MESSAGES/index.po b/docs/source/locale/lt/LC_MESSAGES/index.po index f6ff7431..7a2c951e 100644 --- a/docs/source/locale/lt/LC_MESSAGES/index.po +++ b/docs/source/locale/lt/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lt/LC_MESSAGES/install.po b/docs/source/locale/lt/LC_MESSAGES/install.po index eb5baa71..8d53f09d 100644 --- a/docs/source/locale/lt/LC_MESSAGES/install.po +++ b/docs/source/locale/lt/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-02-12 17:11+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -327,7 +327,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -349,7 +349,7 @@ msgstr "" "openpgp.org/vks/v1/by-" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -365,7 +365,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/lt/LC_MESSAGES/security.po b/docs/source/locale/lt/LC_MESSAGES/security.po index cebeee48..ac25d64c 100644 --- a/docs/source/locale/lt/LC_MESSAGES/security.po +++ b/docs/source/locale/lt/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lt/LC_MESSAGES/sphinx.po b/docs/source/locale/lt/LC_MESSAGES/sphinx.po index d3e43e82..daf25abb 100644 --- a/docs/source/locale/lt/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/lt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/lt/LC_MESSAGES/tor.po b/docs/source/locale/lt/LC_MESSAGES/tor.po index 3e5bc20f..200d270f 100644 --- a/docs/source/locale/lt/LC_MESSAGES/tor.po +++ b/docs/source/locale/lt/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/mk/LC_MESSAGES/advanced.po b/docs/source/locale/mk/LC_MESSAGES/advanced.po index 7ef44ecd..a3fcd29c 100644 --- a/docs/source/locale/mk/LC_MESSAGES/advanced.po +++ b/docs/source/locale/mk/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/mk/LC_MESSAGES/develop.po b/docs/source/locale/mk/LC_MESSAGES/develop.po index fc53c88c..caec3ea8 100644 --- a/docs/source/locale/mk/LC_MESSAGES/develop.po +++ b/docs/source/locale/mk/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/mk/LC_MESSAGES/features.po b/docs/source/locale/mk/LC_MESSAGES/features.po index ba5a682f..4c0961bc 100644 --- a/docs/source/locale/mk/LC_MESSAGES/features.po +++ b/docs/source/locale/mk/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/mk/LC_MESSAGES/help.po b/docs/source/locale/mk/LC_MESSAGES/help.po index 1f382a9b..0bb8f04f 100644 --- a/docs/source/locale/mk/LC_MESSAGES/help.po +++ b/docs/source/locale/mk/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/mk/LC_MESSAGES/index.po b/docs/source/locale/mk/LC_MESSAGES/index.po index 6f9eed75..29792a83 100644 --- a/docs/source/locale/mk/LC_MESSAGES/index.po +++ b/docs/source/locale/mk/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/mk/LC_MESSAGES/install.po b/docs/source/locale/mk/LC_MESSAGES/install.po index e1ab4f38..538e6eba 100644 --- a/docs/source/locale/mk/LC_MESSAGES/install.po +++ b/docs/source/locale/mk/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/mk/LC_MESSAGES/security.po b/docs/source/locale/mk/LC_MESSAGES/security.po index 0496d81b..4c4d9657 100644 --- a/docs/source/locale/mk/LC_MESSAGES/security.po +++ b/docs/source/locale/mk/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/mk/LC_MESSAGES/sphinx.po b/docs/source/locale/mk/LC_MESSAGES/sphinx.po index 4a373652..3bcdda2f 100644 --- a/docs/source/locale/mk/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/mk/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/mk/LC_MESSAGES/tor.po b/docs/source/locale/mk/LC_MESSAGES/tor.po index b4cb9f3b..4e5a92b2 100644 --- a/docs/source/locale/mk/LC_MESSAGES/tor.po +++ b/docs/source/locale/mk/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ms/LC_MESSAGES/advanced.po b/docs/source/locale/ms/LC_MESSAGES/advanced.po index a62b74ab..0466cf7d 100644 --- a/docs/source/locale/ms/LC_MESSAGES/advanced.po +++ b/docs/source/locale/ms/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/ms/LC_MESSAGES/develop.po b/docs/source/locale/ms/LC_MESSAGES/develop.po index e148b36e..628d2927 100644 --- a/docs/source/locale/ms/LC_MESSAGES/develop.po +++ b/docs/source/locale/ms/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ms/LC_MESSAGES/features.po b/docs/source/locale/ms/LC_MESSAGES/features.po index 433fab31..b206a7cf 100644 --- a/docs/source/locale/ms/LC_MESSAGES/features.po +++ b/docs/source/locale/ms/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ms/LC_MESSAGES/help.po b/docs/source/locale/ms/LC_MESSAGES/help.po index 18ccb1f4..6f3bbd89 100644 --- a/docs/source/locale/ms/LC_MESSAGES/help.po +++ b/docs/source/locale/ms/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ms/LC_MESSAGES/index.po b/docs/source/locale/ms/LC_MESSAGES/index.po index 83d589c6..9d7b2287 100644 --- a/docs/source/locale/ms/LC_MESSAGES/index.po +++ b/docs/source/locale/ms/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ms/LC_MESSAGES/install.po b/docs/source/locale/ms/LC_MESSAGES/install.po index e6790c41..15fc25f3 100644 --- a/docs/source/locale/ms/LC_MESSAGES/install.po +++ b/docs/source/locale/ms/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/ms/LC_MESSAGES/security.po b/docs/source/locale/ms/LC_MESSAGES/security.po index 14b46731..cd254896 100644 --- a/docs/source/locale/ms/LC_MESSAGES/security.po +++ b/docs/source/locale/ms/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ms/LC_MESSAGES/sphinx.po b/docs/source/locale/ms/LC_MESSAGES/sphinx.po index a82a40b6..fd117db0 100644 --- a/docs/source/locale/ms/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/ms/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ms/LC_MESSAGES/tor.po b/docs/source/locale/ms/LC_MESSAGES/tor.po index 59e2b853..6de6d1bd 100644 --- a/docs/source/locale/ms/LC_MESSAGES/tor.po +++ b/docs/source/locale/ms/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/nb_NO/LC_MESSAGES/advanced.po b/docs/source/locale/nb_NO/LC_MESSAGES/advanced.po index 0303fb47..0df4a981 100644 --- a/docs/source/locale/nb_NO/LC_MESSAGES/advanced.po +++ b/docs/source/locale/nb_NO/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2022-10-09 21:13+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: none\n" @@ -420,6 +420,547 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "Turn Off Passwords" #~ msgstr "Skru av passord" diff --git a/docs/source/locale/nb_NO/LC_MESSAGES/develop.po b/docs/source/locale/nb_NO/LC_MESSAGES/develop.po index df9e9f6a..0b7492e1 100644 --- a/docs/source/locale/nb_NO/LC_MESSAGES/develop.po +++ b/docs/source/locale/nb_NO/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 17:06+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/nb_NO/LC_MESSAGES/features.po b/docs/source/locale/nb_NO/LC_MESSAGES/features.po index daef3fed..8590d3aa 100644 --- a/docs/source/locale/nb_NO/LC_MESSAGES/features.po +++ b/docs/source/locale/nb_NO/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-02-14 08:55+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: none\n" diff --git a/docs/source/locale/nb_NO/LC_MESSAGES/help.po b/docs/source/locale/nb_NO/LC_MESSAGES/help.po index e5ff752d..fb8dee67 100644 --- a/docs/source/locale/nb_NO/LC_MESSAGES/help.po +++ b/docs/source/locale/nb_NO/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-01-21 19:11+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: none\n" diff --git a/docs/source/locale/nb_NO/LC_MESSAGES/index.po b/docs/source/locale/nb_NO/LC_MESSAGES/index.po index d48c03e2..66f589b2 100644 --- a/docs/source/locale/nb_NO/LC_MESSAGES/index.po +++ b/docs/source/locale/nb_NO/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-19 08:28+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: none\n" diff --git a/docs/source/locale/nb_NO/LC_MESSAGES/install.po b/docs/source/locale/nb_NO/LC_MESSAGES/install.po index 2316c37b..03771401 100644 --- a/docs/source/locale/nb_NO/LC_MESSAGES/install.po +++ b/docs/source/locale/nb_NO/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-03-14 03:02+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: none\n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -373,7 +373,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -395,7 +395,7 @@ msgstr "" "`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -411,7 +411,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/nb_NO/LC_MESSAGES/security.po b/docs/source/locale/nb_NO/LC_MESSAGES/security.po index 7f464b27..3d5ebaa9 100644 --- a/docs/source/locale/nb_NO/LC_MESSAGES/security.po +++ b/docs/source/locale/nb_NO/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-10-09 21:13+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: none\n" diff --git a/docs/source/locale/nb_NO/LC_MESSAGES/sphinx.po b/docs/source/locale/nb_NO/LC_MESSAGES/sphinx.po index f62e269f..152ae8ed 100644 --- a/docs/source/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-19 08:28+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: none\n" diff --git a/docs/source/locale/nb_NO/LC_MESSAGES/tor.po b/docs/source/locale/nb_NO/LC_MESSAGES/tor.po index 365b5468..12c3c962 100644 --- a/docs/source/locale/nb_NO/LC_MESSAGES/tor.po +++ b/docs/source/locale/nb_NO/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-02 11:21+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/nl/LC_MESSAGES/advanced.po b/docs/source/locale/nl/LC_MESSAGES/advanced.po index 736ea915..fa10ca63 100644 --- a/docs/source/locale/nl/LC_MESSAGES/advanced.po +++ b/docs/source/locale/nl/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2023-01-31 18:46+0000\n" "Last-Translator: Lucrezia \n" "Language-Team: LANGUAGE \n" @@ -343,3 +343,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/nl/LC_MESSAGES/develop.po b/docs/source/locale/nl/LC_MESSAGES/develop.po index 348002db..b53930ac 100644 --- a/docs/source/locale/nl/LC_MESSAGES/develop.po +++ b/docs/source/locale/nl/LC_MESSAGES/develop.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/nl/LC_MESSAGES/features.po b/docs/source/locale/nl/LC_MESSAGES/features.po index 0b315ef1..2fd76557 100644 --- a/docs/source/locale/nl/LC_MESSAGES/features.po +++ b/docs/source/locale/nl/LC_MESSAGES/features.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/nl/LC_MESSAGES/help.po b/docs/source/locale/nl/LC_MESSAGES/help.po index d9e34e0e..9ff350ed 100644 --- a/docs/source/locale/nl/LC_MESSAGES/help.po +++ b/docs/source/locale/nl/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-05-14 19:05+0000\n" "Last-Translator: nocturnalfilth \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/nl/LC_MESSAGES/index.po b/docs/source/locale/nl/LC_MESSAGES/index.po index 3fc75fed..ae7bf83f 100644 --- a/docs/source/locale/nl/LC_MESSAGES/index.po +++ b/docs/source/locale/nl/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-05-14 13:32+0000\n" "Last-Translator: nocturnalfilth \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/nl/LC_MESSAGES/install.po b/docs/source/locale/nl/LC_MESSAGES/install.po index 148f517a..a018206b 100644 --- a/docs/source/locale/nl/LC_MESSAGES/install.po +++ b/docs/source/locale/nl/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-01-31 18:46+0000\n" "Last-Translator: Lucrezia \n" "Language-Team: LANGUAGE \n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -334,7 +334,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -356,7 +356,7 @@ msgstr "" "downloaden `van de keys.openpgp.org keyserver `_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -372,7 +372,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/nl/LC_MESSAGES/security.po b/docs/source/locale/nl/LC_MESSAGES/security.po index 4b1f0a06..cdddba7f 100644 --- a/docs/source/locale/nl/LC_MESSAGES/security.po +++ b/docs/source/locale/nl/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-01-31 18:46+0000\n" "Last-Translator: Lucrezia \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/nl/LC_MESSAGES/sphinx.po b/docs/source/locale/nl/LC_MESSAGES/sphinx.po index a4bcd357..1865c8cf 100644 --- a/docs/source/locale/nl/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/nl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-05-14 13:32+0000\n" "Last-Translator: nocturnalfilth \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/nl/LC_MESSAGES/tor.po b/docs/source/locale/nl/LC_MESSAGES/tor.po index daa2e2ef..9eaf8eaa 100644 --- a/docs/source/locale/nl/LC_MESSAGES/tor.po +++ b/docs/source/locale/nl/LC_MESSAGES/tor.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/pa/LC_MESSAGES/advanced.po b/docs/source/locale/pa/LC_MESSAGES/advanced.po index 8b968a33..c59d9ca9 100644 --- a/docs/source/locale/pa/LC_MESSAGES/advanced.po +++ b/docs/source/locale/pa/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/pa/LC_MESSAGES/develop.po b/docs/source/locale/pa/LC_MESSAGES/develop.po index 46bfbcda..1d4cd2ec 100644 --- a/docs/source/locale/pa/LC_MESSAGES/develop.po +++ b/docs/source/locale/pa/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.4.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/pa/LC_MESSAGES/features.po b/docs/source/locale/pa/LC_MESSAGES/features.po index c2dcc6de..f2058d9d 100644 --- a/docs/source/locale/pa/LC_MESSAGES/features.po +++ b/docs/source/locale/pa/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/pa/LC_MESSAGES/help.po b/docs/source/locale/pa/LC_MESSAGES/help.po index 9c59b7a6..efbf7718 100644 --- a/docs/source/locale/pa/LC_MESSAGES/help.po +++ b/docs/source/locale/pa/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/pa/LC_MESSAGES/index.po b/docs/source/locale/pa/LC_MESSAGES/index.po index c77f1743..941b91d3 100644 --- a/docs/source/locale/pa/LC_MESSAGES/index.po +++ b/docs/source/locale/pa/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/pa/LC_MESSAGES/install.po b/docs/source/locale/pa/LC_MESSAGES/install.po index 8c8dec59..44750e4a 100644 --- a/docs/source/locale/pa/LC_MESSAGES/install.po +++ b/docs/source/locale/pa/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/pa/LC_MESSAGES/security.po b/docs/source/locale/pa/LC_MESSAGES/security.po index 44442c4d..2e61e07f 100644 --- a/docs/source/locale/pa/LC_MESSAGES/security.po +++ b/docs/source/locale/pa/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/pa/LC_MESSAGES/sphinx.po b/docs/source/locale/pa/LC_MESSAGES/sphinx.po index 71ed61c8..7de7a392 100644 --- a/docs/source/locale/pa/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/pa/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/pa/LC_MESSAGES/tor.po b/docs/source/locale/pa/LC_MESSAGES/tor.po index 2d214de5..330ba5b3 100644 --- a/docs/source/locale/pa/LC_MESSAGES/tor.po +++ b/docs/source/locale/pa/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/peo/LC_MESSAGES/install.po b/docs/source/locale/peo/LC_MESSAGES/install.po index 76335d6e..bd3d4d87 100644 --- a/docs/source/locale/peo/LC_MESSAGES/install.po +++ b/docs/source/locale/peo/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/peo/LC_MESSAGES/sphinx.po b/docs/source/locale/peo/LC_MESSAGES/sphinx.po index 2b3e7d0f..e8fed755 100644 --- a/docs/source/locale/peo/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/peo/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/pl/LC_MESSAGES/advanced.po b/docs/source/locale/pl/LC_MESSAGES/advanced.po index aa1836c7..977e2009 100644 --- a/docs/source/locale/pl/LC_MESSAGES/advanced.po +++ b/docs/source/locale/pl/LC_MESSAGES/advanced.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" -"PO-Revision-Date: 2025-02-11 08:02+0000\n" +"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" +"PO-Revision-Date: 2025-02-17 14:01+0000\n" "Last-Translator: Matthaiks \n" "Language-Team: pl \n" "Language: pl\n" @@ -17,16 +17,16 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Weblate 5.10-dev\n" -"Generated-By: Babel 2.14.0\n" +"X-Generator: Weblate 5.10.1-dev\n" +"Generated-By: Babel 2.17.0\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" -msgstr "Użytkowanie Zaawansowane" +msgstr "Użytkowanie zaawansowane" #: ../../source/advanced.rst:7 msgid "Save Tabs" -msgstr "Zapisywanie Kart" +msgstr "Zapisywanie kart" #: ../../source/advanced.rst:9 msgid "" @@ -68,7 +68,7 @@ msgstr "" #: ../../source/advanced.rst:24 msgid "Turn Off Private Key" -msgstr "Wyłączanie obsługi Klucza Prywatnego" +msgstr "Wyłączanie obsługi klucza prywatnego" #: ../../source/advanced.rst:26 msgid "" @@ -175,7 +175,7 @@ msgstr "" #: ../../source/advanced.rst:68 msgid "Command-line Interface" -msgstr "Wiersz Poleceń" +msgstr "Wiersz poleceń" #: ../../source/advanced.rst:70 msgid "" @@ -426,8 +426,8 @@ msgid "" "and you want to preserve it." msgstr "" "Możesz chcieć zmigrować swoje dane OnionShare podczas przełączania się na " -"inny komputer. Jest to szczególnie ważne, jeśli masz „trwały” adres onion i " -"chcesz go zachować." +"inny komputer. Jest to szczególnie ważne, jeśli masz 'persistent' adres " +"onion i chcesz go zachować." #: ../../source/advanced.rst:307 msgid "" @@ -449,6 +449,647 @@ msgstr "macOS: ``~/Library/Application Support/OnionShare``" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "Windows: ``%APPDATA%\\OnionShare``" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "Parametry pliku konfiguracyjnego" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" +"OnionShare przechowuje swoje ustawienia w pliku JSON. Zarówno wersja CLI, " +"jak i Desktop używają tego pliku konfiguracyjnego. CLI pozwala również " +"określić ścieżkę do niestandardowego pliku konfiguracyjnego za pomocą " +"``--config``." + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" +"Poniżej znajdują się parametry pliku konfiguracyjnego i ich znaczenie. Jeśli " +"plik konfiguracyjny zawiera inne parametry, które nie są tutaj wymienione, " +"mogą być nieaktualne w starszych wersjach OnionShare." + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "Parametr" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "Typ" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "Wyjaśnienie" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "version" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "``string``" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "Wersja OnionShare. Nie powinno zmieniać się tej wartości." + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "connection_type" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" +"Sposób, w jaki OnionShare łączy się z Tor. Prawidłowe opcje to 'bundled', " +"'automatic' (użyj połączenia Tor przeglądarki Tor Browser), 'control_port' " +"lub 'socket_file'. Domyślnie: 'bundled'" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "control_port_address" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" +"Adres IP portu kontrolnego Tor, jeśli ``connection_type`` jest ustawione na " +"'control_port'. Domyślnie: '127.0.0.1'" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "control_port_port" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "``integer``" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" +"Numer portu kontrolnego Tor, jeśli ``connection_type`` jest ustawionena " +"'control_port'. Domyślnie: '9051'" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "socks_address" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" +"Adres IP serwera proxy SOCKS sieci Tor, jeśli ``connection_type`` jest " +"ustawione na 'control_port' lub 'socket_file'. Domyślnie: '127.0.0.1'" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "socks_port" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" +"Numer portu proxy SOCKS sieci Tor, jeśli ``connection_type`` jest ustawione " +"na 'control_port' lub 'socket_file'. Domyślnie: '9050'" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "socket_file_path" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" +"Ścieżka do pliku gniazda sieci Tor, jeśli ``connection_type`` jest ustawione " +"na 'socket_file'. Domyślnie: '/var/run/tor/control'" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "auth_type" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" +"Jeśli dostęp do portu kontrolnego sieci Tor wymaga hasła, można ustawić je " +"na 'password', w przeciwnym razie 'no_auth'. Domyślnie: 'no_auth'" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "auth_password" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" +"Jeśli dostęp do portu kontrolnego sieci Tor wymaga hasła, a ``auth_type`` " +"jest ustawione na 'password', podaj hasło tutaj. Domyślnie: ''" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "auto_connect" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "``boolean``" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" +"Czy OnionShare powinien automatycznie łączyć się z siecią Tor podczas " +"uruchamiania. Domyślnie: false" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "use_autoupdate" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" +"Czy OnionShare ma automatycznie sprawdzać aktualizacje (przez sieć Tor). To " +"ustawienie jest ważne tylko dla instalacji MacOS lub Windows. Domyślnie: " +"true." + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "autoupdate_timestamp" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "Ostatni raz, kiedy OnionShare sprawdzał aktualizacje. Domyślnie: none" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "bridges_enabled" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "Czy połączyć się z siecią Tor za pomocą mostków. Domyślnie: false" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "bridges_type" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" +"Gdy ``bridges_enabled`` jest True, skąd ładować mostki. Opcje to „built-in” (" +"mosty dostarczane z OnionShare i które mogą być aktualizowane z Tor), „moat” " +"(żądanie mostów z API Moat Tor) lub „custom” (mosty dostarczane przez " +"użytkownika). Domyślnie: „built-in”" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "bridges_builtin_pt" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" +"Gdy ``bridges_type`` jest ustawione na „built-in”, określa, jaki typ " +"protokołu mostu ma być używany. Opcje to „obfs4”, „meek-azure” lub " +"„snowflake”. Domyślnie: „obfs4”" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "bridges_moat" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" +"Gdy ``bridges_type`` jest ustawione na „moat”, mosty zwrócone z API Moat " +"sieci Tor są przechowywane tutaj. Domyślnie: \"\"" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "bridges_custom" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" +"Gdy ``bridges_type`` jest ustawione na „custom”, mostki określone przez " +"użytkownika są przechowywane tutaj. Oddziel każdą linię mostku w ciągu za " +"pomocą '\\n" +"'. Domyślnie: \"\"" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "bridges_builtin" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "``dict``" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" +"Gdy ``bridges_type`` jest ustawione na „built-in”, OnionShare pobiera " +"najnowsze wbudowane mostki zalecane przez sieć Tor i przechowuje je tutaj. " +"Domyślnie: {}" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "persistent_tabs" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "``list``" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" +"Jeśli użytkownik zdefiniował jakieś karty jako 'saved' (co oznacza, że są " +"trwałe przy każdym uruchomieniu OnionShare, a ich adres onion się nie " +"zmienia), otrzymują one losowy identyfikator, który jest tutaj wymieniony. " +"Trwały onion jest przechowywany jako plik JSON o tej samej nazwie co ten " +"identyfikator, w podfolderze folderu konfiguracji OnionShare o nazwie " +"'persistent'. Domyślnie: []" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "locale" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" +"Ustawienia regionalne używane w OnionShare. Domyślne: None (to samo co 'en')" +". Prawidłowe kody ustawień regionalnych można znaleźć w 'available_locales' " +"w https://github.com/onionshare/onionshare/blob/main/cli/onionshare_cli/" +"settings.py" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "theme" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" +"Motyw dla aplikacji OnionShare na komputer. Prawidłowe opcje to 0 (" +"automatyczne wykrywanie jasnego lub ciemnego motywu komputera użytkownika), " +"1 (jasny) lub 2 (ciemny)." + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "Parametry pliku konfiguracyjnego dla trwałych cebul" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" +"Jak opisano powyżej, każda cebula 'persistent' ma własne parametry, które są " +"przechowywane w jej własnym pliku JSON. Ścieżka do tego pliku może być " +"określona dla narzędzia CLI za pomocą ``--persistent``." + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "Oto przykład trwałej konfiguracji JSON:" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" +"Poniżej znajdują się parametry pliku konfiguracyjnego dla trwałej cebuli i " +"ich znaczenie dla każdej sekcji w JSON" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "onion" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "private_key" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "Prywatny klucz usługi Onion zakodowany w standardzie Base64" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "client_auth_priv_key" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" +"Klucz prywatny podczas korzystania z uwierzytelniania klienta. Wyślij go " +"użytkownikowi." + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "client_auth_pub_key" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" +"Klucz publiczny podczas korzystania z uwierzytelniania klienta. Używany po " +"stronie OnionShare." + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "persistent" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "mode" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" +"Tryb używany przez tę trwałą cebulę. Opcje to „share”, „receive”, „website” " +"lub „chat”." + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "enabled" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" +"Czy trwałość jest włączona dla tej cebuli. Gdy opcja trwałości jest " +"odznaczona w wersji komputerowej, cały ten plik JSON jest usuwany. Domyślnie:" +" true" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "autostart_on_launch" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" +"Czy automatycznie uruchomić tę trwałą cebulę, gdy OnionShare się uruchomi i " +"gdy sieć Tor zostanie podłączony. Domyślnie: false" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "general" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "title" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" +"Opcjonalny niestandardowy tytuł do wyświetlania w usłudze onion. Domyślnie: " +"null (zamiast tego będzie wyświetlany tytuł „OnionShare”)" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "public" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" +"Czy do usługi onion można uzyskać dostęp z kluczem prywatnym (" +"uwierzytelnianie klienta) lub bez niego. Jeśli True, nie jest wymagany żaden " +"klucz prywatny." + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "autostart_timer" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" +"Czy usługa onion jest skonfigurowana do uruchamiania o określonej godzinie. " +"Czas można ustawić w aplikacji komputerowej lub określić w sekundach za " +"pomocą ``--auto-start-timer`` za pomocą narzędzia CLI. Domyślnie: false" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "autostop_timer" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" +"Czy usługa onion jest skonfigurowana tak, aby zatrzymać się o określonej " +"godzinie. Czas można ustawić w aplikacji komputerowej ub określić w " +"sekundach za pomocą ``--auto-stop-timer`` za pomocą narzędzia CLI. Domyślnie:" +" False" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "service_id" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "32-znakowy adres URL usługi onion, bez schematu i bez sufiksu „.onion”." + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" +"Poniżej znajdują się ustawienia specyficzne dla 'mode' określonego w sekcji " +"``persistent`` powyżej." + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "share" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "autostop_sharing" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" +"Czy automatycznie zatrzymać udostępnianie po pierwszym pobraniu plików. " +"Domyślnie: true" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "filenames" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "Lista plików do udostępnienia. Domyślnie: []" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "log_filenames" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" +"Czy rejestrować żądania URL do stdout podczas korzystania z narzędzia CLI. " +"Domyślnie: false" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "receive" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "data_dir" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" +"Ścieżka, w której będą przechowywane odebrane pliki lub wiadomości tekstowe. " +"Domyślnie: folder „OnionShare” w katalogu domowym użytkownika." + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "webhook_url" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" +"Adres URL webhooka, do którego OnionShare będzie wysyłać POST, gdy otrzyma " +"pliki lub wiadomości tekstowe. Domyślnie: null" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "disable_text" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "Czy wyłączyć odbieranie wiadomości tekstowych. Domyślnie: false" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "disable_files" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "Czy wyłączyć odbieranie plików. Domyślnie: false" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "website" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "disable_csp" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" +"Jeżeli ustawione na ``true``, OnionShare nie ustawi domyślnego nagłówka " +"zasad bezpieczeństwa treści dla witryny. Domyślnie: ``false``" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "custom_csp" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" +"Niestandardowy nagłówek zasad bezpieczeństwa treści, który należy wysłać " +"zamiast domyślnego." + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "chat" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "W tej chwili nie ma żadnych konfigurowalnych ustawień trybu czatu." + #~ msgid "" #~ "Everything in OnionShare is temporary by default. If you close an " #~ "OnionShare tab, its address no longer exists and it can't be used again. " diff --git a/docs/source/locale/pl/LC_MESSAGES/develop.po b/docs/source/locale/pl/LC_MESSAGES/develop.po index 31838149..29a44097 100644 --- a/docs/source/locale/pl/LC_MESSAGES/develop.po +++ b/docs/source/locale/pl/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-10-13 16:36+0000\n" "Last-Translator: Rafał Godek \n" "Language-Team: pl \n" diff --git a/docs/source/locale/pl/LC_MESSAGES/features.po b/docs/source/locale/pl/LC_MESSAGES/features.po index 45af8eb7..6d90c2f5 100644 --- a/docs/source/locale/pl/LC_MESSAGES/features.po +++ b/docs/source/locale/pl/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-11 08:01+0000\n" "Last-Translator: Matthaiks \n" "Language-Team: pl \n" diff --git a/docs/source/locale/pl/LC_MESSAGES/help.po b/docs/source/locale/pl/LC_MESSAGES/help.po index aada968b..be969fed 100644 --- a/docs/source/locale/pl/LC_MESSAGES/help.po +++ b/docs/source/locale/pl/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-10-14 18:35+0000\n" "Last-Translator: Rafał Godek \n" "Language-Team: pl \n" diff --git a/docs/source/locale/pl/LC_MESSAGES/index.po b/docs/source/locale/pl/LC_MESSAGES/index.po index a4d84f05..5563b19e 100644 --- a/docs/source/locale/pl/LC_MESSAGES/index.po +++ b/docs/source/locale/pl/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-10-24 10:26+0000\n" "Last-Translator: Atrate \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/pl/LC_MESSAGES/install.po b/docs/source/locale/pl/LC_MESSAGES/install.po index 32b1699e..89e5b509 100644 --- a/docs/source/locale/pl/LC_MESSAGES/install.po +++ b/docs/source/locale/pl/LC_MESSAGES/install.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" -"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-11 21:35+0000\n" "Last-Translator: Matthaiks \n" "Language-Team: pl \n" @@ -46,7 +46,7 @@ msgstr "" "Możesz pobrać OnionShare na urządzenia mobilne, korzystając z poniższych " "łączy" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -62,7 +62,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -402,7 +402,7 @@ msgstr "" "za daną wersję. Oto najważniejsze informacje GPG o każdym z głównych twórców " "OnionShare:" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee:" @@ -423,7 +423,7 @@ msgstr "" "openpgp.org/vks/v1/by-" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta:" @@ -444,7 +444,7 @@ msgstr "" "openpgp.org/vks/v1/by-" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "Miguel Jacq:" @@ -461,9 +461,9 @@ msgid "" "keys.openpgp.org/vks/v1/by-" "fingerprint/00AE817C24A10C2540461A9C1D7CDE0234DB458D>`_." msgstr "" -"Możesz pobrać klucz Miguela `z serwera kluczy keys.openpgp.org `_." +"Możesz pobrać klucz Miguela `z serwera kluczy keys.openpgp.org `_." #: ../../source/install.rst:132 msgid "" diff --git a/docs/source/locale/pl/LC_MESSAGES/security.po b/docs/source/locale/pl/LC_MESSAGES/security.po index ef5741e4..44766bdb 100644 --- a/docs/source/locale/pl/LC_MESSAGES/security.po +++ b/docs/source/locale/pl/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-12-12 06:49+0000\n" "Last-Translator: Matthaiks \n" "Language-Team: pl \n" diff --git a/docs/source/locale/pl/LC_MESSAGES/sphinx.po b/docs/source/locale/pl/LC_MESSAGES/sphinx.po index c9e730e7..bd2e5a68 100644 --- a/docs/source/locale/pl/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/pl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-10-02 15:41+0000\n" "Last-Translator: Atrate \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/pl/LC_MESSAGES/tor.po b/docs/source/locale/pl/LC_MESSAGES/tor.po index dfcc8ad3..ee469ee8 100644 --- a/docs/source/locale/pl/LC_MESSAGES/tor.po +++ b/docs/source/locale/pl/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-07 14:30+0000\n" "Last-Translator: Matthaiks \n" "Language-Team: pl \n" diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/advanced.po b/docs/source/locale/pt_BR/LC_MESSAGES/advanced.po index d45fa2fe..071dd372 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/advanced.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2024-11-13 21:58+0000\n" "Last-Translator: Cleverson Cândido \n" "Language-Team: pt_BR \n" @@ -420,6 +420,547 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "Everything in OnionShare is temporary by default. If you close an " #~ "OnionShare tab, its address no longer exists and it can't be used again. " diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/develop.po b/docs/source/locale/pt_BR/LC_MESSAGES/develop.po index d9a3d174..41b90802 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/develop.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 17:06+0000\n" "Last-Translator: emma peel \n" "Language-Team: pt_BR \n" diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/features.po b/docs/source/locale/pt_BR/LC_MESSAGES/features.po index e6fbf293..1e4a4721 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/features.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-09-06 15:09+0000\n" "Last-Translator: ssantos \n" "Language-Team: pt_BR \n" diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/help.po b/docs/source/locale/pt_BR/LC_MESSAGES/help.po index 238d5e39..a60ce5e1 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/help.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-01-23 09:55+0000\n" "Last-Translator: Allan Nordhøy \n" "Language-Team: pt_BR \n" diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/index.po b/docs/source/locale/pt_BR/LC_MESSAGES/index.po index 25c7e84b..8d3467f5 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/index.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-12-17 19:29+0000\n" "Last-Translator: Eduardo Addad de Oliveira \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/install.po b/docs/source/locale/pt_BR/LC_MESSAGES/install.po index 23ba2f2a..8fdb7c0b 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/install.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-05-23 13:09+0000\n" "Last-Translator: Jose Delvani \n" "Language-Team: pt_BR \n" @@ -44,7 +44,7 @@ msgid "You can download OnionShare for Mobile from the follow links" msgstr "" "Você pode baixar o OnionShare para dispositivos móveis nos links a seguir" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -60,7 +60,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -338,7 +338,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -360,7 +360,7 @@ msgstr "" "Micah `do keys.openpgp.org keyserver ` _." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -376,7 +376,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/security.po b/docs/source/locale/pt_BR/LC_MESSAGES/security.po index f6e102ca..bf0c6834 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/security.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-03-31 16:38+0000\n" "Last-Translator: Translator51 \n" diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/sphinx.po b/docs/source/locale/pt_BR/LC_MESSAGES/sphinx.po index 4bb4eae2..8ccd6a6f 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-12-17 19:29+0000\n" "Last-Translator: Eduardo Addad de Oliveira \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/pt_BR/LC_MESSAGES/tor.po b/docs/source/locale/pt_BR/LC_MESSAGES/tor.po index 265bd31a..c9493f6b 100644 --- a/docs/source/locale/pt_BR/LC_MESSAGES/tor.po +++ b/docs/source/locale/pt_BR/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-03 17:52+0000\n" "Last-Translator: emma peel \n" "Language-Team: pt_BR \n" diff --git a/docs/source/locale/pt_PT/LC_MESSAGES/advanced.po b/docs/source/locale/pt_PT/LC_MESSAGES/advanced.po index cacb6a2c..cf01e353 100644 --- a/docs/source/locale/pt_PT/LC_MESSAGES/advanced.po +++ b/docs/source/locale/pt_PT/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2024-09-06 15:09+0000\n" "Last-Translator: ssantos \n" "Language-Team: LANGUAGE \n" @@ -369,3 +369,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/pt_PT/LC_MESSAGES/develop.po b/docs/source/locale/pt_PT/LC_MESSAGES/develop.po index 45dfb3a8..08a88c9e 100644 --- a/docs/source/locale/pt_PT/LC_MESSAGES/develop.po +++ b/docs/source/locale/pt_PT/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 17:06+0000\n" "Last-Translator: emma peel \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/pt_PT/LC_MESSAGES/features.po b/docs/source/locale/pt_PT/LC_MESSAGES/features.po index 8f916dce..889a7bdf 100644 --- a/docs/source/locale/pt_PT/LC_MESSAGES/features.po +++ b/docs/source/locale/pt_PT/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-09-06 15:09+0000\n" "Last-Translator: ssantos \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/pt_PT/LC_MESSAGES/help.po b/docs/source/locale/pt_PT/LC_MESSAGES/help.po index 23742bba..3642f408 100644 --- a/docs/source/locale/pt_PT/LC_MESSAGES/help.po +++ b/docs/source/locale/pt_PT/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-09-30 04:31+0000\n" "Last-Translator: SC \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/pt_PT/LC_MESSAGES/index.po b/docs/source/locale/pt_PT/LC_MESSAGES/index.po index 66b2f525..3be408b4 100644 --- a/docs/source/locale/pt_PT/LC_MESSAGES/index.po +++ b/docs/source/locale/pt_PT/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-19 08:28+0000\n" "Last-Translator: Fábio Henriques \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/pt_PT/LC_MESSAGES/install.po b/docs/source/locale/pt_PT/LC_MESSAGES/install.po index b027810e..ca7ef74e 100644 --- a/docs/source/locale/pt_PT/LC_MESSAGES/install.po +++ b/docs/source/locale/pt_PT/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-02 11:21+0000\n" "Last-Translator: emma peel \n" "Language-Team: pt_PT \n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -334,7 +334,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -356,7 +356,7 @@ msgstr "" "Micah `a partir de keys.openpgp.org keyserver `_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -372,7 +372,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/pt_PT/LC_MESSAGES/security.po b/docs/source/locale/pt_PT/LC_MESSAGES/security.po index 9a4ca275..812690d0 100644 --- a/docs/source/locale/pt_PT/LC_MESSAGES/security.po +++ b/docs/source/locale/pt_PT/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-09-30 04:31+0000\n" "Last-Translator: SC \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/pt_PT/LC_MESSAGES/sphinx.po b/docs/source/locale/pt_PT/LC_MESSAGES/sphinx.po index 16385c88..897881cf 100644 --- a/docs/source/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-19 08:28+0000\n" "Last-Translator: Fábio Henriques \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/pt_PT/LC_MESSAGES/tor.po b/docs/source/locale/pt_PT/LC_MESSAGES/tor.po index b43316f0..42dd17e1 100644 --- a/docs/source/locale/pt_PT/LC_MESSAGES/tor.po +++ b/docs/source/locale/pt_PT/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-09-06 15:09+0000\n" "Last-Translator: Weblate Translation Memory \n" diff --git a/docs/source/locale/ro/LC_MESSAGES/advanced.po b/docs/source/locale/ro/LC_MESSAGES/advanced.po index debf29d5..a3b131a0 100644 --- a/docs/source/locale/ro/LC_MESSAGES/advanced.po +++ b/docs/source/locale/ro/LC_MESSAGES/advanced.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -342,3 +342,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/ro/LC_MESSAGES/develop.po b/docs/source/locale/ro/LC_MESSAGES/develop.po index 348002db..b53930ac 100644 --- a/docs/source/locale/ro/LC_MESSAGES/develop.po +++ b/docs/source/locale/ro/LC_MESSAGES/develop.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ro/LC_MESSAGES/features.po b/docs/source/locale/ro/LC_MESSAGES/features.po index 0b315ef1..2fd76557 100644 --- a/docs/source/locale/ro/LC_MESSAGES/features.po +++ b/docs/source/locale/ro/LC_MESSAGES/features.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ro/LC_MESSAGES/help.po b/docs/source/locale/ro/LC_MESSAGES/help.po index 04607c6b..84e33d66 100644 --- a/docs/source/locale/ro/LC_MESSAGES/help.po +++ b/docs/source/locale/ro/LC_MESSAGES/help.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ro/LC_MESSAGES/index.po b/docs/source/locale/ro/LC_MESSAGES/index.po index c8682bc1..7fa03ed2 100644 --- a/docs/source/locale/ro/LC_MESSAGES/index.po +++ b/docs/source/locale/ro/LC_MESSAGES/index.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ro/LC_MESSAGES/install.po b/docs/source/locale/ro/LC_MESSAGES/install.po index edfa7177..175d5561 100644 --- a/docs/source/locale/ro/LC_MESSAGES/install.po +++ b/docs/source/locale/ro/LC_MESSAGES/install.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,7 +40,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -54,7 +54,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -309,7 +309,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -325,7 +325,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -341,7 +341,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/ro/LC_MESSAGES/security.po b/docs/source/locale/ro/LC_MESSAGES/security.po index d55a381b..871a9d12 100644 --- a/docs/source/locale/ro/LC_MESSAGES/security.po +++ b/docs/source/locale/ro/LC_MESSAGES/security.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ro/LC_MESSAGES/sphinx.po b/docs/source/locale/ro/LC_MESSAGES/sphinx.po index cf7b2edc..82f66457 100644 --- a/docs/source/locale/ro/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/ro/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ro/LC_MESSAGES/tor.po b/docs/source/locale/ro/LC_MESSAGES/tor.po index daa2e2ef..9eaf8eaa 100644 --- a/docs/source/locale/ro/LC_MESSAGES/tor.po +++ b/docs/source/locale/ro/LC_MESSAGES/tor.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ru/LC_MESSAGES/advanced.po b/docs/source/locale/ru/LC_MESSAGES/advanced.po index e19167a0..c5c126d5 100644 --- a/docs/source/locale/ru/LC_MESSAGES/advanced.po +++ b/docs/source/locale/ru/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2024-05-02 15:07+0000\n" "Last-Translator: gfbdrgng \n" "Language-Team: ru \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "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" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.17.0\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" @@ -407,6 +407,550 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +#, fuzzy +msgid "private_key" +msgstr "Отключить использование секретного ключа" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +#, fuzzy +msgid "share" +msgstr "Использование" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +#, fuzzy +msgid "custom_csp" +msgstr "Указать заголовок" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "Turn Off Passwords" #~ msgstr "Отключение паролей" diff --git a/docs/source/locale/ru/LC_MESSAGES/develop.po b/docs/source/locale/ru/LC_MESSAGES/develop.po index 3594885f..8bbe64ba 100644 --- a/docs/source/locale/ru/LC_MESSAGES/develop.po +++ b/docs/source/locale/ru/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-01-25 13:17+0000\n" "Last-Translator: emma peel \n" "Language-Team: ru \n" diff --git a/docs/source/locale/ru/LC_MESSAGES/features.po b/docs/source/locale/ru/LC_MESSAGES/features.po index 99b26176..d9731447 100644 --- a/docs/source/locale/ru/LC_MESSAGES/features.po +++ b/docs/source/locale/ru/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-04-26 19:07+0000\n" "Last-Translator: gfbdrgng \n" "Language-Team: ru \n" diff --git a/docs/source/locale/ru/LC_MESSAGES/help.po b/docs/source/locale/ru/LC_MESSAGES/help.po index aa04a770..b19d8a46 100644 --- a/docs/source/locale/ru/LC_MESSAGES/help.po +++ b/docs/source/locale/ru/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-09-23 15:36+0000\n" "Last-Translator: Alexander Tarasenko \n" "Language-Team: ru \n" diff --git a/docs/source/locale/ru/LC_MESSAGES/index.po b/docs/source/locale/ru/LC_MESSAGES/index.po index a4d5848e..681c93ab 100644 --- a/docs/source/locale/ru/LC_MESSAGES/index.po +++ b/docs/source/locale/ru/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-05-21 09:01+0000\n" "Last-Translator: gfbdrgng \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ru/LC_MESSAGES/install.po b/docs/source/locale/ru/LC_MESSAGES/install.po index 3371c947..9d8ccc2b 100644 --- a/docs/source/locale/ru/LC_MESSAGES/install.po +++ b/docs/source/locale/ru/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-07-15 13:09+0000\n" "Last-Translator: gfbdrgng \n" "Language-Team: ru \n" @@ -43,7 +43,7 @@ msgstr "Мобильный" msgid "You can download OnionShare for Mobile from the follow links" msgstr "Скачать OnionShare для мобильных устройств можно по следующим ссылкам" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -59,7 +59,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -406,7 +406,7 @@ msgstr "" "Пакеты подписываются разработчиком, ответственным за конкретный релиз. Ниже " "приведена информация об основных разработчиках OnionShare:" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Майка Ли:" @@ -426,7 +426,7 @@ msgstr "" "keys.openpgp.org/vks/v1/by-" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Саптак Сенгупта:" @@ -446,7 +446,7 @@ msgstr "" "keys.openpgp.org/vks/v1/by-" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/ru/LC_MESSAGES/security.po b/docs/source/locale/ru/LC_MESSAGES/security.po index 1dc6dcb7..24e25a37 100644 --- a/docs/source/locale/ru/LC_MESSAGES/security.po +++ b/docs/source/locale/ru/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-09-11 10:51+0000\n" "Last-Translator: xXx \n" "Language-Team: ru \n" diff --git a/docs/source/locale/ru/LC_MESSAGES/sphinx.po b/docs/source/locale/ru/LC_MESSAGES/sphinx.po index 228ab09c..32767fe5 100644 --- a/docs/source/locale/ru/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/ru/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-11-02 09:26+0000\n" "Last-Translator: Yuri Slobodyanyuk \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/ru/LC_MESSAGES/tor.po b/docs/source/locale/ru/LC_MESSAGES/tor.po index c10a0ecf..d2fd1539 100644 --- a/docs/source/locale/ru/LC_MESSAGES/tor.po +++ b/docs/source/locale/ru/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-05-02 15:07+0000\n" "Last-Translator: Weblate Translation Memory \n" diff --git a/docs/source/locale/si/LC_MESSAGES/advanced.po b/docs/source/locale/si/LC_MESSAGES/advanced.po index 3734d9ac..ed4be2f1 100644 --- a/docs/source/locale/si/LC_MESSAGES/advanced.po +++ b/docs/source/locale/si/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/si/LC_MESSAGES/develop.po b/docs/source/locale/si/LC_MESSAGES/develop.po index 6f1cbd80..65cfecdb 100644 --- a/docs/source/locale/si/LC_MESSAGES/develop.po +++ b/docs/source/locale/si/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/si/LC_MESSAGES/features.po b/docs/source/locale/si/LC_MESSAGES/features.po index bfb572cc..b5fd0447 100644 --- a/docs/source/locale/si/LC_MESSAGES/features.po +++ b/docs/source/locale/si/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/si/LC_MESSAGES/help.po b/docs/source/locale/si/LC_MESSAGES/help.po index 18f67c88..0e5839e0 100644 --- a/docs/source/locale/si/LC_MESSAGES/help.po +++ b/docs/source/locale/si/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/si/LC_MESSAGES/index.po b/docs/source/locale/si/LC_MESSAGES/index.po index 0f65c50b..414cdb5c 100644 --- a/docs/source/locale/si/LC_MESSAGES/index.po +++ b/docs/source/locale/si/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/si/LC_MESSAGES/install.po b/docs/source/locale/si/LC_MESSAGES/install.po index 2fc5b885..c6e4331f 100644 --- a/docs/source/locale/si/LC_MESSAGES/install.po +++ b/docs/source/locale/si/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/si/LC_MESSAGES/security.po b/docs/source/locale/si/LC_MESSAGES/security.po index b20e65c7..79fbe246 100644 --- a/docs/source/locale/si/LC_MESSAGES/security.po +++ b/docs/source/locale/si/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/si/LC_MESSAGES/sphinx.po b/docs/source/locale/si/LC_MESSAGES/sphinx.po index 4fe39ae6..6b693e02 100644 --- a/docs/source/locale/si/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/si/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/si/LC_MESSAGES/tor.po b/docs/source/locale/si/LC_MESSAGES/tor.po index 2d3e91b8..4f6dea46 100644 --- a/docs/source/locale/si/LC_MESSAGES/tor.po +++ b/docs/source/locale/si/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sk/LC_MESSAGES/advanced.po b/docs/source/locale/sk/LC_MESSAGES/advanced.po index 913ef201..8eeeddd3 100644 --- a/docs/source/locale/sk/LC_MESSAGES/advanced.po +++ b/docs/source/locale/sk/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2024-11-23 20:00+0000\n" "Last-Translator: Jozef Gaal \n" "Language-Team: none\n" @@ -386,3 +386,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/sk/LC_MESSAGES/develop.po b/docs/source/locale/sk/LC_MESSAGES/develop.po index ea4a887b..432baa79 100644 --- a/docs/source/locale/sk/LC_MESSAGES/develop.po +++ b/docs/source/locale/sk/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sk/LC_MESSAGES/features.po b/docs/source/locale/sk/LC_MESSAGES/features.po index 19929565..546640ca 100644 --- a/docs/source/locale/sk/LC_MESSAGES/features.po +++ b/docs/source/locale/sk/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-11-14 00:13+0000\n" "Last-Translator: Jozef Gaal \n" "Language-Team: none\n" diff --git a/docs/source/locale/sk/LC_MESSAGES/help.po b/docs/source/locale/sk/LC_MESSAGES/help.po index 2b9a794b..f4d625a9 100644 --- a/docs/source/locale/sk/LC_MESSAGES/help.po +++ b/docs/source/locale/sk/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-11-14 00:13+0000\n" "Last-Translator: Jozef Gaal \n" "Language-Team: none\n" diff --git a/docs/source/locale/sk/LC_MESSAGES/index.po b/docs/source/locale/sk/LC_MESSAGES/index.po index 24162517..781ad4e3 100644 --- a/docs/source/locale/sk/LC_MESSAGES/index.po +++ b/docs/source/locale/sk/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-10-22 12:26+0000\n" "Last-Translator: Juraj Liso \n" "Language-Team: none\n" diff --git a/docs/source/locale/sk/LC_MESSAGES/install.po b/docs/source/locale/sk/LC_MESSAGES/install.po index 73c19489..7d32fcef 100644 --- a/docs/source/locale/sk/LC_MESSAGES/install.po +++ b/docs/source/locale/sk/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-12-25 11:33+0000\n" "Last-Translator: Jozef Gaal \n" "Language-Team: none\n" @@ -42,7 +42,7 @@ msgstr "Mobil" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -58,7 +58,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -336,7 +336,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee:" @@ -356,7 +356,7 @@ msgstr "" "openpgp.org/vks/v1/by-" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta:" @@ -373,7 +373,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/sk/LC_MESSAGES/security.po b/docs/source/locale/sk/LC_MESSAGES/security.po index 588dea29..684750d3 100644 --- a/docs/source/locale/sk/LC_MESSAGES/security.po +++ b/docs/source/locale/sk/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-11-14 19:42+0000\n" "Last-Translator: Jozef Gaal \n" "Language-Team: none\n" diff --git a/docs/source/locale/sk/LC_MESSAGES/sphinx.po b/docs/source/locale/sk/LC_MESSAGES/sphinx.po index ddaa6d02..fd482f39 100644 --- a/docs/source/locale/sk/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/sk/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-10-22 12:26+0000\n" "Last-Translator: Juraj Liso \n" "Language-Team: none\n" diff --git a/docs/source/locale/sk/LC_MESSAGES/tor.po b/docs/source/locale/sk/LC_MESSAGES/tor.po index e22743e8..1cbdbb40 100644 --- a/docs/source/locale/sk/LC_MESSAGES/tor.po +++ b/docs/source/locale/sk/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-12-25 11:33+0000\n" "Last-Translator: Jozef Gaal \n" "Language-Team: none\n" diff --git a/docs/source/locale/sl/LC_MESSAGES/advanced.po b/docs/source/locale/sl/LC_MESSAGES/advanced.po index cb6c0da0..c7aa46e1 100644 --- a/docs/source/locale/sl/LC_MESSAGES/advanced.po +++ b/docs/source/locale/sl/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/sl/LC_MESSAGES/develop.po b/docs/source/locale/sl/LC_MESSAGES/develop.po index 23a990d2..73c34236 100644 --- a/docs/source/locale/sl/LC_MESSAGES/develop.po +++ b/docs/source/locale/sl/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sl/LC_MESSAGES/features.po b/docs/source/locale/sl/LC_MESSAGES/features.po index dc51f6b9..c9df182a 100644 --- a/docs/source/locale/sl/LC_MESSAGES/features.po +++ b/docs/source/locale/sl/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sl/LC_MESSAGES/help.po b/docs/source/locale/sl/LC_MESSAGES/help.po index 56053c70..981e902f 100644 --- a/docs/source/locale/sl/LC_MESSAGES/help.po +++ b/docs/source/locale/sl/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sl/LC_MESSAGES/index.po b/docs/source/locale/sl/LC_MESSAGES/index.po index df651e9f..281d6953 100644 --- a/docs/source/locale/sl/LC_MESSAGES/index.po +++ b/docs/source/locale/sl/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sl/LC_MESSAGES/install.po b/docs/source/locale/sl/LC_MESSAGES/install.po index aaeda2c5..15dff78b 100644 --- a/docs/source/locale/sl/LC_MESSAGES/install.po +++ b/docs/source/locale/sl/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/sl/LC_MESSAGES/security.po b/docs/source/locale/sl/LC_MESSAGES/security.po index 728c787a..ddc122a0 100644 --- a/docs/source/locale/sl/LC_MESSAGES/security.po +++ b/docs/source/locale/sl/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sl/LC_MESSAGES/sphinx.po b/docs/source/locale/sl/LC_MESSAGES/sphinx.po index 1acfbe14..a2258f3a 100644 --- a/docs/source/locale/sl/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/sl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sl/LC_MESSAGES/tor.po b/docs/source/locale/sl/LC_MESSAGES/tor.po index 20eada59..f5ee7c18 100644 --- a/docs/source/locale/sl/LC_MESSAGES/tor.po +++ b/docs/source/locale/sl/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sn/LC_MESSAGES/advanced.po b/docs/source/locale/sn/LC_MESSAGES/advanced.po index ee217c47..18b784d8 100644 --- a/docs/source/locale/sn/LC_MESSAGES/advanced.po +++ b/docs/source/locale/sn/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/sn/LC_MESSAGES/develop.po b/docs/source/locale/sn/LC_MESSAGES/develop.po index b5bf6ef3..133ba8b7 100644 --- a/docs/source/locale/sn/LC_MESSAGES/develop.po +++ b/docs/source/locale/sn/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sn/LC_MESSAGES/features.po b/docs/source/locale/sn/LC_MESSAGES/features.po index fbc552b4..05a0d14f 100644 --- a/docs/source/locale/sn/LC_MESSAGES/features.po +++ b/docs/source/locale/sn/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sn/LC_MESSAGES/help.po b/docs/source/locale/sn/LC_MESSAGES/help.po index b1152950..ad2bb291 100644 --- a/docs/source/locale/sn/LC_MESSAGES/help.po +++ b/docs/source/locale/sn/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sn/LC_MESSAGES/index.po b/docs/source/locale/sn/LC_MESSAGES/index.po index d9a351a1..20292ccb 100644 --- a/docs/source/locale/sn/LC_MESSAGES/index.po +++ b/docs/source/locale/sn/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sn/LC_MESSAGES/install.po b/docs/source/locale/sn/LC_MESSAGES/install.po index f1287a64..b3d701da 100644 --- a/docs/source/locale/sn/LC_MESSAGES/install.po +++ b/docs/source/locale/sn/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/sn/LC_MESSAGES/security.po b/docs/source/locale/sn/LC_MESSAGES/security.po index 449ea69f..3fadfd86 100644 --- a/docs/source/locale/sn/LC_MESSAGES/security.po +++ b/docs/source/locale/sn/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sn/LC_MESSAGES/sphinx.po b/docs/source/locale/sn/LC_MESSAGES/sphinx.po index a96db365..cc05c8bf 100644 --- a/docs/source/locale/sn/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/sn/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sn/LC_MESSAGES/tor.po b/docs/source/locale/sn/LC_MESSAGES/tor.po index 9059536f..4f0a4534 100644 --- a/docs/source/locale/sn/LC_MESSAGES/tor.po +++ b/docs/source/locale/sn/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/sq/LC_MESSAGES/advanced.po b/docs/source/locale/sq/LC_MESSAGES/advanced.po index 47cbff03..7510d977 100644 --- a/docs/source/locale/sq/LC_MESSAGES/advanced.po +++ b/docs/source/locale/sq/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2024-12-17 19:38+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: none\n" @@ -418,3 +418,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/sq/LC_MESSAGES/develop.po b/docs/source/locale/sq/LC_MESSAGES/develop.po index 8c251501..4c905689 100644 --- a/docs/source/locale/sq/LC_MESSAGES/develop.po +++ b/docs/source/locale/sq/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-12-19 05:00+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: none\n" diff --git a/docs/source/locale/sq/LC_MESSAGES/features.po b/docs/source/locale/sq/LC_MESSAGES/features.po index aec5a762..a29077b2 100644 --- a/docs/source/locale/sq/LC_MESSAGES/features.po +++ b/docs/source/locale/sq/LC_MESSAGES/features.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" -"PO-Revision-Date: 2024-12-17 20:07+0000\n" +"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" +"PO-Revision-Date: 2025-02-17 07:32+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: none\n" "Language: sq\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.9.2-dev\n" +"X-Generator: Weblate 5.10\n" #: ../../source/features.rst:4 msgid "How OnionShare Works" @@ -354,7 +354,7 @@ msgstr "" #: ../../source/features.rst:102 msgid "Other caveats to be aware of in Receive Mode" -msgstr "" +msgstr "Të tjera gjëra për t’u pasur parasysh për Mënyrën Marrje" #: ../../source/features.rst:104 msgid "" @@ -363,6 +363,10 @@ msgid "" "mode. Try Bronze or Gold to see if you are able to upload a message or a " "file." msgstr "" +"Këto janë raporte që OnionBrowser në pajisje iOS s’është në gjendje të " +"ngarkojë kartela te një OnionShare nën Mënyrën Marrje, kur funksionon nën " +"mënyrën e sigurisë “E argjendtë”. Provoni “Të bronztë”, ose “Të artë”, që të " +"shihni nëse jeni në gjendje të ngarkoni një mesazh, apo një kartelë." #: ../../source/features.rst:107 msgid "Host a Website" diff --git a/docs/source/locale/sq/LC_MESSAGES/help.po b/docs/source/locale/sq/LC_MESSAGES/help.po index a5a0756f..f98e4687 100644 --- a/docs/source/locale/sq/LC_MESSAGES/help.po +++ b/docs/source/locale/sq/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-12-16 11:24+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: none\n" diff --git a/docs/source/locale/sq/LC_MESSAGES/index.po b/docs/source/locale/sq/LC_MESSAGES/index.po index 00123c8a..21c6b42d 100644 --- a/docs/source/locale/sq/LC_MESSAGES/index.po +++ b/docs/source/locale/sq/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-12-17 09:15+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: none\n" diff --git a/docs/source/locale/sq/LC_MESSAGES/install.po b/docs/source/locale/sq/LC_MESSAGES/install.po index 15fd9b4e..2eae3bdf 100644 --- a/docs/source/locale/sq/LC_MESSAGES/install.po +++ b/docs/source/locale/sq/LC_MESSAGES/install.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.1\n" "Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" -"PO-Revision-Date: 2025-02-14 00:02+0000\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" +"PO-Revision-Date: 2025-02-17 07:32+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: none\n" "Language: sq\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 5.10-rc\n" +"X-Generator: Weblate 5.10\n" #: ../../source/install.rst:2 msgid "Installation" @@ -42,7 +42,7 @@ msgstr "Celular" msgid "You can download OnionShare for Mobile from the follow links" msgstr "OnionShare për Celular mund të shkarkoni nga lidhjet vijuese" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -58,7 +58,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -391,17 +391,16 @@ msgid "Signing key" msgstr "Kyç nënshkrimesh" #: ../../source/install.rst:117 -#, fuzzy msgid "" "Packages are signed by the core developer who is responsible for the " "particular release. Here is the GPG key information for each of the core " "developers of OnionShare:" msgstr "" -"Paketat nënshkruhen nga zhvilluesi kryesor që është përgjegjës për hedhjen " -"përkatëse në qarkullim. Sa vijon, janë hollësi të zhvilluesve bazë të " -"OnionShare-it:" +"Paketat nënshkruhen nga zhvilluesi kryesor, i cili është përgjegjës për " +"hedhjen përkatëse në qarkullim. Ja hollësi kyçesh GPG për secilin nga " +"zhvilluesit kryesorë të OnionShare-it:" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee:" @@ -421,7 +420,7 @@ msgstr "" "`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta:" @@ -441,16 +440,15 @@ msgstr "" "kyçeve `_." -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" -msgstr "" +msgstr "Miguel Jacq:" #: ../../source/install.rst:129 -#, fuzzy msgid "" "PGP public key fingerprint ``00AE817C24A10C2540461A9C1D7CDE0234DB458D``." msgstr "" -"Shenja gishtash kyçi publik PGP ``927F419D7EC82C2F149C1BD1403C2657CD994F73``." +"Shenja gishtash kyçi publik PGP ``00AE817C24A10C2540461A9C1D7CDE0234DB458D``." #: ../../source/install.rst:130 msgid "" @@ -458,6 +456,9 @@ msgid "" "keys.openpgp.org/vks/v1/by-" "fingerprint/00AE817C24A10C2540461A9C1D7CDE0234DB458D>`_." msgstr "" +"Kyçin e Migelit mund ta shkarkoni që nga shërbyesi i kyçeve keys.openpgp.org " +"`_." #: ../../source/install.rst:132 msgid "" diff --git a/docs/source/locale/sq/LC_MESSAGES/security.po b/docs/source/locale/sq/LC_MESSAGES/security.po index 4b32d87d..f4f17703 100644 --- a/docs/source/locale/sq/LC_MESSAGES/security.po +++ b/docs/source/locale/sq/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-12-17 19:38+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: none\n" diff --git a/docs/source/locale/sq/LC_MESSAGES/sphinx.po b/docs/source/locale/sq/LC_MESSAGES/sphinx.po index e31fd975..f966bd24 100644 --- a/docs/source/locale/sq/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/sq/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-12-18 07:08+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: none\n" diff --git a/docs/source/locale/sq/LC_MESSAGES/tor.po b/docs/source/locale/sq/LC_MESSAGES/tor.po index 7b118eb8..65b4bbc8 100644 --- a/docs/source/locale/sq/LC_MESSAGES/tor.po +++ b/docs/source/locale/sq/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-12-19 05:00+0000\n" "Last-Translator: Weblate Translation Memory \n" diff --git a/docs/source/locale/sr@latin/LC_MESSAGES/advanced.po b/docs/source/locale/sr@latin/LC_MESSAGES/advanced.po index debf29d5..a3b131a0 100644 --- a/docs/source/locale/sr@latin/LC_MESSAGES/advanced.po +++ b/docs/source/locale/sr@latin/LC_MESSAGES/advanced.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -342,3 +342,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/sr@latin/LC_MESSAGES/develop.po b/docs/source/locale/sr@latin/LC_MESSAGES/develop.po index 348002db..b53930ac 100644 --- a/docs/source/locale/sr@latin/LC_MESSAGES/develop.po +++ b/docs/source/locale/sr@latin/LC_MESSAGES/develop.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/sr@latin/LC_MESSAGES/features.po b/docs/source/locale/sr@latin/LC_MESSAGES/features.po index 0b315ef1..2fd76557 100644 --- a/docs/source/locale/sr@latin/LC_MESSAGES/features.po +++ b/docs/source/locale/sr@latin/LC_MESSAGES/features.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/sr@latin/LC_MESSAGES/help.po b/docs/source/locale/sr@latin/LC_MESSAGES/help.po index 04607c6b..84e33d66 100644 --- a/docs/source/locale/sr@latin/LC_MESSAGES/help.po +++ b/docs/source/locale/sr@latin/LC_MESSAGES/help.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/sr@latin/LC_MESSAGES/index.po b/docs/source/locale/sr@latin/LC_MESSAGES/index.po index 0e1664d2..e5821e70 100644 --- a/docs/source/locale/sr@latin/LC_MESSAGES/index.po +++ b/docs/source/locale/sr@latin/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-11-26 18:53+0000\n" "Last-Translator: tics tics \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/sr@latin/LC_MESSAGES/install.po b/docs/source/locale/sr@latin/LC_MESSAGES/install.po index 51df544c..1772939f 100644 --- a/docs/source/locale/sr@latin/LC_MESSAGES/install.po +++ b/docs/source/locale/sr@latin/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 12:39+0000\n" "Last-Translator: emma peel \n" "Language-Team: LANGUAGE \n" @@ -44,7 +44,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -58,7 +58,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -331,7 +331,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -353,7 +353,7 @@ msgstr "" "openpgp.org/vks/v1/by-" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -369,7 +369,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/sr@latin/LC_MESSAGES/security.po b/docs/source/locale/sr@latin/LC_MESSAGES/security.po index d55a381b..871a9d12 100644 --- a/docs/source/locale/sr@latin/LC_MESSAGES/security.po +++ b/docs/source/locale/sr@latin/LC_MESSAGES/security.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/sr@latin/LC_MESSAGES/sphinx.po b/docs/source/locale/sr@latin/LC_MESSAGES/sphinx.po index 0ad3a586..b3da1c99 100644 --- a/docs/source/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-03-02 16:50+0000\n" "Last-Translator: Filipovic Dragan \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/sr@latin/LC_MESSAGES/tor.po b/docs/source/locale/sr@latin/LC_MESSAGES/tor.po index 584172e6..d59be445 100644 --- a/docs/source/locale/sr@latin/LC_MESSAGES/tor.po +++ b/docs/source/locale/sr@latin/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-03 17:52+0000\n" "Last-Translator: emma peel \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/sv/LC_MESSAGES/advanced.po b/docs/source/locale/sv/LC_MESSAGES/advanced.po index dfe0df43..255af965 100644 --- a/docs/source/locale/sv/LC_MESSAGES/advanced.po +++ b/docs/source/locale/sv/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2022-01-22 09:32+0000\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: sv \n" @@ -371,6 +371,547 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "Everything in OnionShare is temporary by default. If you close an " #~ "OnionShare tab, its address no longer exists and it can't be used again. " diff --git a/docs/source/locale/sv/LC_MESSAGES/develop.po b/docs/source/locale/sv/LC_MESSAGES/develop.po index f7cd241e..df1375f5 100644 --- a/docs/source/locale/sv/LC_MESSAGES/develop.po +++ b/docs/source/locale/sv/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 17:06+0000\n" "Last-Translator: emma peel \n" "Language-Team: sv \n" diff --git a/docs/source/locale/sv/LC_MESSAGES/features.po b/docs/source/locale/sv/LC_MESSAGES/features.po index fdbe1f37..ab8955ba 100644 --- a/docs/source/locale/sv/LC_MESSAGES/features.po +++ b/docs/source/locale/sv/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-03-19 18:01+0000\n" "Last-Translator: emma peel \n" "Language-Team: sv \n" diff --git a/docs/source/locale/sv/LC_MESSAGES/help.po b/docs/source/locale/sv/LC_MESSAGES/help.po index 48090811..aade21fc 100644 --- a/docs/source/locale/sv/LC_MESSAGES/help.po +++ b/docs/source/locale/sv/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-01-23 09:55+0000\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: sv \n" diff --git a/docs/source/locale/sv/LC_MESSAGES/index.po b/docs/source/locale/sv/LC_MESSAGES/index.po index 7a48a2a7..64a87c2c 100644 --- a/docs/source/locale/sv/LC_MESSAGES/index.po +++ b/docs/source/locale/sv/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-09-19 15:37+0000\n" "Last-Translator: Michael Breidenbach \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/sv/LC_MESSAGES/install.po b/docs/source/locale/sv/LC_MESSAGES/install.po index e033d82e..30bed6c5 100644 --- a/docs/source/locale/sv/LC_MESSAGES/install.po +++ b/docs/source/locale/sv/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-02-12 17:11+0000\n" "Last-Translator: emma peel \n" "Language-Team: sv \n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -334,7 +334,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -356,7 +356,7 @@ msgstr "" "'från keys.openpgp.org keyserver '_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -372,7 +372,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/sv/LC_MESSAGES/security.po b/docs/source/locale/sv/LC_MESSAGES/security.po index 22c3a567..546517f1 100644 --- a/docs/source/locale/sv/LC_MESSAGES/security.po +++ b/docs/source/locale/sv/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-01-23 09:55+0000\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: sv \n" diff --git a/docs/source/locale/sv/LC_MESSAGES/sphinx.po b/docs/source/locale/sv/LC_MESSAGES/sphinx.po index bbd5b1e8..c25445fc 100644 --- a/docs/source/locale/sv/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-09-19 15:37+0000\n" "Last-Translator: Michael Breidenbach \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/sv/LC_MESSAGES/tor.po b/docs/source/locale/sv/LC_MESSAGES/tor.po index 39f68d42..b9e461ef 100644 --- a/docs/source/locale/sv/LC_MESSAGES/tor.po +++ b/docs/source/locale/sv/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 17:06+0000\n" "Last-Translator: emma peel \n" "Language-Team: sv \n" diff --git a/docs/source/locale/sw/LC_MESSAGES/advanced.po b/docs/source/locale/sw/LC_MESSAGES/advanced.po index 52c98cd7..dc8db0e7 100644 --- a/docs/source/locale/sw/LC_MESSAGES/advanced.po +++ b/docs/source/locale/sw/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2023-04-18 13:52+0000\n" "Last-Translator: Zaituni Njovu \n" "Language-Team: none\n" @@ -359,3 +359,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/sw/LC_MESSAGES/develop.po b/docs/source/locale/sw/LC_MESSAGES/develop.po index 89ac42a0..cd4087e6 100644 --- a/docs/source/locale/sw/LC_MESSAGES/develop.po +++ b/docs/source/locale/sw/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-04-18 13:52+0000\n" "Last-Translator: Zaituni Njovu \n" "Language-Team: none\n" diff --git a/docs/source/locale/sw/LC_MESSAGES/features.po b/docs/source/locale/sw/LC_MESSAGES/features.po index ffaf55a1..0930b875 100644 --- a/docs/source/locale/sw/LC_MESSAGES/features.po +++ b/docs/source/locale/sw/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-04-20 11:51+0000\n" "Last-Translator: Zaituni Njovu \n" "Language-Team: none\n" diff --git a/docs/source/locale/sw/LC_MESSAGES/help.po b/docs/source/locale/sw/LC_MESSAGES/help.po index dbca7a51..1f74bddc 100644 --- a/docs/source/locale/sw/LC_MESSAGES/help.po +++ b/docs/source/locale/sw/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-04-20 11:51+0000\n" "Last-Translator: Zaituni Njovu \n" "Language-Team: none\n" diff --git a/docs/source/locale/sw/LC_MESSAGES/index.po b/docs/source/locale/sw/LC_MESSAGES/index.po index 229ce095..66ba57c0 100644 --- a/docs/source/locale/sw/LC_MESSAGES/index.po +++ b/docs/source/locale/sw/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-04-17 12:36+0000\n" "Last-Translator: Zaituni Njovu \n" "Language-Team: none\n" diff --git a/docs/source/locale/sw/LC_MESSAGES/install.po b/docs/source/locale/sw/LC_MESSAGES/install.po index 7da0b403..ec36a785 100644 --- a/docs/source/locale/sw/LC_MESSAGES/install.po +++ b/docs/source/locale/sw/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 12:39+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" @@ -42,7 +42,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -56,7 +56,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -325,7 +325,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -348,7 +348,7 @@ msgstr "" "keys.openpgp.org/vks/v1/by-" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -364,7 +364,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/sw/LC_MESSAGES/security.po b/docs/source/locale/sw/LC_MESSAGES/security.po index a36fcbff..ea98154e 100644 --- a/docs/source/locale/sw/LC_MESSAGES/security.po +++ b/docs/source/locale/sw/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-04-20 11:51+0000\n" "Last-Translator: Zaituni Njovu \n" "Language-Team: none\n" diff --git a/docs/source/locale/sw/LC_MESSAGES/sphinx.po b/docs/source/locale/sw/LC_MESSAGES/sphinx.po index 7209ef14..38684880 100644 --- a/docs/source/locale/sw/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/sw/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-04-20 11:51+0000\n" "Last-Translator: Zaituni Njovu \n" "Language-Team: none\n" diff --git a/docs/source/locale/sw/LC_MESSAGES/tor.po b/docs/source/locale/sw/LC_MESSAGES/tor.po index b467c201..fd177640 100644 --- a/docs/source/locale/sw/LC_MESSAGES/tor.po +++ b/docs/source/locale/sw/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-08-03 16:11+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/ta/LC_MESSAGES/develop.po b/docs/source/locale/ta/LC_MESSAGES/develop.po index ebeba487..d6180f6d 100644 --- a/docs/source/locale/ta/LC_MESSAGES/develop.po +++ b/docs/source/locale/ta/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/ta/LC_MESSAGES/features.po b/docs/source/locale/ta/LC_MESSAGES/features.po index c4044956..00941820 100644 --- a/docs/source/locale/ta/LC_MESSAGES/features.po +++ b/docs/source/locale/ta/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-22 16:08+0000\n" "Last-Translator: தமிழ்நேரம் \n" "Language-Team: none\n" diff --git a/docs/source/locale/ta/LC_MESSAGES/help.po b/docs/source/locale/ta/LC_MESSAGES/help.po index 92004362..729d33f7 100644 --- a/docs/source/locale/ta/LC_MESSAGES/help.po +++ b/docs/source/locale/ta/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-22 16:08+0000\n" "Last-Translator: தமிழ்நேரம் \n" "Language-Team: none\n" diff --git a/docs/source/locale/ta/LC_MESSAGES/index.po b/docs/source/locale/ta/LC_MESSAGES/index.po index 63dfb00e..1816c1e3 100644 --- a/docs/source/locale/ta/LC_MESSAGES/index.po +++ b/docs/source/locale/ta/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-22 16:08+0000\n" "Last-Translator: தமிழ்நேரம் \n" "Language-Team: none\n" diff --git a/docs/source/locale/ta/LC_MESSAGES/install.po b/docs/source/locale/ta/LC_MESSAGES/install.po index 38241f14..379bc806 100644 --- a/docs/source/locale/ta/LC_MESSAGES/install.po +++ b/docs/source/locale/ta/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-22 16:07+0000\n" "Last-Translator: தமிழ்நேரம் \n" "Language-Team: none\n" @@ -42,7 +42,7 @@ msgstr "மொபைல்" msgid "You can download OnionShare for Mobile from the follow links" msgstr "பின்தொடர்தல் இணைப்புகளிலிருந்து மொபைலுக்கான வெங்காயத்தை பதிவிறக்கம் செய்யலாம்" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "ஆண்ட்ராய்டு" @@ -58,7 +58,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-droid: https://github.com/onionshare/onionshare-android- இரவு" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "ஐஇமு" @@ -389,7 +389,7 @@ msgstr "" "குறிப்பிட்ட வெளியீட்டிற்கு பொறுப்பான கோர் டெவலப்பரால் தொகுப்புகள் கையொப்பமிடப்படுகின்றன. " "வெங்காயவாதியின் முக்கிய டெவலப்பர்களின் தகவல்கள் பின்வருமாறு:" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "மீகா லீ:" @@ -405,7 +405,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "விசைகளிலிருந்து நீங்கள் மைக்காவின் விசையை பதிவிறக்கம் செய்யலாம்." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "சப்தக் சென்குப்தா:" @@ -423,7 +423,7 @@ msgstr "" "நீங்கள் சாப்டக்கின் விசையை `keys.openpgp.org கீசர்வர் 66b> ஐ" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/ta/LC_MESSAGES/security.po b/docs/source/locale/ta/LC_MESSAGES/security.po index d9b7a1fb..c00d5536 100644 --- a/docs/source/locale/ta/LC_MESSAGES/security.po +++ b/docs/source/locale/ta/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-22 16:08+0000\n" "Last-Translator: தமிழ்நேரம் \n" "Language-Team: none\n" diff --git a/docs/source/locale/ta/LC_MESSAGES/sphinx.po b/docs/source/locale/ta/LC_MESSAGES/sphinx.po index 35f9acd9..6053e9e1 100644 --- a/docs/source/locale/ta/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/ta/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-22 16:08+0000\n" "Last-Translator: தமிழ்நேரம் \n" "Language-Team: none\n" diff --git a/docs/source/locale/ta/LC_MESSAGES/tor.po b/docs/source/locale/ta/LC_MESSAGES/tor.po index ae925ae7..0ba2e18d 100644 --- a/docs/source/locale/ta/LC_MESSAGES/tor.po +++ b/docs/source/locale/ta/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-23 08:26+0000\n" "Last-Translator: தமிழ்நேரம் \n" "Language-Team: none\n" diff --git a/docs/source/locale/te/LC_MESSAGES/advanced.po b/docs/source/locale/te/LC_MESSAGES/advanced.po index debf29d5..a3b131a0 100644 --- a/docs/source/locale/te/LC_MESSAGES/advanced.po +++ b/docs/source/locale/te/LC_MESSAGES/advanced.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -342,3 +342,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/te/LC_MESSAGES/develop.po b/docs/source/locale/te/LC_MESSAGES/develop.po index 348002db..b53930ac 100644 --- a/docs/source/locale/te/LC_MESSAGES/develop.po +++ b/docs/source/locale/te/LC_MESSAGES/develop.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/te/LC_MESSAGES/features.po b/docs/source/locale/te/LC_MESSAGES/features.po index 0b315ef1..2fd76557 100644 --- a/docs/source/locale/te/LC_MESSAGES/features.po +++ b/docs/source/locale/te/LC_MESSAGES/features.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/te/LC_MESSAGES/help.po b/docs/source/locale/te/LC_MESSAGES/help.po index 04607c6b..84e33d66 100644 --- a/docs/source/locale/te/LC_MESSAGES/help.po +++ b/docs/source/locale/te/LC_MESSAGES/help.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/te/LC_MESSAGES/index.po b/docs/source/locale/te/LC_MESSAGES/index.po index c8682bc1..7fa03ed2 100644 --- a/docs/source/locale/te/LC_MESSAGES/index.po +++ b/docs/source/locale/te/LC_MESSAGES/index.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/te/LC_MESSAGES/install.po b/docs/source/locale/te/LC_MESSAGES/install.po index edfa7177..175d5561 100644 --- a/docs/source/locale/te/LC_MESSAGES/install.po +++ b/docs/source/locale/te/LC_MESSAGES/install.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -40,7 +40,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -54,7 +54,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -309,7 +309,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -325,7 +325,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -341,7 +341,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/te/LC_MESSAGES/security.po b/docs/source/locale/te/LC_MESSAGES/security.po index d55a381b..871a9d12 100644 --- a/docs/source/locale/te/LC_MESSAGES/security.po +++ b/docs/source/locale/te/LC_MESSAGES/security.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/te/LC_MESSAGES/sphinx.po b/docs/source/locale/te/LC_MESSAGES/sphinx.po index cf7b2edc..82f66457 100644 --- a/docs/source/locale/te/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/te/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/te/LC_MESSAGES/tor.po b/docs/source/locale/te/LC_MESSAGES/tor.po index daa2e2ef..9eaf8eaa 100644 --- a/docs/source/locale/te/LC_MESSAGES/tor.po +++ b/docs/source/locale/te/LC_MESSAGES/tor.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/tl/LC_MESSAGES/advanced.po b/docs/source/locale/tl/LC_MESSAGES/advanced.po index c95f10b6..0365e993 100644 --- a/docs/source/locale/tl/LC_MESSAGES/advanced.po +++ b/docs/source/locale/tl/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/tok/LC_MESSAGES/index.po b/docs/source/locale/tok/LC_MESSAGES/index.po index d290331e..f2685f6f 100644 --- a/docs/source/locale/tok/LC_MESSAGES/index.po +++ b/docs/source/locale/tok/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/tok/LC_MESSAGES/sphinx.po b/docs/source/locale/tok/LC_MESSAGES/sphinx.po index 7b3f7b01..e9d70545 100644 --- a/docs/source/locale/tok/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/tok/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/tr/LC_MESSAGES/advanced.po b/docs/source/locale/tr/LC_MESSAGES/advanced.po index b8f45b8e..70f55ec3 100644 --- a/docs/source/locale/tr/LC_MESSAGES/advanced.po +++ b/docs/source/locale/tr/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2022-10-03 23:25+0000\n" "Last-Translator: Oğuz Ersen \n" "Language-Team: tr \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.17.0\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" @@ -405,6 +405,550 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +#, fuzzy +msgid "private_key" +msgstr "Kişisel anahtarı kapat" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +#, fuzzy +msgid "share" +msgstr "Kullanım" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +#, fuzzy +msgid "custom_csp" +msgstr "Özel başlıklar" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "Turn Off Passwords" #~ msgstr "Parolaları Kapatın" diff --git a/docs/source/locale/tr/LC_MESSAGES/develop.po b/docs/source/locale/tr/LC_MESSAGES/develop.po index cb28220c..7e8a8df2 100644 --- a/docs/source/locale/tr/LC_MESSAGES/develop.po +++ b/docs/source/locale/tr/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-10-02 12:36+0000\n" "Last-Translator: Kaya Zeren \n" "Language-Team: tr \n" diff --git a/docs/source/locale/tr/LC_MESSAGES/features.po b/docs/source/locale/tr/LC_MESSAGES/features.po index f7589f64..b680c1b9 100644 --- a/docs/source/locale/tr/LC_MESSAGES/features.po +++ b/docs/source/locale/tr/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-03 17:52+0000\n" "Last-Translator: emma peel \n" "Language-Team: tr \n" diff --git a/docs/source/locale/tr/LC_MESSAGES/help.po b/docs/source/locale/tr/LC_MESSAGES/help.po index 20629c43..f2d6ae63 100644 --- a/docs/source/locale/tr/LC_MESSAGES/help.po +++ b/docs/source/locale/tr/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-10-02 12:36+0000\n" "Last-Translator: Kaya Zeren \n" "Language-Team: tr \n" diff --git a/docs/source/locale/tr/LC_MESSAGES/index.po b/docs/source/locale/tr/LC_MESSAGES/index.po index 74bb72f2..0a5f6523 100644 --- a/docs/source/locale/tr/LC_MESSAGES/index.po +++ b/docs/source/locale/tr/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-10-02 12:36+0000\n" "Last-Translator: Kaya Zeren \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/tr/LC_MESSAGES/install.po b/docs/source/locale/tr/LC_MESSAGES/install.po index 5985f9f2..e39731d9 100644 --- a/docs/source/locale/tr/LC_MESSAGES/install.po +++ b/docs/source/locale/tr/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-03-22 16:08+0000\n" "Last-Translator: Oğuz Ersen \n" "Language-Team: tr \n" @@ -42,7 +42,7 @@ msgstr "Mobil" msgid "You can download OnionShare for Mobile from the follow links" msgstr "Mobil için aşağıdaki bağlantılardan OnionShare indirebilirsiniz" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -58,7 +58,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -400,7 +400,7 @@ msgstr "" "imzalanır. Aşağıda OnionShare'in ana geliştiricilerinin bilgileri yer " "almaktadır:" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee:" @@ -421,7 +421,7 @@ msgstr "" "openpgp.org/vks/v1/by-" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_ indirebilirsiniz." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta:" @@ -442,7 +442,7 @@ msgstr "" "openpgp.org/vks/v1/by-" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_ indirebilirsiniz." -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/tr/LC_MESSAGES/security.po b/docs/source/locale/tr/LC_MESSAGES/security.po index 44c19d24..de686587 100644 --- a/docs/source/locale/tr/LC_MESSAGES/security.po +++ b/docs/source/locale/tr/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-07-07 19:19+0000\n" "Last-Translator: Oğuz Ersen \n" "Language-Team: tr \n" diff --git a/docs/source/locale/tr/LC_MESSAGES/sphinx.po b/docs/source/locale/tr/LC_MESSAGES/sphinx.po index a0eb0930..f80f0191 100644 --- a/docs/source/locale/tr/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/tr/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-10-07 06:22+0000\n" "Last-Translator: Oğuz Ersen \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/tr/LC_MESSAGES/tor.po b/docs/source/locale/tr/LC_MESSAGES/tor.po index 4eb38cf1..4361fc28 100644 --- a/docs/source/locale/tr/LC_MESSAGES/tor.po +++ b/docs/source/locale/tr/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 17:06+0000\n" "Last-Translator: Oğuz Ersen \n" "Language-Team: tr \n" diff --git a/docs/source/locale/uk/LC_MESSAGES/advanced.po b/docs/source/locale/uk/LC_MESSAGES/advanced.po index c593bff5..feb48c15 100644 --- a/docs/source/locale/uk/LC_MESSAGES/advanced.po +++ b/docs/source/locale/uk/LC_MESSAGES/advanced.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" -"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2025-02-14 00:02+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: none\n" @@ -17,8 +17,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "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" -"X-Generator: Weblate 5.10-rc\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.17.0\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" @@ -374,8 +373,8 @@ msgstr "" msgid "" "Be sure to run ``sudo systemctl daemon-reload`` after creating the unit file." msgstr "" -"Обов'язково виконайте ``sudo systemctl daemon-reload`` після створення " -"юніт-файлу." +"Обов'язково виконайте ``sudo systemctl daemon-reload`` після створення юніт-" +"файлу." #: ../../source/advanced.rst:272 msgid "" @@ -446,6 +445,550 @@ msgstr "macOS: ``~/Library/Application Support/OnionShare``" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "Windows: ``%APPDATA%\\OnionShare``" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +#, fuzzy +msgid "private_key" +msgstr "Вимкнути приватний ключ" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +#, fuzzy +msgid "share" +msgstr "Користування" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +#, fuzzy +msgid "custom_csp" +msgstr "Власні заголовки" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #~ msgid "" #~ "By default, everything in OnionShare is temporary. As soon as you close " #~ "an OnionShare tab its address no longer exists and can't be used again. " diff --git a/docs/source/locale/uk/LC_MESSAGES/develop.po b/docs/source/locale/uk/LC_MESSAGES/develop.po index 3ec1f514..c2a8dbec 100644 --- a/docs/source/locale/uk/LC_MESSAGES/develop.po +++ b/docs/source/locale/uk/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-06 17:06+0000\n" "Last-Translator: emma peel \n" "Language-Team: none\n" diff --git a/docs/source/locale/uk/LC_MESSAGES/features.po b/docs/source/locale/uk/LC_MESSAGES/features.po index 5e1a9be3..ba65ebc4 100644 --- a/docs/source/locale/uk/LC_MESSAGES/features.po +++ b/docs/source/locale/uk/LC_MESSAGES/features.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" -"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-14 00:02+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: none\n" diff --git a/docs/source/locale/uk/LC_MESSAGES/help.po b/docs/source/locale/uk/LC_MESSAGES/help.po index 7605f681..06d1e2ee 100644 --- a/docs/source/locale/uk/LC_MESSAGES/help.po +++ b/docs/source/locale/uk/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-01-21 18:55+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: none\n" diff --git a/docs/source/locale/uk/LC_MESSAGES/index.po b/docs/source/locale/uk/LC_MESSAGES/index.po index 5a0f184a..cc44ae05 100644 --- a/docs/source/locale/uk/LC_MESSAGES/index.po +++ b/docs/source/locale/uk/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-06-30 18:18+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: none\n" diff --git a/docs/source/locale/uk/LC_MESSAGES/install.po b/docs/source/locale/uk/LC_MESSAGES/install.po index 296afa7a..393a7438 100644 --- a/docs/source/locale/uk/LC_MESSAGES/install.po +++ b/docs/source/locale/uk/LC_MESSAGES/install.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" -"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-14 00:02+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: none\n" @@ -44,7 +44,7 @@ msgstr "Для мобільного" msgid "You can download OnionShare for Mobile from the follow links" msgstr "Ви можете завантажити OnionShare для мобільного за цими посиланнями" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -60,7 +60,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -400,7 +400,7 @@ msgstr "" "випуск. Ось ключова інформація GPG для кожного з основних розробників " "OnionShare:" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee:" @@ -420,7 +420,7 @@ msgstr "" "`_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta:" @@ -440,7 +440,7 @@ msgstr "" "`_." -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "Miguel Jacq:" @@ -457,8 +457,8 @@ msgid "" "fingerprint/00AE817C24A10C2540461A9C1D7CDE0234DB458D>`_." msgstr "" "Ви можете завантажити ключ Miguel `із сервера ключів keys.openpgp.org " -"`_." +"`_." #: ../../source/install.rst:132 msgid "" diff --git a/docs/source/locale/uk/LC_MESSAGES/security.po b/docs/source/locale/uk/LC_MESSAGES/security.po index f4abece0..be5d2c3f 100644 --- a/docs/source/locale/uk/LC_MESSAGES/security.po +++ b/docs/source/locale/uk/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2022-10-03 23:25+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: none\n" diff --git a/docs/source/locale/uk/LC_MESSAGES/sphinx.po b/docs/source/locale/uk/LC_MESSAGES/sphinx.po index 2aabe84c..923f29b1 100644 --- a/docs/source/locale/uk/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/uk/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-09-14 23:50+0000\n" "Last-Translator: ihor_ck \n" "Language-Team: none\n" diff --git a/docs/source/locale/uk/LC_MESSAGES/tor.po b/docs/source/locale/uk/LC_MESSAGES/tor.po index d6855a2a..f3e979eb 100644 --- a/docs/source/locale/uk/LC_MESSAGES/tor.po +++ b/docs/source/locale/uk/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-07 14:30+0000\n" "Last-Translator: Ihor Hordiichuk \n" "Language-Team: none\n" diff --git a/docs/source/locale/vi/LC_MESSAGES/advanced.po b/docs/source/locale/vi/LC_MESSAGES/advanced.po index 18e53129..d9cea529 100644 --- a/docs/source/locale/vi/LC_MESSAGES/advanced.po +++ b/docs/source/locale/vi/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2023-02-22 11:40+0000\n" "Last-Translator: tictactoe \n" "Language-Team: none\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 2.14.0\n" +"Generated-By: Babel 2.17.0\n" #: ../../source/advanced.rst:2 msgid "Advanced Usage" @@ -403,3 +403,547 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +#, fuzzy +msgid "private_key" +msgstr "Tắt đi Khoá key riêng tư" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +#, fuzzy +msgid "share" +msgstr "Sử dụng" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +#, fuzzy +msgid "custom_csp" +msgstr "Tiêu đề tùy chỉnh" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/vi/LC_MESSAGES/develop.po b/docs/source/locale/vi/LC_MESSAGES/develop.po index d1f8593a..5f36ff96 100644 --- a/docs/source/locale/vi/LC_MESSAGES/develop.po +++ b/docs/source/locale/vi/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-02-22 11:39+0000\n" "Last-Translator: tictactoe \n" "Language-Team: none\n" diff --git a/docs/source/locale/vi/LC_MESSAGES/features.po b/docs/source/locale/vi/LC_MESSAGES/features.po index f2c0617e..b2198df9 100644 --- a/docs/source/locale/vi/LC_MESSAGES/features.po +++ b/docs/source/locale/vi/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-02-22 11:40+0000\n" "Last-Translator: tictactoe \n" "Language-Team: none\n" diff --git a/docs/source/locale/vi/LC_MESSAGES/help.po b/docs/source/locale/vi/LC_MESSAGES/help.po index af659a08..4d3c84bb 100644 --- a/docs/source/locale/vi/LC_MESSAGES/help.po +++ b/docs/source/locale/vi/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-02-20 14:37+0000\n" "Last-Translator: tictactoe \n" "Language-Team: none\n" diff --git a/docs/source/locale/vi/LC_MESSAGES/index.po b/docs/source/locale/vi/LC_MESSAGES/index.po index 76ead95e..1588eb86 100644 --- a/docs/source/locale/vi/LC_MESSAGES/index.po +++ b/docs/source/locale/vi/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-02-20 14:37+0000\n" "Last-Translator: tictactoe \n" "Language-Team: none\n" diff --git a/docs/source/locale/vi/LC_MESSAGES/install.po b/docs/source/locale/vi/LC_MESSAGES/install.po index 9956e017..9983b80f 100644 --- a/docs/source/locale/vi/LC_MESSAGES/install.po +++ b/docs/source/locale/vi/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-07-25 17:04+0000\n" "Last-Translator: tictactoe \n" "Language-Team: none\n" @@ -42,7 +42,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -56,7 +56,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -363,7 +363,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -385,7 +385,7 @@ msgstr "" "của Micah `từ máy chủ khóa key keys.openpgp.org `_." -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -401,7 +401,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/vi/LC_MESSAGES/security.po b/docs/source/locale/vi/LC_MESSAGES/security.po index acfd69c7..a927f3b1 100644 --- a/docs/source/locale/vi/LC_MESSAGES/security.po +++ b/docs/source/locale/vi/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-02-22 11:39+0000\n" "Last-Translator: tictactoe \n" "Language-Team: none\n" diff --git a/docs/source/locale/vi/LC_MESSAGES/sphinx.po b/docs/source/locale/vi/LC_MESSAGES/sphinx.po index 2d168492..78562453 100644 --- a/docs/source/locale/vi/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/vi/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-02-20 14:37+0000\n" "Last-Translator: tictactoe \n" "Language-Team: none\n" diff --git a/docs/source/locale/vi/LC_MESSAGES/tor.po b/docs/source/locale/vi/LC_MESSAGES/tor.po index e2b2035c..7a67b865 100644 --- a/docs/source/locale/vi/LC_MESSAGES/tor.po +++ b/docs/source/locale/vi/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-07-25 17:04+0000\n" "Last-Translator: tictactoe \n" "Language-Team: none\n" diff --git a/docs/source/locale/wo/LC_MESSAGES/advanced.po b/docs/source/locale/wo/LC_MESSAGES/advanced.po index 640960a2..bd9f070a 100644 --- a/docs/source/locale/wo/LC_MESSAGES/advanced.po +++ b/docs/source/locale/wo/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/wo/LC_MESSAGES/develop.po b/docs/source/locale/wo/LC_MESSAGES/develop.po index 60a1484f..6f5fd3c4 100644 --- a/docs/source/locale/wo/LC_MESSAGES/develop.po +++ b/docs/source/locale/wo/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/wo/LC_MESSAGES/features.po b/docs/source/locale/wo/LC_MESSAGES/features.po index 1dccbdf4..90ed470c 100644 --- a/docs/source/locale/wo/LC_MESSAGES/features.po +++ b/docs/source/locale/wo/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/wo/LC_MESSAGES/help.po b/docs/source/locale/wo/LC_MESSAGES/help.po index cf8b3a08..108b0c1f 100644 --- a/docs/source/locale/wo/LC_MESSAGES/help.po +++ b/docs/source/locale/wo/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/wo/LC_MESSAGES/index.po b/docs/source/locale/wo/LC_MESSAGES/index.po index 92d1f33c..fb88457d 100644 --- a/docs/source/locale/wo/LC_MESSAGES/index.po +++ b/docs/source/locale/wo/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/wo/LC_MESSAGES/install.po b/docs/source/locale/wo/LC_MESSAGES/install.po index 537838e7..9cc49612 100644 --- a/docs/source/locale/wo/LC_MESSAGES/install.po +++ b/docs/source/locale/wo/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/wo/LC_MESSAGES/security.po b/docs/source/locale/wo/LC_MESSAGES/security.po index 8e2de254..72d60231 100644 --- a/docs/source/locale/wo/LC_MESSAGES/security.po +++ b/docs/source/locale/wo/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/wo/LC_MESSAGES/sphinx.po b/docs/source/locale/wo/LC_MESSAGES/sphinx.po index 7638c89e..fd60d69a 100644 --- a/docs/source/locale/wo/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/wo/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/wo/LC_MESSAGES/tor.po b/docs/source/locale/wo/LC_MESSAGES/tor.po index d9318e84..b057fb38 100644 --- a/docs/source/locale/wo/LC_MESSAGES/tor.po +++ b/docs/source/locale/wo/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/yo/LC_MESSAGES/advanced.po b/docs/source/locale/yo/LC_MESSAGES/advanced.po index 793106ee..d9743c48 100644 --- a/docs/source/locale/yo/LC_MESSAGES/advanced.po +++ b/docs/source/locale/yo/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -340,3 +340,544 @@ msgstr "" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" diff --git a/docs/source/locale/yo/LC_MESSAGES/develop.po b/docs/source/locale/yo/LC_MESSAGES/develop.po index ecbc5a2e..5fa723bd 100644 --- a/docs/source/locale/yo/LC_MESSAGES/develop.po +++ b/docs/source/locale/yo/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/yo/LC_MESSAGES/features.po b/docs/source/locale/yo/LC_MESSAGES/features.po index 9897d956..bb2c3afd 100644 --- a/docs/source/locale/yo/LC_MESSAGES/features.po +++ b/docs/source/locale/yo/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/yo/LC_MESSAGES/help.po b/docs/source/locale/yo/LC_MESSAGES/help.po index 679664a6..62517760 100644 --- a/docs/source/locale/yo/LC_MESSAGES/help.po +++ b/docs/source/locale/yo/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/yo/LC_MESSAGES/index.po b/docs/source/locale/yo/LC_MESSAGES/index.po index 3bf38dfc..43fcb06c 100644 --- a/docs/source/locale/yo/LC_MESSAGES/index.po +++ b/docs/source/locale/yo/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/yo/LC_MESSAGES/install.po b/docs/source/locale/yo/LC_MESSAGES/install.po index 0415f901..a8170d7c 100644 --- a/docs/source/locale/yo/LC_MESSAGES/install.po +++ b/docs/source/locale/yo/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -38,7 +38,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "" @@ -52,7 +52,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -307,7 +307,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -323,7 +323,7 @@ msgid "" "fingerprint/927F419D7EC82C2F149C1BD1403C2657CD994F73>`_." msgstr "" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -339,7 +339,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/yo/LC_MESSAGES/security.po b/docs/source/locale/yo/LC_MESSAGES/security.po index 3ed2d800..0d069b8a 100644 --- a/docs/source/locale/yo/LC_MESSAGES/security.po +++ b/docs/source/locale/yo/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/yo/LC_MESSAGES/sphinx.po b/docs/source/locale/yo/LC_MESSAGES/sphinx.po index f27ac8f7..95624469 100644 --- a/docs/source/locale/yo/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/yo/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/yo/LC_MESSAGES/tor.po b/docs/source/locale/yo/LC_MESSAGES/tor.po index 9ba7e011..91b061da 100644 --- a/docs/source/locale/yo/LC_MESSAGES/tor.po +++ b/docs/source/locale/yo/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" diff --git a/docs/source/locale/zh_CN/LC_MESSAGES/advanced.po b/docs/source/locale/zh_CN/LC_MESSAGES/advanced.po index 137ed5b6..299f2d69 100644 --- a/docs/source/locale/zh_CN/LC_MESSAGES/advanced.po +++ b/docs/source/locale/zh_CN/LC_MESSAGES/advanced.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" -"PO-Revision-Date: 2025-02-11 08:02+0000\n" +"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" +"PO-Revision-Date: 2025-02-17 18:26+0000\n" "Last-Translator: Sketch6580 \n" "Language-Team: LANGUAGE \n" "Language: zh_CN\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 5.10-dev\n" +"X-Generator: Weblate 5.10.1-dev\n" "Generated-By: Babel 2.9.0\n" #: ../../source/advanced.rst:2 @@ -400,3 +400,589 @@ msgstr "macOS: ``~/Library/Application Support/OnionShare``" #: ../../source/advanced.rst:311 msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "Windows: ``%APPDATA%\\OnionShare``" + +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "配置文件参数" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" +"OnionShare 将其设置存储在 JSON 文件中。CLI 和桌面版本都使用此配置文件。CLI " +"还可让您使用 ``--config`` 指定自定义配置文件的路径。" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "以下是配置文件参数及其含义。如果您的配置文件中有其他未在此处列出的参数," +"它们可能已从旧版本的 OnionShare 中过时。" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "参数" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "类型" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "说明" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "版本" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "``string``" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "OnionShare 的版本。您永远不需要更改此值。" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "connection_type" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" +"OnionShare 连接到 Tor 的方式。有效选项包括 'bundled'、'automatic'(使用 Tor " +"浏览器的 Tor 连接)、'control_port' 或 'socket_file'。默认:'bundled'" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "control_port_address" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" +"如果 ``connection_type`` 设置为 'control_port',即 Tor 控制端口的 IP " +"地址。默认:'127.0.0.1'" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "control_port_port" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "``integer``" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "如果 ``connection_type`` 设置为 'control_port',即 Tor " +"控制端口的的端口号。默认:'9051'" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "socks_address" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" +"如果 ``connection_type`` 设置为 'control_port' 或 'socket_file',即 Tor 的 " +"SOCKS 代理的 IP 地址。默认:'127.0.0.1'" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "socks_port" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" +"如果 ``connection_type`` 设置为 'control_port' 或 'socket_file',即 Tor 的 " +"SOCKS 代理的端口号。默认:''9050'" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "socket_file_path" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" +"如果 ``connection_type`` 设置为 'socket_file',即 Tor 的 Socket " +"文件路径。默认:'/var/run/tor/control'" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "auth_type" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "如果访问 Tor 的控制端口需要密码,则可以将其设置为 'password',否则设置为 " +"'no_auth'。默认:'no_auth'" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "auth_password" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "如果访问 Tor 的控制端口需要密码,并且 ``auth_type`` 设置为 " +"'password',请在此处指定密码。默认:''" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "auto_connect" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "``boolean``" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "OnionShare 启动时是否应自动连接到 Tor。默认:False" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "use_autoupdate" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "OnionShare 是否应自动检查更新(通过 Tor)。此设置仅适用于 MacOS 或 Windows " +"安装。默认:True。" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "autoupdate_timestamp" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "OnionShare 上次检查更新的时间。默认:None" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "bridges_enabled" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "是否使用网桥连接到 Tor。默认:False" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "bridges_type" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" +"当 ``bridges_enabled`` 为 True 时,网桥加载来源。选项包括 \"built-in\"(" +"OnionShare 附带的网桥,可能会从 Tor 更新)、\"moat\"(从 Tor 的 Moat API " +"请求网桥)或 \"custom\"(用户提供的网桥)。默认:\"built-in\"" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "bridges_builtin_pt" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" +"当 ``bridges_type`` 设置为 \"built-in\" " +"时,这指定了要使用哪种类型的网桥协议。选项有 \"obfs4\"、\"meek-azure\" 或 " +"\"snowflake\"。默认:\"obfs4\"" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "bridges_moat" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "当 ``bridges_type`` 设置为 \"moat\" 时,从 Tor 的 Moat API " +"返回的网桥将存储在此处。默认:\"\"" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "bridges_custom" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" +"当 ``bridges_type`` 设置为 \"custom\" 时,用户指定的网桥将存储在此处。用 '\\n" +"' 分隔字符串中的每个网桥行。默认:\"\"" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "bridges_builtin" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "``dict``" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" +"当 ``bridges_type`` 设置为 \"built-in\" 时,OnionShare 会获取 Tor " +"推荐的最新内置网桥并将其存储在此处。默认:{}" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "persistent_tabs" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "``list``" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" +"如果用户将任何标签页定义为 'saved'(这意味着在每次 OnionShare " +"启动时它们都是持久的,并且它们的洋葱地址不会改变),这些标签页将被赋予一个随" +"机标识符,并在此处列出。持久洋葱以与此标识符同名的 JSON 文件存储在 " +"OnionShare 配置文件夹中名为 'persistent' 的子文件夹中。默认:[]" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "语言区域" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" +"OnionShare 中使用的语言区域设置。默认:None(与 'en' " +"相同)。有关有效的语言区域设置代码,请参阅 https://github.com/onionshare/" +"onionshare/blob/main/cli/onionshare_cli/settings.py 中的 'available_locales'" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "主题" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "OnionShare 桌面应用的主题。有效选项有 " +"0(自动检测用户计算机的深色或浅色主题)、1(深色)或 2(浅色)。" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "持久洋葱的配置文件参数" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" +"如上所述,每个“持久”洋葱都有自己的参数,这些参数存储在自己的 JSON 文件中。" +"可以使用 ``--persistent`` 为 CLI 工具指定此文件的路径。" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "以下是一个持久 JSON 配置示例::" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "下方是持久洋葱的配置文件参数及其含义,适用于 JSON 中的每个部分" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "洋葱" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "private_key" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "Base64 编码的洋葱服务的私钥" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "client_auth_priv_key" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "使用客户端身份验证时的私钥。将此发送给用户。" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "client_auth_pub_key" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "使用客户端身份验证时的公钥。在 OnionShare 端使用。" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "持久" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "模式" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "此持久洋葱所使用的模式。选项包括“共享”、“接收”、“网站”或“聊天”。" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "已启用" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "是否为此洋葱启用了持久性。当在桌面中不选中持久选项时,会删除整个 JSON " +"文件。默认:true" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "autostart_on_launch" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "是否在 OnionShare 启动时以及连接 Tor 后自动启动此持久洋葱。默认:false" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "常规" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "标题" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "用于在洋葱服务上显示的可选自定义标题。默认:null(将显示“OnionShare”)" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "公开" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "是否可在有无私钥的情况下访问洋葱服务(客户端身份验证)。如果为 " +"true,则不需要私钥。" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "autostart_timer" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" +"洋葱服务是否配置为在特定时间启动。可在桌面应用中设置时间,也可用 CLI 工具的 " +"``--auto-start-timer`` 以秒为单位指定。默认:false" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "autostop_timer" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" +"洋葱服务是否配置为在特定时间停止。可在桌面应用中设置时间,也可用 CLI 工具的 " +"``--auto-stop-timer`` 以秒为单位指定。默认:false" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "service_id" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "32 个字符的洋葱服务 URL,没有方案,也没有 '.onion' 后缀。" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "以下是特定于上述 ``persistent`` 部分中指定的“模式”的设置。" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "共享" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "autostop_sharing" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "是否在首次下载文件后自动停止共享。默认:true" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "文件名" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "要共享的文件列表。默认:[]" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "log_filenames" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "使用 CLI 工具时是否将 URL 请求记录到 stdout。默认:false" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "接收" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "data_dir" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "接收到的文件或文本消息的存储路径。默认:用户主目录的“OnionShare”文件夹。" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "webhook_url" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "OnionShare 在接收文件或文本消息时将 POST 到的 webhook URL。默认:null" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "disable_text" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "是否禁用接收文本消息。默认:false" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "disable_files" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "是否禁用接收文件。默认:false" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "网站" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "disable_csp" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "如果设置为 ``true``,OnionShare " +"将不会为网站设置默认的内容安全策略标头。默认:``false``" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "custom_csp" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "要发送的自定义内容安全策略标头,而不是默认标头。" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "聊天" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "当前没有聊天模式的可配置设置。" diff --git a/docs/source/locale/zh_CN/LC_MESSAGES/develop.po b/docs/source/locale/zh_CN/LC_MESSAGES/develop.po index a51eaf2c..083c96a6 100644 --- a/docs/source/locale/zh_CN/LC_MESSAGES/develop.po +++ b/docs/source/locale/zh_CN/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-11 08:02+0000\n" "Last-Translator: Sketch6580 \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/zh_CN/LC_MESSAGES/features.po b/docs/source/locale/zh_CN/LC_MESSAGES/features.po index 3a7f5fb1..5d2a7c17 100644 --- a/docs/source/locale/zh_CN/LC_MESSAGES/features.po +++ b/docs/source/locale/zh_CN/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-11 08:01+0000\n" "Last-Translator: Sketch6580 \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/zh_CN/LC_MESSAGES/help.po b/docs/source/locale/zh_CN/LC_MESSAGES/help.po index bc278f59..f9335a51 100644 --- a/docs/source/locale/zh_CN/LC_MESSAGES/help.po +++ b/docs/source/locale/zh_CN/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-08-15 05:09+0000\n" "Last-Translator: Sketch6580 \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/zh_CN/LC_MESSAGES/index.po b/docs/source/locale/zh_CN/LC_MESSAGES/index.po index 7d0f43c6..71d1d803 100644 --- a/docs/source/locale/zh_CN/LC_MESSAGES/index.po +++ b/docs/source/locale/zh_CN/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-11-26 18:53+0000\n" "Last-Translator: Blax \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/zh_CN/LC_MESSAGES/install.po b/docs/source/locale/zh_CN/LC_MESSAGES/install.po index 940b7320..7926f135 100644 --- a/docs/source/locale/zh_CN/LC_MESSAGES/install.po +++ b/docs/source/locale/zh_CN/LC_MESSAGES/install.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" -"Report-Msgid-Bugs-To: onionshare-dev@lists.riseup.net\n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-12 22:02+0000\n" "Last-Translator: Sketch6580 \n" "Language-Team: LANGUAGE \n" @@ -43,7 +43,7 @@ msgstr "手机" msgid "You can download OnionShare for Mobile from the follow links" msgstr "您可以从下方链接下载 OnionShare 移动版" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -59,7 +59,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "F-Droid: https://github.com/onionshare/onionshare-android-nightly" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "iOS" @@ -368,10 +368,11 @@ msgid "" "Packages are signed by the core developer who is responsible for the " "particular release. Here is the GPG key information for each of the core " "developers of OnionShare:" -msgstr "软件包由负责特定版本的核心开发人员签名。以下是每个 OnionShare 核心开发人员的 " +msgstr "" +"软件包由负责特定版本的核心开发人员签名。以下是每个 OnionShare 核心开发人员的 " "GPG 密钥信息:" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "Micah Lee:" @@ -389,7 +390,7 @@ msgstr "" "您可以`从 keys.openpgp.org 密钥服务器 `_下载 Micah 的密钥。" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "Saptak Sengupta:" @@ -407,7 +408,7 @@ msgstr "" "您可以`从 keys.openpgp.org 密钥服务器 `_下载 Saptak 的密钥。" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "Miguel Jacq:" @@ -422,9 +423,8 @@ msgid "" "keys.openpgp.org/vks/v1/by-" "fingerprint/00AE817C24A10C2540461A9C1D7CDE0234DB458D>`_." msgstr "" -"您可以`从 keys.openpgp.org 密钥服务器 `_ 下载 Miguel " -"的密钥。" +"您可以`从 keys.openpgp.org 密钥服务器 `_ 下载 Miguel 的密钥。" #: ../../source/install.rst:132 msgid "" diff --git a/docs/source/locale/zh_CN/LC_MESSAGES/security.po b/docs/source/locale/zh_CN/LC_MESSAGES/security.po index e7d5e378..37280439 100644 --- a/docs/source/locale/zh_CN/LC_MESSAGES/security.po +++ b/docs/source/locale/zh_CN/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-11-01 22:00+0000\n" "Last-Translator: Sketch6580 \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/zh_CN/LC_MESSAGES/sphinx.po b/docs/source/locale/zh_CN/LC_MESSAGES/sphinx.po index 3b06e3b1..5ee80725 100644 --- a/docs/source/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2021-11-26 18:53+0000\n" "Last-Translator: Blax \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/zh_CN/LC_MESSAGES/tor.po b/docs/source/locale/zh_CN/LC_MESSAGES/tor.po index 5c585349..25bd3977 100644 --- a/docs/source/locale/zh_CN/LC_MESSAGES/tor.po +++ b/docs/source/locale/zh_CN/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-02-11 08:02+0000\n" "Last-Translator: Sketch6580 \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/zh_Hans/LC_MESSAGES/advanced.po b/docs/source/locale/zh_Hans/LC_MESSAGES/advanced.po index 492016b3..23e6e2a7 100644 --- a/docs/source/locale/zh_Hans/LC_MESSAGES/advanced.po +++ b/docs/source/locale/zh_Hans/LC_MESSAGES/advanced.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.6.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-12 14:33+1100\n" +"POT-Creation-Date: 2025-02-18 17:24+1100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: zh_Hans\n" @@ -351,3 +351,549 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the " +"Desktop versions use this configuration file. The CLI also lets you " +"specify a path to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled'," +" 'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "auth_password" +msgstr "" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is" +" set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). " +"This setting is only valid for MacOS or Windows installations. Default: " +"True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are" +" \"built-in\" (bridges shipped with OnionShare and which may get updated " +"from Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" " +"(user-supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type " +"of bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's" +" Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'." +" Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +#, python-brace-format +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the " +"latest built-in bridges recommended by Tor and stores them here. Default:" +" {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en')." +" For valid locale codes, see 'available_locales' in " +"https://github.com/onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 " +"(automatically detect the user's computer's light or dark theme), 1 " +"(light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own " +"which are stored in its own JSON file. The path to this file can be " +"specified for the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and " +"what they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's " +"side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", " +"\"receive\", \"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option" +" is unchecked in the desktop, this entire JSON file is deleted. Default: " +"true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare " +"starts and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: " +"null (\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"stop-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the " +"'.onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the " +"first time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: " +"false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: " +"the 'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text" +" messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security " +"Policy header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + diff --git a/docs/source/locale/zh_TW/LC_MESSAGES/advanced.po b/docs/source/locale/zh_TW/LC_MESSAGES/advanced.po index fcb77a18..0f262d4a 100644 --- a/docs/source/locale/zh_TW/LC_MESSAGES/advanced.po +++ b/docs/source/locale/zh_TW/LC_MESSAGES/advanced.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-15 09:31+1100\n" "PO-Revision-Date: 2024-05-31 19:47+0000\n" "Last-Translator: hugoalh \n" "Language-Team: zh_TW \n" @@ -357,6 +357,549 @@ msgstr "" msgid "Windows: ``%APPDATA%\\OnionShare``" msgstr "" +#: ../../source/advanced.rst:315 +msgid "Configuration file parameters" +msgstr "" + +#: ../../source/advanced.rst:317 +msgid "" +"OnionShare stores its settings in a JSON file. Both the CLI and the Desktop " +"versions use this configuration file. The CLI also lets you specify a path " +"to a custom configuration file with ``--config``." +msgstr "" + +#: ../../source/advanced.rst:319 +msgid "" +"Below are the configuration file parameters and what they mean. If your " +"configuration file has other parameters not listed here, they may be " +"obsolete from older OnionShare versions." +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Parameter" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Type" +msgstr "" + +#: ../../source/advanced.rst:322 ../../source/advanced.rst:402 +#: ../../source/advanced.rst:413 ../../source/advanced.rst:424 +#: ../../source/advanced.rst:439 ../../source/advanced.rst:450 +#: ../../source/advanced.rst:462 +msgid "Explanation" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "version" +msgstr "" + +#: ../../source/advanced.rst:324 ../../source/advanced.rst:325 +#: ../../source/advanced.rst:326 ../../source/advanced.rst:328 +#: ../../source/advanced.rst:330 ../../source/advanced.rst:331 +#: ../../source/advanced.rst:332 ../../source/advanced.rst:337 +#: ../../source/advanced.rst:338 ../../source/advanced.rst:339 +#: ../../source/advanced.rst:340 ../../source/advanced.rst:343 +#: ../../source/advanced.rst:404 ../../source/advanced.rst:405 +#: ../../source/advanced.rst:406 ../../source/advanced.rst:415 +#: ../../source/advanced.rst:426 ../../source/advanced.rst:430 +#: ../../source/advanced.rst:452 ../../source/advanced.rst:453 +#: ../../source/advanced.rst:465 +msgid "``string``" +msgstr "" + +#: ../../source/advanced.rst:324 +msgid "" +"The version of OnionShare. You should not ever need to change this value." +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "connection_type" +msgstr "" + +#: ../../source/advanced.rst:325 +msgid "" +"The way in which OnionShare connects to Tor. Valid options are 'bundled', " +"'automatic' (use Tor Browser's Tor connection), 'control_port' or " +"'socket_file'. Default: 'bundled'" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "control_port_address" +msgstr "" + +#: ../../source/advanced.rst:326 +msgid "" +"The IP address of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "control_port_port" +msgstr "" + +#: ../../source/advanced.rst:327 ../../source/advanced.rst:329 +#: ../../source/advanced.rst:335 +msgid "``integer``" +msgstr "" + +#: ../../source/advanced.rst:327 +msgid "" +"The port number of Tor's Control port, if ``connection_type`` is set to " +"'control_port'. Default: '9051'" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "socks_address" +msgstr "" + +#: ../../source/advanced.rst:328 +msgid "" +"The IP address of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: '127.0.0.1'" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "socks_port" +msgstr "" + +#: ../../source/advanced.rst:329 +msgid "" +"The port number of Tor's SOCKS proxy, if ``connection_type`` is set to " +"'control_port' or 'socket_file'. Default: ''9050'" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "socket_file_path" +msgstr "" + +#: ../../source/advanced.rst:330 +msgid "" +"The path to Tor's socket file, if ``connection_type`` is set to " +"'socket_file'. Default: '/var/run/tor/control'" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "auth_type" +msgstr "" + +#: ../../source/advanced.rst:331 +msgid "" +"If access to Tor's control port requires a password, this can be set to " +"'password', otherwise 'no_auth'. Default: 'no_auth'" +msgstr "" + +#: ../../source/advanced.rst:332 +#, fuzzy +#| msgid "Disable passwords" +msgid "auth_password" +msgstr "取消密碼" + +#: ../../source/advanced.rst:332 +msgid "" +"If access to Tor's control port requires a password, and ``auth_type`` is " +"set to 'password', specify the password here. Default: ''" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "auto_connect" +msgstr "" + +#: ../../source/advanced.rst:333 ../../source/advanced.rst:334 +#: ../../source/advanced.rst:336 ../../source/advanced.rst:344 +#: ../../source/advanced.rst:416 ../../source/advanced.rst:417 +#: ../../source/advanced.rst:427 ../../source/advanced.rst:428 +#: ../../source/advanced.rst:429 ../../source/advanced.rst:441 +#: ../../source/advanced.rst:443 ../../source/advanced.rst:454 +#: ../../source/advanced.rst:455 ../../source/advanced.rst:464 +#: ../../source/advanced.rst:466 +msgid "``boolean``" +msgstr "" + +#: ../../source/advanced.rst:333 +msgid "" +"Whether OnionShare should automatically connect to Tor when it starts. " +"Default: False" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "use_autoupdate" +msgstr "" + +#: ../../source/advanced.rst:334 +msgid "" +"Whether OnionShare should automatically check for updates (over Tor). This " +"setting is only valid for MacOS or Windows installations. Default: True." +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "autoupdate_timestamp" +msgstr "" + +#: ../../source/advanced.rst:335 +msgid "The last time OnionShare checked for updates. Default: None" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "bridges_enabled" +msgstr "" + +#: ../../source/advanced.rst:336 +msgid "Whether to connect to Tor using bridges. Default: False" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "bridges_type" +msgstr "" + +#: ../../source/advanced.rst:337 +msgid "" +"When ``bridges_enabled`` is True, where to load bridges from. Options are " +"\"built-in\" (bridges shipped with OnionShare and which may get updated from " +"Tor), \"moat\" (request bridges from Tor's Moat API), or \"custom\" (user-" +"supplied bridges). Default: \"built-in\"" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "bridges_builtin_pt" +msgstr "" + +#: ../../source/advanced.rst:338 +msgid "" +"When ``bridges_type`` is set to \"built-in\", this specifies which type of " +"bridge protocol to use. Options are \"obfs4\", \"meek-azure\" or " +"\"snowflake\". Default: \"obfs4\"" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "bridges_moat" +msgstr "" + +#: ../../source/advanced.rst:339 +msgid "" +"When ``bridges_type`` is set to \"moat\", the bridges returned from Tor's " +"Moat API are stored here. Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "bridges_custom" +msgstr "" + +#: ../../source/advanced.rst:340 +msgid "" +"When ``bridges_type`` is set to \"custom\", the bridges specified by the " +"user are stored here. Separate each bridge line in the string with '\\n'. " +"Default: \"\"" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "bridges_builtin" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "``dict``" +msgstr "" + +#: ../../source/advanced.rst:341 +msgid "" +"When ``bridges_type`` is set to \"built-in\", OnionShare obtains the latest " +"built-in bridges recommended by Tor and stores them here. Default: {}" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "persistent_tabs" +msgstr "" + +#: ../../source/advanced.rst:342 ../../source/advanced.rst:442 +#: ../../source/advanced.rst:467 +msgid "``list``" +msgstr "" + +#: ../../source/advanced.rst:342 +msgid "" +"If the user has defined any tabs as 'saved' (meaning that they are " +"persistent each time OnionShare starts, and their onion address doesn't " +"change), these are given a random identifier which gets listed here. The " +"persistent onion is stored as a JSON file with the same name as this " +"identifier, in a subfolder of the OnionShare configuration folder called " +"'persistent'. Default: []" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "locale" +msgstr "" + +#: ../../source/advanced.rst:343 +msgid "" +"The locale used in OnionShare. Default: None (which is the same as 'en'). " +"For valid locale codes, see 'available_locales' in https://github.com/" +"onionshare/onionshare/blob/main/cli/onionshare_cli/settings.py" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "theme" +msgstr "" + +#: ../../source/advanced.rst:344 +msgid "" +"The theme for the OnionShare desktop app. Valid options are 0 (automatically " +"detect the user's computer's light or dark theme), 1 (light) or 2 (dark)." +msgstr "" + +#: ../../source/advanced.rst:349 +msgid "Configuration file parameters for persistent onions" +msgstr "" + +#: ../../source/advanced.rst:351 +msgid "" +"As described above, each 'persistent' onion has parameters of its own which " +"are stored in its own JSON file. The path to this file can be specified for " +"the CLI tool with ``--persistent``." +msgstr "" + +#: ../../source/advanced.rst:353 +msgid "Here is an example persistent JSON configuration::" +msgstr "" + +#: ../../source/advanced.rst:396 +msgid "" +"Below are the configuration file parameters for a persistent onion and what " +"they mean, for each section in the JSON" +msgstr "" + +#: ../../source/advanced.rst:399 +msgid "onion" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "private_key" +msgstr "" + +#: ../../source/advanced.rst:404 +msgid "Base64-encoded private key of the onion service" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "client_auth_priv_key" +msgstr "" + +#: ../../source/advanced.rst:405 +msgid "" +"The private key when using Client Authentication. Send this to the user." +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "client_auth_pub_key" +msgstr "" + +#: ../../source/advanced.rst:406 +msgid "" +"The public key when using Client Authentication. Used on OnionShare's side." +msgstr "" + +#: ../../source/advanced.rst:410 +msgid "persistent" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "mode" +msgstr "" + +#: ../../source/advanced.rst:415 +msgid "" +"The mode used by this persistent onion. Options are \"share\", \"receive\", " +"\"website\" or \"chat\"." +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "enabled" +msgstr "" + +#: ../../source/advanced.rst:416 +msgid "" +"Whether persistence is enabled for this onion. When the persistent option is " +"unchecked in the desktop, this entire JSON file is deleted. Default: true" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "autostart_on_launch" +msgstr "" + +#: ../../source/advanced.rst:417 +msgid "" +"Whether to automatically start this persistent onion when OnionShare starts " +"and once Tor is connected. Default: false" +msgstr "" + +#: ../../source/advanced.rst:421 +msgid "general" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "title" +msgstr "" + +#: ../../source/advanced.rst:426 +msgid "" +"An optional custom title for displaying on the onion service. Default: null " +"(\"OnionShare\" will be shown instead)" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "public" +msgstr "" + +#: ../../source/advanced.rst:427 +msgid "" +"Whether the onion service can be accessed with or without a Private Key " +"(Client Authentication). If true, no Private Key is required." +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "autostart_timer" +msgstr "" + +#: ../../source/advanced.rst:428 +msgid "" +"Whether the onion service is configured to start at a specific time. The " +"time can be set in the desktop app or specified in seconds with ``--auto-" +"start-timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "autostop_timer" +msgstr "" + +#: ../../source/advanced.rst:429 +msgid "" +"Whether the onion service is configured to stop at a specific time. The time " +"can be set in the desktop app or specified in seconds with ``--auto-stop-" +"timer`` with the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "service_id" +msgstr "" + +#: ../../source/advanced.rst:430 +msgid "" +"The 32-character onion service URL, without the scheme and without the '." +"onion' suffix." +msgstr "" + +#: ../../source/advanced.rst:433 +msgid "" +"The below are settings specific to the 'mode' specified in the " +"``persistent`` section above." +msgstr "" + +#: ../../source/advanced.rst:436 +msgid "share" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "autostop_sharing" +msgstr "" + +#: ../../source/advanced.rst:441 +msgid "" +"Whether to automatically stop the share once files are downloaded the first " +"time. Default: true" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "filenames" +msgstr "" + +#: ../../source/advanced.rst:442 ../../source/advanced.rst:467 +msgid "A list of files to share. Default: []" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "log_filenames" +msgstr "" + +#: ../../source/advanced.rst:443 ../../source/advanced.rst:466 +msgid "" +"Whether to log URL requests to stdout when using the CLI tool. Default: false" +msgstr "" + +#: ../../source/advanced.rst:447 +msgid "receive" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "data_dir" +msgstr "" + +#: ../../source/advanced.rst:452 +msgid "" +"The path where received files or text messages will be stored. Default: the " +"'OnionShare' folder of the user's home directory." +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "webhook_url" +msgstr "" + +#: ../../source/advanced.rst:453 +msgid "" +"A webhook URL that OnionShare will POST to when it receives files or text " +"messages. Default: null" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "disable_text" +msgstr "" + +#: ../../source/advanced.rst:454 +msgid "Whether to disable receiving text messages. Default: false" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "disable_files" +msgstr "" + +#: ../../source/advanced.rst:455 +msgid "Whether to disable receiving files. Default: false" +msgstr "" + +#: ../../source/advanced.rst:459 +msgid "website" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "disable_csp" +msgstr "" + +#: ../../source/advanced.rst:464 +msgid "" +"If set to ``true``, OnionShare won't set its default Content Security Policy " +"header for the website. Default: ``false``" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "custom_csp" +msgstr "" + +#: ../../source/advanced.rst:465 +msgid "A custom Content Security Policy header to send instead of the default." +msgstr "" + +#: ../../source/advanced.rst:471 +msgid "chat" +msgstr "" + +#: ../../source/advanced.rst:473 +msgid "There are currently no configurable settings for the Chat mode." +msgstr "" + #, fuzzy #~ msgid "" #~ "If you installed OnionShare using the Linux Snapcraft package, you can " @@ -366,9 +909,6 @@ msgstr "" #~ "如果你透過作業系統的安裝包安裝OnionShare,你可以直接在終端機上執" #~ "行“onionshare”。" -#~ msgid "Disable passwords" -#~ msgstr "取消密碼" - #~ msgid "Linux" #~ msgstr "Linux" diff --git a/docs/source/locale/zh_TW/LC_MESSAGES/develop.po b/docs/source/locale/zh_TW/LC_MESSAGES/develop.po index 9d69c5de..fb7dc1cd 100644 --- a/docs/source/locale/zh_TW/LC_MESSAGES/develop.po +++ b/docs/source/locale/zh_TW/LC_MESSAGES/develop.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-04-15 05:52+0000\n" "Last-Translator: jxt \n" "Language-Team: zh_TW \n" diff --git a/docs/source/locale/zh_TW/LC_MESSAGES/features.po b/docs/source/locale/zh_TW/LC_MESSAGES/features.po index 5102cf6a..23f5b611 100644 --- a/docs/source/locale/zh_TW/LC_MESSAGES/features.po +++ b/docs/source/locale/zh_TW/LC_MESSAGES/features.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-05-31 19:47+0000\n" "Last-Translator: hugoalh \n" "Language-Team: zh_TW \n" diff --git a/docs/source/locale/zh_TW/LC_MESSAGES/help.po b/docs/source/locale/zh_TW/LC_MESSAGES/help.po index f46eee9d..7db04486 100644 --- a/docs/source/locale/zh_TW/LC_MESSAGES/help.po +++ b/docs/source/locale/zh_TW/LC_MESSAGES/help.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2025-01-25 01:01+0000\n" "Last-Translator: reimu105 \n" "Language-Team: zh_TW \n" diff --git a/docs/source/locale/zh_TW/LC_MESSAGES/index.po b/docs/source/locale/zh_TW/LC_MESSAGES/index.po index dc7d6770..4edefa1e 100644 --- a/docs/source/locale/zh_TW/LC_MESSAGES/index.po +++ b/docs/source/locale/zh_TW/LC_MESSAGES/index.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-10-12 15:26+0000\n" "Last-Translator: marklin0913da248e4cdada422a \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/zh_TW/LC_MESSAGES/install.po b/docs/source/locale/zh_TW/LC_MESSAGES/install.po index 71321857..f00ea3fd 100644 --- a/docs/source/locale/zh_TW/LC_MESSAGES/install.po +++ b/docs/source/locale/zh_TW/LC_MESSAGES/install.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2024-05-29 05:09+0000\n" "Last-Translator: hugoalh \n" "Language-Team: zh_TW \n" @@ -43,7 +43,7 @@ msgstr "" msgid "You can download OnionShare for Mobile from the follow links" msgstr "" -#: ../../source/install.rst:18 +#: ../../source/install.rst:16 msgid "Android" msgstr "Android" @@ -57,7 +57,7 @@ msgstr "" msgid "F-Droid: https://github.com/onionshare/onionshare-android-nightly" msgstr "" -#: ../../source/install.rst:24 +#: ../../source/install.rst:20 msgid "iOS" msgstr "" @@ -322,7 +322,7 @@ msgid "" "developers of OnionShare:" msgstr "" -#: ../../source/install.rst:122 +#: ../../source/install.rst:120 msgid "Micah Lee:" msgstr "" @@ -340,7 +340,7 @@ msgstr "" "你可以`從 keys.openpgp.org 金鑰伺服器 `_下載 Micah 的金鑰。" -#: ../../source/install.rst:126 +#: ../../source/install.rst:124 msgid "Saptak Sengupta:" msgstr "" @@ -356,7 +356,7 @@ msgid "" "fingerprint/2AE3D40A6905C8E4E8ED95ECE46A2B977C14666B>`_." msgstr "" -#: ../../source/install.rst:130 +#: ../../source/install.rst:128 msgid "Miguel Jacq:" msgstr "" diff --git a/docs/source/locale/zh_TW/LC_MESSAGES/security.po b/docs/source/locale/zh_TW/LC_MESSAGES/security.po index 52e7e95d..0a1bd1ac 100644 --- a/docs/source/locale/zh_TW/LC_MESSAGES/security.po +++ b/docs/source/locale/zh_TW/LC_MESSAGES/security.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-04-15 05:52+0000\n" "Last-Translator: jxt \n" "Language-Team: zh_TW \n" diff --git a/docs/source/locale/zh_TW/LC_MESSAGES/sphinx.po b/docs/source/locale/zh_TW/LC_MESSAGES/sphinx.po index 7f8632c6..846bc411 100644 --- a/docs/source/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/docs/source/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2020-10-12 15:26+0000\n" "Last-Translator: marklin0913da248e4cdada422a \n" "Language-Team: LANGUAGE \n" diff --git a/docs/source/locale/zh_TW/LC_MESSAGES/tor.po b/docs/source/locale/zh_TW/LC_MESSAGES/tor.po index 725392ff..6561a68c 100644 --- a/docs/source/locale/zh_TW/LC_MESSAGES/tor.po +++ b/docs/source/locale/zh_TW/LC_MESSAGES/tor.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: OnionShare 2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-02-11 14:47+1100\n" +"POT-Creation-Date: 2025-02-14 19:35+1100\n" "PO-Revision-Date: 2023-06-10 02:52+0000\n" "Last-Translator: Chris Nolan \n" "Language-Team: zh_TW \n" diff --git a/licenses/license-fontawesome-icons.txt b/licenses/license-fontawesome-icons.txt new file mode 100644 index 00000000..da6ab6cc --- /dev/null +++ b/licenses/license-fontawesome-icons.txt @@ -0,0 +1,396 @@ +Attribution 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution 4.0 International Public License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution 4.0 International Public License ("Public License"). To the +extent this Public License may be interpreted as a contract, You are +granted the Licensed Rights in consideration of Your acceptance of +these terms and conditions, and the Licensor grants You such rights in +consideration of benefits the Licensor receives from making the +Licensed Material available under these terms and conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + j. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + k. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce, reproduce, and Share Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. + diff --git a/licenses/license-meek.txt b/licenses/license-meek.txt new file mode 100644 index 00000000..0e259d42 --- /dev/null +++ b/licenses/license-meek.txt @@ -0,0 +1,121 @@ +Creative Commons Legal Code + +CC0 1.0 Universal + + CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE + LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN + ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS + INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES + REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS + PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM + THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED + HEREUNDER. + +Statement of Purpose + +The laws of most jurisdictions throughout the world automatically confer +exclusive Copyright and Related Rights (defined below) upon the creator +and subsequent owner(s) (each and all, an "owner") of an original work of +authorship and/or a database (each, a "Work"). + +Certain owners wish to permanently relinquish those rights to a Work for +the purpose of contributing to a commons of creative, cultural and +scientific works ("Commons") that the public can reliably and without fear +of later claims of infringement build upon, modify, incorporate in other +works, reuse and redistribute as freely as possible in any form whatsoever +and for any purposes, including without limitation commercial purposes. +These owners may contribute to the Commons to promote the ideal of a free +culture and the further production of creative, cultural and scientific +works, or to gain reputation or greater distribution for their Work in +part through the use and efforts of others. + +For these and/or other purposes and motivations, and without any +expectation of additional consideration or compensation, the person +associating CC0 with a Work (the "Affirmer"), to the extent that he or she +is an owner of Copyright and Related Rights in the Work, voluntarily +elects to apply CC0 to the Work and publicly distribute the Work under its +terms, with knowledge of his or her Copyright and Related Rights in the +Work and the meaning and intended legal effect of CC0 on those rights. + +1. Copyright and Related Rights. A Work made available under CC0 may be +protected by copyright and related or neighboring rights ("Copyright and +Related Rights"). Copyright and Related Rights include, but are not +limited to, the following: + + i. the right to reproduce, adapt, distribute, perform, display, + communicate, and translate a Work; + ii. moral rights retained by the original author(s) and/or performer(s); +iii. publicity and privacy rights pertaining to a person's image or + likeness depicted in a Work; + iv. rights protecting against unfair competition in regards to a Work, + subject to the limitations in paragraph 4(a), below; + v. rights protecting the extraction, dissemination, use and reuse of data + in a Work; + vi. database rights (such as those arising under Directive 96/9/EC of the + European Parliament and of the Council of 11 March 1996 on the legal + protection of databases, and under any national implementation + thereof, including any amended or successor version of such + directive); and +vii. other similar, equivalent or corresponding rights throughout the + world based on applicable law or treaty, and any national + implementations thereof. + +2. Waiver. To the greatest extent permitted by, but not in contravention +of, applicable law, Affirmer hereby overtly, fully, permanently, +irrevocably and unconditionally waives, abandons, and surrenders all of +Affirmer's Copyright and Related Rights and associated claims and causes +of action, whether now known or unknown (including existing as well as +future claims and causes of action), in the Work (i) in all territories +worldwide, (ii) for the maximum duration provided by applicable law or +treaty (including future time extensions), (iii) in any current or future +medium and for any number of copies, and (iv) for any purpose whatsoever, +including without limitation commercial, advertising or promotional +purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each +member of the public at large and to the detriment of Affirmer's heirs and +successors, fully intending that such Waiver shall not be subject to +revocation, rescission, cancellation, termination, or any other legal or +equitable action to disrupt the quiet enjoyment of the Work by the public +as contemplated by Affirmer's express Statement of Purpose. + +3. Public License Fallback. Should any part of the Waiver for any reason +be judged legally invalid or ineffective under applicable law, then the +Waiver shall be preserved to the maximum extent permitted taking into +account Affirmer's express Statement of Purpose. In addition, to the +extent the Waiver is so judged Affirmer hereby grants to each affected +person a royalty-free, non transferable, non sublicensable, non exclusive, +irrevocable and unconditional license to exercise Affirmer's Copyright and +Related Rights in the Work (i) in all territories worldwide, (ii) for the +maximum duration provided by applicable law or treaty (including future +time extensions), (iii) in any current or future medium and for any number +of copies, and (iv) for any purpose whatsoever, including without +limitation commercial, advertising or promotional purposes (the +"License"). The License shall be deemed effective as of the date CC0 was +applied by Affirmer to the Work. Should any part of the License for any +reason be judged legally invalid or ineffective under applicable law, such +partial invalidity or ineffectiveness shall not invalidate the remainder +of the License, and in such case Affirmer hereby affirms that he or she +will not (i) exercise any of his or her remaining Copyright and Related +Rights in the Work or (ii) assert any associated claims and causes of +action with respect to the Work, in either case contrary to Affirmer's +express Statement of Purpose. + +4. Limitations and Disclaimers. + + a. No trademark or patent rights held by Affirmer are waived, abandoned, + surrendered, licensed or otherwise affected by this document. + b. Affirmer offers the Work as-is and makes no representations or + warranties of any kind concerning the Work, express, implied, + statutory or otherwise, including without limitation warranties of + title, merchantability, fitness for a particular purpose, non + infringement, or the absence of latent or other defects, accuracy, or + the present or absence of errors, whether or not discoverable, all to + the greatest extent permissible under applicable law. + c. Affirmer disclaims responsibility for clearing rights of other persons + that may apply to the Work or any use thereof, including without + limitation any person's Copyright and Related Rights in the Work. + Further, Affirmer disclaims responsibility for obtaining any necessary + consents, permissions or other rights required for any use of the + Work. + d. Affirmer understands and acknowledges that Creative Commons is not a + party to this document and has no duty or obligation with respect to + this CC0 or use of the Work. diff --git a/licenses/license-snowflake.txt b/licenses/license-snowflake.txt new file mode 100644 index 00000000..42f62969 --- /dev/null +++ b/licenses/license-snowflake.txt @@ -0,0 +1,32 @@ + This file contains the license for "Snowflake" + a free software project which provides a WebRTC pluggable transport. + +================================================================================ +Copyright (c) 2016, Serene Han, Arlo Breault +Copyright (c) 2019-2020, The Tor Project, Inc + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this +list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, +this list of conditions and the following disclaimer in the documentation and/or +other materials provided with the distribution. + + * Neither the names of the copyright owners nor the names of its +contributors may be used to endorse or promote products derived from this +software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +================================================================================ diff --git a/licenses/readme.md b/licenses/readme.md new file mode 100644 index 00000000..44facf69 --- /dev/null +++ b/licenses/readme.md @@ -0,0 +1,33 @@ +# Third party licenses and attribution + +This folder contains 3rd-party licenses and attribution for software included with OnionShare. + + +## JQuery + +JQuery is used in the web interface for Receive and Chat modes. + + +## Tor + +The Tor software is what provides Onion Services in OnionShare. + + +## obfs4 + +The OBFS4 proxy is a Tor 'pluggable transport', which allows the use of obfs4-compatible bridges. + + +## Snowflake + +The Snowflake tool is a Tor 'pluggable transport', which allows the use of snowflake-compatible bridges. + + +## Meek + +The Meek-lite tool is a Tor 'pluggable transport', which allows the use of meek-compatible bridges. + + +## Font Awesome + +Some icons used in the desktop version of the OnionShare application are from the 'free' edition of Font Awesome. diff --git a/licenses/readme.txt b/licenses/readme.txt deleted file mode 100644 index 3dd5d2fe..00000000 --- a/licenses/readme.txt +++ /dev/null @@ -1 +0,0 @@ -This folder contains 3rd-party licenses for software included with OnionShare. diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 35ce0cbc..08e0a537 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -14,7 +14,6 @@ confinement: strict platforms: amd64: arm64: - armhf: apps: onionshare: