From 035c398f825a6e59c58e1eebdc921bbe10c6b611 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Sun, 16 Feb 2025 10:59:16 +1100 Subject: [PATCH 01/10] Only set Censorship Circumvention bridges if we actually received some --- cli/onionshare_cli/censorship.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/cli/onionshare_cli/censorship.py b/cli/onionshare_cli/censorship.py index 4cff4862..2c0b1403 100644 --- a/cli/onionshare_cli/censorship.py +++ b/cli/onionshare_cli/censorship.py @@ -242,17 +242,18 @@ class CensorshipCircumvention(object): # Should we attempt to iterate over each type if one of them fails to connect? # But if so, how to stop it starting 3 separate Tor connection threads? # for bridges in request_bridges["settings"]: - bridges = bridge_settings["settings"][0]["bridges"] - bridge_strings = bridges["bridge_strings"] + if bridge_settings["settings"]: + bridges = bridge_settings["settings"][0]["bridges"] + bridge_strings = bridges["bridge_strings"] - self.settings.set("bridges_type", "custom") + self.settings.set("bridges_type", "custom") - # Sanity check the bridges provided from the Tor API before saving - bridges_checked = self.common.check_bridges_valid(bridge_strings) + # Sanity check the bridges provided from the Tor API before saving + bridges_checked = self.common.check_bridges_valid(bridge_strings) - if bridges_checked: - self.settings.set("bridges_custom", "\n".join(bridges_checked)) - bridges_ok = True + if bridges_checked: + self.settings.set("bridges_custom", "\n".join(bridges_checked)) + bridges_ok = True # If we got any good bridges, save them to settings and return. if bridges_ok: From c1f06d99d75506dfdfdbd88f4cde4169b5176224 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Tue, 18 Feb 2025 16:35:47 +1100 Subject: [PATCH 02/10] Catch general Exception in the UI when trying to connect or start a share, and raise as Alert --- desktop/onionshare/resources/locale/en.json | 1 + desktop/onionshare/threads.py | 5 +++++ desktop/onionshare/tor_connection.py | 6 ++++++ 3 files changed, 12 insertions(+) diff --git a/desktop/onionshare/resources/locale/en.json b/desktop/onionshare/resources/locale/en.json index 79c9a14c..165995a6 100644 --- a/desktop/onionshare/resources/locale/en.json +++ b/desktop/onionshare/resources/locale/en.json @@ -247,6 +247,7 @@ "error_port_not_available": "OnionShare port not available", "history_receive_read_message_button": "Read Message", "error_tor_protocol_error": "There was an error with Tor: {}", + "error_generic": "There was an unexpected error with OnionShare:\n{}", "moat_contact_label": "Contacting BridgeDB…", "moat_captcha_label": "Solve the CAPTCHA to request a bridge.", "moat_captcha_placeholder": "Enter the characters from the image", diff --git a/desktop/onionshare/threads.py b/desktop/onionshare/threads.py index 6eeeb97f..227ec923 100644 --- a/desktop/onionshare/threads.py +++ b/desktop/onionshare/threads.py @@ -106,6 +106,11 @@ class OnionThread(QtCore.QThread): message = self.mode.common.gui.get_translated_tor_error(e) self.error.emit(message) return + except Exception as e: + # Handle any other error that wasn't in the list above + message = strings._("error_generic").format(e.args[0]) + self.error.emit(message) + return class WebThread(QtCore.QThread): diff --git a/desktop/onionshare/tor_connection.py b/desktop/onionshare/tor_connection.py index f87967ef..ceb8eace 100644 --- a/desktop/onionshare/tor_connection.py +++ b/desktop/onionshare/tor_connection.py @@ -210,6 +210,12 @@ class TorConnectionThread(QtCore.QThread): ) self.error_connecting_to_tor.emit(message) + except Exception as e: + # Handle any other error that wasn't in the list above + message = strings._("error_generic").format(e.args[0]) + self.error_connecting_to_tor.emit(message) + return + def _tor_status_update(self, progress, summary): self.tor_status_update.emit(progress, summary) From 03515b61285fbd41a3d9d946ad13af2e0a0524e2 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Tue, 18 Feb 2025 17:19:44 +1100 Subject: [PATCH 03/10] Improve the check for returned bridges from CensorShip Circumvention, so that we iterate over potential groups of bridges and break on the first valid set --- cli/onionshare_cli/censorship.py | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/cli/onionshare_cli/censorship.py b/cli/onionshare_cli/censorship.py index 2c0b1403..caa8dd24 100644 --- a/cli/onionshare_cli/censorship.py +++ b/cli/onionshare_cli/censorship.py @@ -238,22 +238,23 @@ class CensorshipCircumvention(object): bridges_ok = False self.settings = settings - # @TODO there might be several bridge types recommended. - # Should we attempt to iterate over each type if one of them fails to connect? - # But if so, how to stop it starting 3 separate Tor connection threads? - # for bridges in request_bridges["settings"]: - if bridge_settings["settings"]: - bridges = bridge_settings["settings"][0]["bridges"] - bridge_strings = bridges["bridge_strings"] + # We iterate over each group of bridges returned in settings. + # The first set of valid bridges are the ones we use. + if bridge_settings.get("settings", False): + for returned_bridge_settings in bridge_settings["settings"]: + if returned_bridge_settings.get("bridges", False): + bridges = returned_bridge_settings["bridges"] + bridge_strings = bridges["bridge_strings"] - self.settings.set("bridges_type", "custom") + self.settings.set("bridges_type", "custom") - # Sanity check the bridges provided from the Tor API before saving - bridges_checked = self.common.check_bridges_valid(bridge_strings) + # Sanity check the bridges provided from the Tor API before saving + bridges_checked = self.common.check_bridges_valid(bridge_strings) - if bridges_checked: - self.settings.set("bridges_custom", "\n".join(bridges_checked)) - bridges_ok = True + if bridges_checked: + self.settings.set("bridges_custom", "\n".join(bridges_checked)) + bridges_ok = True + break # If we got any good bridges, save them to settings and return. if bridges_ok: From ab35415938b39244f1e39a903bed408edb3260a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sveinn=20=C3=AD=20Felli?= Date: Tue, 18 Feb 2025 19:10:08 +0100 Subject: [PATCH 04/10] Translated using Weblate (Icelandic) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/is/ --- desktop/onionshare/resources/locale/is.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/desktop/onionshare/resources/locale/is.json b/desktop/onionshare/resources/locale/is.json index 5a90c264..c3666acf 100644 --- a/desktop/onionshare/resources/locale/is.json +++ b/desktop/onionshare/resources/locale/is.json @@ -71,10 +71,10 @@ "gui_server_autostop_timer_expired": "Sjálfvirkri niðurtalningu er þegar lokið. Lagaðu hana til að hefja deilingu.", "gui_share_url_description": "Hver sem er með þetta OnionShare vistfang og þennan einkalykil getur sótt skrárnar þínar með því að nota Tor-vafrann: ", "gui_receive_url_description": "Hver sem er með þetta OnionShare vistfang og einkalykil getur sent skrár inn á tölvuna þína með því að nota Tor-vafrann: ", - "gui_url_label_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_url_label_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 á \"Alltaf opna þennan flipa þegar OnionShare fer í gang\" í stillingunum.)", "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_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 á \"Alltaf opna þennan flipa þegar OnionShare fer í gang\" í stillingunum.)", "gui_status_indicator_share_stopped": "Stöðvað", "gui_status_indicator_share_working": "Ræsi…", "gui_status_indicator_share_started": "Deiling", @@ -255,5 +255,6 @@ "waitress_web_server_error": "Vandamál kom upp við að ræsa vefþjóninn", "gui_close_tab_warning_chat_description": "Loka flipa sem hýsir spjallþjón?", "gui_chat_mode_explainer": "Spjallhamur gerir þér kleift að spjalla gagnvirkt við aðra í Tor-vafranum.

Spjallferillinn er ekki geymdur í OnionShare, hann mun hverfa þegar þú lokar Tor-vafranum.", - "mode_settings_persistent_autostart_on_launch_checkbox": "Ræsa sjálfkrafa þessa onion-þjónustu þegar OnionShare fer í gang" + "mode_settings_persistent_autostart_on_launch_checkbox": "Ræsa sjálfkrafa þessa onion-þjónustu þegar OnionShare fer í gang", + "gui_settings_license_label": "OnionShare kemur með GPL v3 notkunarleyfi.
Notkunarleyfi utanaðkomandi aðila má sjá hér:
https://github.com/onionshare/onionshare/tree/main/licenses" } From ab5d74f1e8e3695306e3fc00eb6a27902f71b886 Mon Sep 17 00:00:00 2001 From: 109247019824 <109247019824@users.noreply.hosted.weblate.org> Date: Tue, 18 Feb 2025 19:10:08 +0100 Subject: [PATCH 05/10] Translated using Weblate (Bulgarian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/bg/ --- desktop/onionshare/resources/locale/bg.json | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/desktop/onionshare/resources/locale/bg.json b/desktop/onionshare/resources/locale/bg.json index 8fc63835..46d4be59 100644 --- a/desktop/onionshare/resources/locale/bg.json +++ b/desktop/onionshare/resources/locale/bg.json @@ -72,14 +72,14 @@ "gui_server_autostop_timer_expired": "Изчакването за автоматично изключване е изтекло. Променете времето и споделете отново.", "gui_share_url_description": "Всеки, имащ адреса на OnionShare и частния ключ може да изтегли файловете чрез Четеца Тор: ", "gui_receive_url_description": "Всеки, имащ адреса на OnionShare и частния ключ може да изпрати файлове на това устройство чрез Четеца Тор: ", - "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": "{} файла, {}", @@ -203,7 +203,7 @@ "systray_receive_started_title": "Започнато е получаване", "mode_settings_advanced_toggle_hide": "Скриване на разширени настройки", "gui_close_tab_warning_receive_description": "Затваряте раздел, който получава файлове!", - "gui_status_indicator_chat_stopped": "В готовност за разговор", + "gui_status_indicator_chat_stopped": "Спряно", "moat_solution_empty_error": "Въведете знаците от изображението", "mode_settings_receive_disable_files_checkbox": "Без качване на файлове", "gui_rendezvous_cleanup": "Изчакват се веригите на Tor да затворят, за да е сигурно, че файловете са прехвърлени.\n\nМоже да отнеме минута.", @@ -255,5 +255,6 @@ "mode_settings_website_disable_csp_checkbox": "Без изпращане на подразбираната заглавка на Content Security Policy (за използване на странични ресурси)", "history_receive_read_message_button": "Прочитане", "gui_chat_mode_explainer": "Режимът за бързи съобщения ви дава възможност да обменяте съобщения в реално време посредством четеца Тор.

Хронологията на разговора не се пази в OnionShare. Тя изчезва при затваряне на четеца.", - "mode_settings_persistent_autostart_on_launch_checkbox": "Стартиране на тази услуга на Onion при отваряне на OnionShare" + "mode_settings_persistent_autostart_on_launch_checkbox": "Стартиране на тази услуга на Onion при отваряне на OnionShare", + "gui_settings_license_label": "OnionShare се разпространява под GPL v3.
Лицензите на трети страни могат да бъдат видяни тук:
https://github.com/onionshare/onionshare/tree/main/licenses" } From e3e0f68b9ee59ae0319e542065e7a67a93e15595 Mon Sep 17 00:00:00 2001 From: Weblate Translation Memory Date: Tue, 18 Feb 2025 19:10:09 +0100 Subject: [PATCH 06/10] Translated using Weblate (Galician) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/gl/ Translated using Weblate (Lithuanian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/lt/ Translated using Weblate (Telugu) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/te/ Translated using Weblate (Turkish) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/tr/ Translated using Weblate (Arabic) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ar/ --- desktop/onionshare/resources/locale/ar.json | 6 +++--- desktop/onionshare/resources/locale/gl.json | 6 +++--- desktop/onionshare/resources/locale/lt.json | 6 +++--- desktop/onionshare/resources/locale/te.json | 7 ++++--- desktop/onionshare/resources/locale/tr.json | 6 +++--- 5 files changed, 16 insertions(+), 15 deletions(-) diff --git a/desktop/onionshare/resources/locale/ar.json b/desktop/onionshare/resources/locale/ar.json index 2814c902..d5a0b714 100644 --- a/desktop/onionshare/resources/locale/ar.json +++ b/desktop/onionshare/resources/locale/ar.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "لن تتوقف هذه المشاركة تلقائيا.", "gui_url_label_onetime": "ستتوقف هذه المشاركة تلقائيا بعد إتمام أول تنزيل.", "gui_url_label_onetime_and_persistent": "هذه المشاركة لن تتوقف تلقائيا.

كل مشاركة لاحقة ستعيد استخدام نفس العنوان. (لاستخدام عناوين ذات الاستعمال الوحيد، عطّل خيار ”استخدم عنوانا دائما“ في الإعدادات.)", - "gui_status_indicator_share_stopped": "جاهز للمشاركة", + "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": "{} ملفات، {}", @@ -190,7 +190,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_client_auth_instructions": "بعد ذلك، أرسل المفتاح الخاص للسماح بالوصول إلى خدمة OnionShare الخاصة بك:", "gui_url_instructions_public_mode": "أرسل عنوان OnionShare أدناه:", "gui_url_instructions": "أولا، أرسل عنوان OnionShare أدناه:", diff --git a/desktop/onionshare/resources/locale/gl.json b/desktop/onionshare/resources/locale/gl.json index 8b284305..677caad6 100644 --- a/desktop/onionshare/resources/locale/gl.json +++ b/desktop/onionshare/resources/locale/gl.json @@ -80,11 +80,11 @@ "gui_url_label_stay_open": "Este enderezo non desaparecerá automáticamente.", "gui_url_label_onetime": "Esta compartición deterase tras o primeiro completado.", "gui_url_label_onetime_and_persistent": "Esta compartición non se deterá automáticamente.

Cada futura compartición reutilizará o enderezo. (Para usar enderezos dun só uso, desactiva nos axustes \"Usar enderezo persistente\".)", - "gui_status_indicator_share_stopped": "Preparado para compartir", + "gui_status_indicator_share_stopped": "Detido", "gui_status_indicator_share_working": "Comezando…", "gui_status_indicator_share_scheduled": "Programado…", "gui_status_indicator_share_started": "Compartindo", - "gui_status_indicator_receive_stopped": "Preparado para recibir", + "gui_status_indicator_receive_stopped": "Detido", "gui_status_indicator_receive_working": "Comezando…", "gui_status_indicator_receive_scheduled": "Programado…", "gui_status_indicator_receive_started": "Recibindo", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_started": "Conversando", "gui_status_indicator_chat_scheduled": "Programado…", "gui_status_indicator_chat_working": "Comezando…", - "gui_status_indicator_chat_stopped": "Preparado para conversar", + "gui_status_indicator_chat_stopped": "Detido", "gui_settings_theme_dark": "Escuro", "gui_settings_theme_light": "Claro", "gui_settings_theme_auto": "Auto", diff --git a/desktop/onionshare/resources/locale/lt.json b/desktop/onionshare/resources/locale/lt.json index 2c2be053..09ed75c9 100644 --- a/desktop/onionshare/resources/locale/lt.json +++ b/desktop/onionshare/resources/locale/lt.json @@ -83,11 +83,11 @@ "gui_url_label_stay_open": "Šis bendrinimas nebus automatiškai sustabdytas.", "gui_url_label_onetime": "Šis bendrinimas pabaigus bus automatiškai sustabdytas.", "gui_url_label_onetime_and_persistent": "Šis bendrinimas nebus automatiškai sustabdytas.

Kiekvienas vėlesnis bendrinimas pakartotinai naudos adresą. (Norėdami naudoti vienkartinius adresus, nustatymuose išjunkite \"Naudoti nuolatinį adresą\".)", - "gui_status_indicator_share_stopped": "Parengta dalintis", + "gui_status_indicator_share_stopped": "Persiuntimas sustabdytas", "gui_status_indicator_share_working": "Pradedama…", "gui_status_indicator_share_scheduled": "Suplanuota…", "gui_status_indicator_share_started": "Dalijimasis", - "gui_status_indicator_receive_stopped": "Parengta gauti", + "gui_status_indicator_receive_stopped": "Persiuntimas sustabdytas", "gui_status_indicator_receive_working": "Pradedama…", "gui_status_indicator_receive_scheduled": "Suplanuota…", "gui_status_indicator_receive_started": "Gaunama", @@ -179,7 +179,7 @@ "mode_settings_receive_webhook_url_checkbox": "Naudoti pranešimų webhook", "gui_main_page_website_button": "Pradėti talpinimą", "gui_status_indicator_chat_started": "Kalbamasi", - "gui_status_indicator_chat_stopped": "Paruošta pokalbiui", + "gui_status_indicator_chat_stopped": "Persiuntimas sustabdytas", "gui_color_mode_changed_notice": "Iš naujo paleiskite „OnionShare“, kad būtų pritaikytas naujas spalvų režimas.", "mode_settings_receive_disable_files_checkbox": "Išjungti failų įkėlimą", "mode_settings_receive_disable_text_checkbox": "Išjungti teksto pateikimą", diff --git a/desktop/onionshare/resources/locale/te.json b/desktop/onionshare/resources/locale/te.json index 3d3941df..0c10aae6 100644 --- a/desktop/onionshare/resources/locale/te.json +++ b/desktop/onionshare/resources/locale/te.json @@ -79,11 +79,11 @@ "gui_url_label_stay_open": "ఈ పంచుకొనబడిన అంశం స్వయంచాలితంగా ఆపబడదు.", "gui_url_label_onetime": "ఒకసారి పూర్తయిన తరువాత ఈ పంచుకొనబడిన అంశం ఆపబడుతుంది.", "gui_url_label_onetime_and_persistent": "ఈ పంచుకొనబడిన అంశం స్వయంచాలితంగా ఆపబడదు.

తదుపరి పంచుకోబడిన ప్రతి అంశం ఈ చిరునామాను మరల వాడుకుంటుంది. (ఒక్కసారికి మాత్రం వాడగలిగే చిరునామాలను వాడాలనుకుంటే, అమరికలలో \"నిరంతర చిరునామాను వాడు\"ని అచేతనం చేయండి.)", - "gui_status_indicator_share_stopped": "పంచుకోవడానికి సిద్ధం", + "gui_status_indicator_share_stopped": "ఆగిపోయినవి", "gui_status_indicator_share_working": "మొదలుపెడుతుంది…", "gui_status_indicator_share_scheduled": "షెడ్యూల్…", "gui_status_indicator_share_started": "పంచుకొంటుంది", - "gui_status_indicator_receive_stopped": "స్వీకరణకు సిద్ధం", + "gui_status_indicator_receive_stopped": "ఆగిపోయినవి", "gui_status_indicator_receive_working": "మొదలుపెడుతుంది…", "gui_status_indicator_receive_scheduled": "షెడ్యూల్…", "gui_status_indicator_receive_started": "స్వీకరిస్తుంది", @@ -155,5 +155,6 @@ "moat_captcha_reload": "Reload", "gui_settings_theme_light": "Light", "gui_stop_server_autostop_timer_tooltip": "స్వీయ నియంత్రణ సమయం అయిపోయినది", - "gui_start_server_autostart_timer_tooltip": "స్వీయ నియంత్రణ సమయం అయిపోయినది" + "gui_start_server_autostart_timer_tooltip": "స్వీయ నియంత్రణ సమయం అయిపోయినది", + "gui_status_indicator_chat_stopped": "ఆగిపోయినవి" } diff --git a/desktop/onionshare/resources/locale/tr.json b/desktop/onionshare/resources/locale/tr.json index 2f3ee943..87dd0330 100644 --- a/desktop/onionshare/resources/locale/tr.json +++ b/desktop/onionshare/resources/locale/tr.json @@ -77,10 +77,10 @@ "gui_url_label_stay_open": "Bu paylaşım otomatik olarak durdurulmayacak.", "gui_url_label_onetime": "Bu paylaşım bir kez tamamlandıktan sonra durdurulacak.", "gui_url_label_onetime_and_persistent": "Bu paylaşım otomatik olarak durdurulmayacak.

Sonraki her paylaşım adresi yeniden kullanır (bir kerelik adresleri kullanmak için, ayarlardan \"Kalıcı adres kullanılsın\" seçeneğini kapatın.)", - "gui_status_indicator_share_stopped": "Paylaşıma hazır", + "gui_status_indicator_share_stopped": "Durduruldu", "gui_status_indicator_share_working": "Başlatılıyor…", "gui_status_indicator_share_started": "Paylaşılıyor", - "gui_status_indicator_receive_stopped": "Almaya hazır", + "gui_status_indicator_receive_stopped": "Durduruldu", "gui_status_indicator_receive_working": "Başlatılıyor…", "gui_status_indicator_receive_started": "Alınıyor", "gui_file_info": "{} dosya, {}", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_started": "Sohbet ediliyor", "gui_status_indicator_chat_scheduled": "Zamanlandı…", "gui_status_indicator_chat_working": "Başlatılıyor…", - "gui_status_indicator_chat_stopped": "Sohbet etmeye hazır", + "gui_status_indicator_chat_stopped": "Durduruldu", "gui_settings_theme_dark": "Koyu", "gui_settings_theme_light": "Açık", "gui_settings_theme_auto": "Otomatik", From 63fb63698e2908aa4cc76565d8b786a672557efd Mon Sep 17 00:00:00 2001 From: jonnysemon Date: Tue, 18 Feb 2025 19:10:09 +0100 Subject: [PATCH 07/10] Translated using Weblate (Arabic) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ar/ --- desktop/onionshare/resources/locale/ar.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/desktop/onionshare/resources/locale/ar.json b/desktop/onionshare/resources/locale/ar.json index d5a0b714..146bb934 100644 --- a/desktop/onionshare/resources/locale/ar.json +++ b/desktop/onionshare/resources/locale/ar.json @@ -72,10 +72,10 @@ "gui_server_autostop_timer_expired": "لقد بلغ مؤقت الإيقاف التلقائي أجله. يُرجى ضبطه للبدء بالمشاركة.", "gui_share_url_description": "إن أي شخص لديه عنوان OnionShare هذا سيكون بوسعه تنزيل تلك الملفات باستخدام متصفح تور: ", "gui_receive_url_description": "يمكن لأيّ شخص لديه عنوان OnionShare هذا رفع الملفات إلى حاسوبك باستعمال متصفح تور : ", - "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_url_label_onetime_and_persistent": "لن تتوقف هذه المشاركة تلقائيًا.

كل مشاركة لاحقة ستعيد استخدام نفس العنوان. (لاستخدام عناوين ذات الاستعمال الوحيد، عطّل خيار ”افتح علامة التبويب هذه دائمًا عند بدء تشغيل OnionShare“ في الإعدادات.)", "gui_status_indicator_share_stopped": "متوقف", "gui_status_indicator_share_working": "يبدأ…", "gui_status_indicator_share_started": "تجري المشاركة", @@ -148,7 +148,7 @@ "mode_settings_autostop_timer_checkbox": "إيقاف الخدمة‬ البصلية في الميعاد المُجدوَل", "mode_settings_autostart_timer_checkbox": "بدء الخدمة‬ البصلية في الميعاد المُجدوَل", "mode_settings_public_checkbox": "هذه هي خدمة OnionShare خاصة بالعامة (تُعطّل المفتاح الخاص)", - "mode_settings_persistent_checkbox": "افتح علامة التبويب هذه دائما عند بدء تشغيل OnionShare", + "mode_settings_persistent_checkbox": "افتح علامة التبويب هذه دائمًا عند بدء تشغيل OnionShare (سيبقى عنوان البصل كما هو)", "mode_settings_advanced_toggle_hide": "إخفاء الإعدادات المتقدمة", "mode_settings_advanced_toggle_show": "عرض الإعدادات المتقدمة", "gui_quit_warning_cancel": "ألغِ", @@ -254,5 +254,7 @@ "gui_settings_stop_active_tabs_label": "هناك خدمات تعمل في بعض علامات تبويبك.\nيجب عليك إيقاف جميع الخدمات لتغيير إعداداتك في تور.", "mode_settings_website_custom_csp_checkbox": "أرسل ترويسة مخصصة لسياسة أمان المحتوى (Content-Security-Policy header)", "gui_receive_url_public_description": "يمكن لأي شخص لديه عنوان OnionShare هذا رفع الملفات إلى حاسوبك باستخدام متصفح تور : ‏", - "gui_chat_mode_explainer": "وضع المحادثة يتيح لك المحادثة بشكل تفاعلي مع الآخرين، في متصفح تور.

لا يتم تخزين سجل المحادثة في OnionShare. سوف يختفي سجل المحادثة عند إغلاق متصفح تور." + "gui_chat_mode_explainer": "وضع المحادثة يتيح لك المحادثة بشكل تفاعلي مع الآخرين، في متصفح تور.

لا يتم تخزين سجل المحادثة في OnionShare. سوف يختفي سجل المحادثة عند إغلاق متصفح تور.", + "mode_settings_persistent_autostart_on_launch_checkbox": "ابدأ خدمة البصل هذه تلقائيًا عند بدء تشغيل Onionshare", + "gui_settings_license_label": "تم ترخيص Onionshare بموجب GPL v3.
يمكن الاطلاع على تراخيص الطرف الثالث هنا:
https://github.com/onionshare/onionshare/tree/main/licenses" } From 065ece5cfd932ea1f87829cf4c2c12a16a469a11 Mon Sep 17 00:00:00 2001 From: Matthaiks Date: Tue, 18 Feb 2025 19:10:09 +0100 Subject: [PATCH 08/10] Translated using Weblate (Polish) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/pl/ --- desktop/onionshare/resources/locale/pl.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/desktop/onionshare/resources/locale/pl.json b/desktop/onionshare/resources/locale/pl.json index e7d0f679..eec1634f 100644 --- a/desktop/onionshare/resources/locale/pl.json +++ b/desktop/onionshare/resources/locale/pl.json @@ -256,5 +256,6 @@ "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", - "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" + "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", + "error_generic": "Wystąpił nieoczekiwany błąd w OnionShare:\n{}" } From 2532324832204f9e5ba70af461bf59c4a66e445e Mon Sep 17 00:00:00 2001 From: Weblate Translation Memory Date: Tue, 18 Feb 2025 20:16:31 +0100 Subject: [PATCH 09/10] Translated using Weblate (Esperanto) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/eo/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Translated using Weblate (Interlingua) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ia/ Translated using Weblate (Sinhala) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/si/ Translated using Weblate (Uyghur) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ug/ Translated using Weblate (Tagalog) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/tl/ Translated using Weblate (Belarusian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/be/ Translated using Weblate (Filipino) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/fil/ Translated using Weblate (Tamil) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ta/ Translated using Weblate (Vietnamese) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/vi/ Translated using Weblate (Kurdish (Central)) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ckb/ Translated using Weblate (Slovak) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/sk/ Translated using Weblate (Croatian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/hr/ Translated using Weblate (Afrikaans) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/af/ Translated using Weblate (Ukrainian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/uk/ Translated using Weblate (Hindi) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/hi/ Translated using Weblate (Malay) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ms/ Translated using Weblate (Japanese) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ja/ Translated using Weblate (Hebrew) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/he/ Translated using Weblate (Swedish) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/sv/ Translated using Weblate (Amharic) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/am/ Translated using Weblate (Bengali) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/bn/ Translated using Weblate (Korean) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ko/ Translated using Weblate (Chinese (Traditional Han script)) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/zh_Hant/ Translated using Weblate (Slovenian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/sl/ Translated using Weblate (Macedonian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/mk/ Translated using Weblate (Indonesian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/id/ Translated using Weblate (Portuguese (Portugal)) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/pt_PT/ Translated using Weblate (Portuguese (Brazil)) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/pt_BR/ Translated using Weblate (Romanian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ro/ Translated using Weblate (Hungarian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/hu/ Translated using Weblate (Greek) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/el/ Translated using Weblate (Catalan) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ca/ Translated using Weblate (Russian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/ru/ Translated using Weblate (Norwegian Bokmål) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/nb_NO/ Translated using Weblate (Dutch) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/nl/ Translated using Weblate (Italian) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/it/ Translated using Weblate (French) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/fr/ Translated using Weblate (Finnish) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/fi/ Translated using Weblate (Spanish) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/es/ Translated using Weblate (German) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/de/ Translated using Weblate (Danish) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/da/ Translated using Weblate (Czech) Translate-URL: https://hosted.weblate.org/projects/onionshare/translations/cs/ --- desktop/onionshare/resources/locale/af.json | 6 +++--- desktop/onionshare/resources/locale/am.json | 5 ++++- desktop/onionshare/resources/locale/be.json | 6 +++--- desktop/onionshare/resources/locale/bn.json | 6 +++--- desktop/onionshare/resources/locale/ca.json | 6 +++--- desktop/onionshare/resources/locale/ckb.json | 7 ++++--- desktop/onionshare/resources/locale/cs.json | 6 +++--- desktop/onionshare/resources/locale/da.json | 6 +++--- desktop/onionshare/resources/locale/de.json | 6 +++--- desktop/onionshare/resources/locale/el.json | 6 +++--- desktop/onionshare/resources/locale/eo.json | 5 ++++- desktop/onionshare/resources/locale/es.json | 6 +++--- desktop/onionshare/resources/locale/fi.json | 6 +++--- desktop/onionshare/resources/locale/fil.json | 5 ++++- desktop/onionshare/resources/locale/fr.json | 6 +++--- desktop/onionshare/resources/locale/he.json | 5 ++++- desktop/onionshare/resources/locale/hi.json | 5 ++++- desktop/onionshare/resources/locale/hr.json | 6 +++--- desktop/onionshare/resources/locale/hu.json | 6 +++--- desktop/onionshare/resources/locale/ia.json | 5 ++++- desktop/onionshare/resources/locale/id.json | 6 +++--- desktop/onionshare/resources/locale/it.json | 6 +++--- desktop/onionshare/resources/locale/ja.json | 6 +++--- desktop/onionshare/resources/locale/ko.json | 5 ++++- desktop/onionshare/resources/locale/mk.json | 5 ++++- desktop/onionshare/resources/locale/ms.json | 5 ++++- desktop/onionshare/resources/locale/nb_NO.json | 6 +++--- desktop/onionshare/resources/locale/nl.json | 6 +++--- desktop/onionshare/resources/locale/pt_BR.json | 6 +++--- desktop/onionshare/resources/locale/pt_PT.json | 6 +++--- desktop/onionshare/resources/locale/ro.json | 7 ++++--- desktop/onionshare/resources/locale/ru.json | 6 +++--- desktop/onionshare/resources/locale/si.json | 5 ++++- desktop/onionshare/resources/locale/sk.json | 6 +++--- desktop/onionshare/resources/locale/sl.json | 5 ++++- desktop/onionshare/resources/locale/sv.json | 6 +++--- desktop/onionshare/resources/locale/ta.json | 6 +++--- desktop/onionshare/resources/locale/tl.json | 5 ++++- desktop/onionshare/resources/locale/ug.json | 5 ++++- desktop/onionshare/resources/locale/uk.json | 6 +++--- desktop/onionshare/resources/locale/vi.json | 6 +++--- desktop/onionshare/resources/locale/zh_Hant.json | 6 +++--- 42 files changed, 141 insertions(+), 100 deletions(-) diff --git a/desktop/onionshare/resources/locale/af.json b/desktop/onionshare/resources/locale/af.json index 1e0e6821..dc607bf3 100644 --- a/desktop/onionshare/resources/locale/af.json +++ b/desktop/onionshare/resources/locale/af.json @@ -84,11 +84,11 @@ "gui_url_label_stay_open": "Hierdie deel sal nie self stop nie.", "gui_url_label_onetime": "Hierdie deel sal stop na eerste voltooiing.", "gui_url_label_onetime_and_persistent": "Hierdie deel sal nie self stop nie.

Elke opvolgende deel sal die adres hergebruik. (Deaktiveer “Gebruik ’n blywende adres” in die instellings om eenmalige adresse te gebruik.)", - "gui_status_indicator_share_stopped": "Gereed om te deel", + "gui_status_indicator_share_stopped": "Gestop", "gui_status_indicator_share_working": "Begin…", "gui_status_indicator_share_scheduled": "Geskeduleer…", "gui_status_indicator_share_started": "Deel tans", - "gui_status_indicator_receive_stopped": "Gereed om te ontvang", + "gui_status_indicator_receive_stopped": "Gestop", "gui_status_indicator_receive_working": "Begin…", "gui_status_indicator_receive_scheduled": "Geskeduleer…", "gui_status_indicator_receive_started": "Ontvang tans", @@ -194,7 +194,7 @@ "gui_status_indicator_chat_scheduled": "Geskeduleer…", "gui_url_instructions_public_mode": "Stuur die onderstaande OnionShare-adres:", "gui_client_auth_instructions": "Stuur dan die privaat sleutel vir toegang tot u OnionShare-diens:", - "gui_status_indicator_chat_stopped": "Gereed om te klets", + "gui_status_indicator_chat_stopped": "Gestop", "gui_status_indicator_chat_working": "Begin…", "gui_settings_theme_label": "Tema", "gui_settings_theme_auto": "Outomaties", diff --git a/desktop/onionshare/resources/locale/am.json b/desktop/onionshare/resources/locale/am.json index cb47ff96..2514d858 100644 --- a/desktop/onionshare/resources/locale/am.json +++ b/desktop/onionshare/resources/locale/am.json @@ -20,5 +20,8 @@ "gui_settings_authenticate_password_option": "የመግቢያ ቃል", "moat_captcha_submit": "Submit", "gui_settings_theme_dark": "ጨለማ", - "gui_settings_theme_light": "ብርሃን" + "gui_settings_theme_light": "ብርሃን", + "gui_status_indicator_receive_stopped": "ቆምዋል", + "gui_status_indicator_chat_stopped": "ቆምዋል", + "gui_status_indicator_share_stopped": "ቆምዋል" } diff --git a/desktop/onionshare/resources/locale/be.json b/desktop/onionshare/resources/locale/be.json index f2f39404..ba21d945 100644 --- a/desktop/onionshare/resources/locale/be.json +++ b/desktop/onionshare/resources/locale/be.json @@ -131,15 +131,15 @@ "gui_url_instructions": "Спачатку дашліце паказаны ніжэй адрас OnionShare:", "gui_url_instructions_public_mode": "Дашліце паказаны ніжэй адрас OnionShare:", "gui_client_auth_instructions": "Затым адпраўце прыватны ключ, каб дазволіць доступ да сэрвісу OnionShare:", - "gui_status_indicator_share_stopped": "Гатовы да адпраўкі", + "gui_status_indicator_share_stopped": "Спынена", "gui_status_indicator_share_working": "Запуск…", "gui_status_indicator_share_scheduled": "Плануецца…", "gui_status_indicator_share_started": "Адпраўка", - "gui_status_indicator_receive_stopped": "Гатова да атрымання", + "gui_status_indicator_receive_stopped": "Спынена", "gui_status_indicator_receive_working": "Пачынаецца…", "gui_status_indicator_receive_scheduled": "Запланавана…", "gui_status_indicator_receive_started": "Атрыманне", - "gui_status_indicator_chat_stopped": "Гатовы да зносін", + "gui_status_indicator_chat_stopped": "Спынена", "gui_status_indicator_chat_working": "Запуск…", "gui_status_indicator_chat_scheduled": "Запланавана…", "gui_status_indicator_chat_started": "Зносіны", diff --git a/desktop/onionshare/resources/locale/bn.json b/desktop/onionshare/resources/locale/bn.json index fb1456af..9373e284 100644 --- a/desktop/onionshare/resources/locale/bn.json +++ b/desktop/onionshare/resources/locale/bn.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "এই শেয়ারটি অটো-স্টপ হবে না ।", "gui_url_label_onetime": "প্রথমবার ফাইল ডাউনলোড হওয়ার পরই এই শেয়ারটি বন্ধ হয়ে যাবে।", "gui_url_label_onetime_and_persistent": "এই শেয়ার অটো-স্টপ হবে না ।

প্রতিটি শেয়ার এই একই স্থায়ী ঠিকানা ব্যবহার করে। (অস্থায়ী ঠিকানা ব্যবহার করতে, সেটিংস-এ ' অবিরাম ঠিকানা ব্যাবহার ' বন্ধ করুন।)", - "gui_status_indicator_share_stopped": "শেয়ার করার জন্য প্রস্তুত", + "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_server_doesnt_support_stealth": "দুখিত, টোরের এই সংস্করণটি স্টেল্থ (ক্লায়েন্ট প্রমাণীকরণ) সমর্থন করে না। দয়া করে টোরের একটি নতুন সংস্করণ দিয়ে চেষ্টা করুন, অথবা ব্যক্তিগত হওয়ার প্রয়োজন না হলে 'পাবলিক' মোড ব্যবহার করুন।", "gui_settings_theme_dark": "কাল", "gui_settings_theme_light": "হালকা", diff --git a/desktop/onionshare/resources/locale/ca.json b/desktop/onionshare/resources/locale/ca.json index fe373c79..e7f003ad 100644 --- a/desktop/onionshare/resources/locale/ca.json +++ b/desktop/onionshare/resources/locale/ca.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "Aquest recurs no es tancarà automàticament.", "gui_url_label_onetime": "Aquest recurs deixarà de compartir-se després de la primera baixada.", "gui_url_label_onetime_and_persistent": "Aquest recurs no es tancarà ell sol.

Cada recurs compartit reutilitzarà aquesta mateixa adreça. (Si voleu crear una adreça diferent per a cada recurs, desactiveu l'opció «Utilitza una adreça persistent».)", - "gui_status_indicator_share_stopped": "A punt per a compartir", + "gui_status_indicator_share_stopped": "Aturat", "gui_status_indicator_share_working": "S'està iniciant…", "gui_status_indicator_share_started": "S'està compartint", - "gui_status_indicator_receive_stopped": "A punt per a rebre", + "gui_status_indicator_receive_stopped": "Aturat", "gui_status_indicator_receive_working": "S'està iniciant…", "gui_status_indicator_receive_started": "S'està rebent", "gui_file_info": "{} fitxers, {}", @@ -220,7 +220,7 @@ "gui_client_auth_instructions": "A continuació, envieu la clau privada per accedir al vostre servei d'OnionShare:", "gui_status_indicator_chat_working": "S'està iniciant…", "gui_status_indicator_chat_scheduled": "Programat…", - "gui_status_indicator_chat_stopped": "Disponible per xatejar", + "gui_status_indicator_chat_stopped": "Aturat", "mode_settings_title_label": "Títol personalitzat", "mode_settings_receive_disable_files_checkbox": "Inhabilita l'enviament de fitxers", "mode_settings_receive_webhook_url_checkbox": "Utilitza un punt d'ancoratge web de notificació", diff --git a/desktop/onionshare/resources/locale/ckb.json b/desktop/onionshare/resources/locale/ckb.json index 15d65b53..2224eaf3 100644 --- a/desktop/onionshare/resources/locale/ckb.json +++ b/desktop/onionshare/resources/locale/ckb.json @@ -79,11 +79,11 @@ "gui_url_label_stay_open": "Ev weşan bi xwe ve naqede.", "gui_url_label_onetime": "Ev weşan piştî temambûna yekemîn biqede.", "gui_url_label_onetime_and_persistent": "Ev weşan otomatîk nasekine.

Her weşanê bi vê ve girêdayî wê heman malper bikar bîne.(Ji bo malperekî yekcar bikar bînî \"Malperê bêdawî bikar bîne\" di ayarê de vemirîne.)", - "gui_status_indicator_share_stopped": "Ji bo weşanê amade", + "gui_status_indicator_share_stopped": "وەستێنراو", "gui_status_indicator_share_working": "Destpê dike…", "gui_status_indicator_share_scheduled": "Pilankirî…", "gui_status_indicator_share_started": "Diweşîne", - "gui_status_indicator_receive_stopped": "Amade ji bo wergirtin", + "gui_status_indicator_receive_stopped": "وەستێنراو", "gui_status_indicator_receive_working": "Destpê dike…", "gui_status_indicator_receive_scheduled": "Pilankirî…", "gui_status_indicator_receive_started": "Werdigire", @@ -191,5 +191,6 @@ "moat_captcha_submit": "پێشکەشکردن", "gui_general_settings_window_title": "گشتی", "gui_hide": "Hide", - "moat_captcha_reload": "Reload" + "moat_captcha_reload": "Reload", + "gui_status_indicator_chat_stopped": "وەستێنراو" } diff --git a/desktop/onionshare/resources/locale/cs.json b/desktop/onionshare/resources/locale/cs.json index 31b2e92b..0b63ecb8 100644 --- a/desktop/onionshare/resources/locale/cs.json +++ b/desktop/onionshare/resources/locale/cs.json @@ -109,7 +109,7 @@ "mode_tor_not_connected_label": "OnionShare není připojen k síti Tor", "gui_url_instructions_public_mode": "Odeslat adresu OnionShare uvedenou níže:", "gui_client_auth_instructions": "Dále zašlete soukromý klíč pro umožnění přístupu k Vaší službě OnionShare :", - "gui_status_indicator_chat_stopped": "Připraveno chatovat", + "gui_status_indicator_chat_stopped": "Zastaven", "gui_status_indicator_receive_working": "Spouštím…", "gui_status_indicator_chat_scheduled": "Naplánováno…", "gui_status_indicator_chat_working": "Spouštím…", @@ -159,11 +159,11 @@ "history_requests_tooltip": "{} webových požadavků", "history_completed_tooltip": "{} dokončeno", "history_in_progress_tooltip": "{} v procesu", - "gui_status_indicator_receive_stopped": "Připraveno k přijetí", + "gui_status_indicator_receive_stopped": "Zastaven", "gui_status_indicator_share_started": "Sdílení", "gui_status_indicator_share_working": "Startuje…", "gui_status_indicator_share_scheduled": "Naplánováno…", - "gui_status_indicator_share_stopped": "Připraveno ke sdílení", + "gui_status_indicator_share_stopped": "Zastaven", "gui_website_url_description": "Kdokoliv s touto OnionShare adresou a soukromým klíčem může navštívit vaši stránku pomocí prohlížeče Tor Browser: ", "gui_server_autostop_timer_expired": "Časovač automatického zastavení již vypršel. Nastavte jej, abyste mohli začít sdílet.", "gui_tor_connection_lost": "Odpojeno od sítě Tor.", diff --git a/desktop/onionshare/resources/locale/da.json b/desktop/onionshare/resources/locale/da.json index 15fcd340..40290e00 100644 --- a/desktop/onionshare/resources/locale/da.json +++ b/desktop/onionshare/resources/locale/da.json @@ -75,10 +75,10 @@ "gui_receive_start_server": "Start modtagetilstand", "gui_receive_stop_server": "Stop modtagetilstand", "gui_receive_stop_server_autostop_timer": "Stop modtagetilstand ({} tilbage)", - "gui_status_indicator_share_stopped": "Klar til at dele", + "gui_status_indicator_share_stopped": "Stoppet", "gui_status_indicator_share_working": "Starter …", "gui_status_indicator_share_started": "Deler", - "gui_status_indicator_receive_stopped": "Klar til at modtage", + "gui_status_indicator_receive_stopped": "Stoppet", "gui_status_indicator_receive_working": "Starter …", "gui_status_indicator_receive_started": "Modtager", "systray_page_loaded_title": "Side indlæst", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_started": "Chatter", "gui_status_indicator_chat_scheduled": "Planlagt …", "gui_status_indicator_chat_working": "Starter …", - "gui_status_indicator_chat_stopped": "Klar til at chatte", + "gui_status_indicator_chat_stopped": "Stoppet", "gui_settings_version_label": "Du bruger OnionShare {}", "gui_autoconnect_failed_to_connect_to_tor": "Kunne ikke oprette forbindelse til Tor", "gui_please_wait_no_button": "Starter …", diff --git a/desktop/onionshare/resources/locale/de.json b/desktop/onionshare/resources/locale/de.json index 258f84a4..0209fc5b 100644 --- a/desktop/onionshare/resources/locale/de.json +++ b/desktop/onionshare/resources/locale/de.json @@ -73,7 +73,7 @@ "gui_url_label_onetime": "Diese Freigabe wird nach dem ersten vollständigen Download beendet.", "gui_status_indicator_share_working": "Starte…", "gui_status_indicator_share_started": "Teilen", - "gui_status_indicator_receive_stopped": "Bereit zum Empfangen", + "gui_status_indicator_receive_stopped": "Angehalten", "gui_status_indicator_receive_working": "Starte…", "gui_status_indicator_receive_started": "Empfange", "gui_file_info": "{} Dateien, {}", @@ -86,7 +86,7 @@ "settings_error_socket_file": "Kann nicht mittels des Tor-Controller-Socket {} verbinden.", "gui_server_started_after_autostop_timer": "Der Autostop-Timer ist abgelaufen, bevor der Server gestartet werden konnte. Bitte starte das Teilen erneut.", "gui_server_autostop_timer_expired": "Der Autostopp-Timer ist bereits abgelaufen. Bitte ändere diesen, um das Teilen zu starten.", - "gui_status_indicator_share_stopped": "Bereit zum Teilen", + "gui_status_indicator_share_stopped": "Angehalten", "history_in_progress_tooltip": "{} läuft", "systray_page_loaded_title": "Seite geladen", "gui_add_files": "Dateien hinzufügen", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_started": "Chatted", "gui_status_indicator_chat_scheduled": "Geplant…", "gui_status_indicator_chat_working": "Startet…", - "gui_status_indicator_chat_stopped": "Bereit zum Chatten", + "gui_status_indicator_chat_stopped": "Angehalten", "gui_settings_theme_dark": "Dunkel", "gui_settings_theme_light": "Hell", "gui_settings_theme_auto": "Automatisch", diff --git a/desktop/onionshare/resources/locale/el.json b/desktop/onionshare/resources/locale/el.json index b7060dff..0c1fe074 100644 --- a/desktop/onionshare/resources/locale/el.json +++ b/desktop/onionshare/resources/locale/el.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "Αυτή η σελίδα διαμοιρασμού δεν θα πάψει να λειτουργεί αυτόματα.", "gui_url_label_onetime": "Αυτός ο διαμοιρασμός θα σταματήσει μετά την πρώτη λήψη.", "gui_url_label_onetime_and_persistent": "Αυτή η σελίδα διαμοιρασμού δεν θα πάψει να λειτουργεί αυτόματα.

Οποιοσδήποτε επακόλουθος διαμοιρασμός θα επαναχρησιμοποιήσει αυτή τη διεύθυνση. (Για να χρησιμοποιήσετε διευθύνσεις μιας χρήσης, απενεργοποιήστε τη λειτουργία \"Χρήση μόνιμης διεύθυνσης\" στις Ρυθμίσεις.)", - "gui_status_indicator_share_stopped": "Έτοιμο για διαμοιρασμό", + "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_copied_client_auth_title": "Το ιδιωτικό κλειδί αντιγράφηκε", "gui_qr_label_url_title": "Διεύθυνση OnionShare", "gui_reveal": "Εμφάνιση", diff --git a/desktop/onionshare/resources/locale/eo.json b/desktop/onionshare/resources/locale/eo.json index ed7413fe..4e9a9e64 100644 --- a/desktop/onionshare/resources/locale/eo.json +++ b/desktop/onionshare/resources/locale/eo.json @@ -50,5 +50,8 @@ "gui_tab_name_share": "Kunhavigi", "gui_tab_name_receive": "Ricevi", "gui_tab_name_website": "Retejo", - "gui_tab_name_chat": "Babili" + "gui_tab_name_chat": "Babili", + "gui_status_indicator_share_stopped": "Haltita", + "gui_status_indicator_receive_stopped": "Haltita", + "gui_status_indicator_chat_stopped": "Haltita" } diff --git a/desktop/onionshare/resources/locale/es.json b/desktop/onionshare/resources/locale/es.json index c9267ddf..0510117d 100644 --- a/desktop/onionshare/resources/locale/es.json +++ b/desktop/onionshare/resources/locale/es.json @@ -60,10 +60,10 @@ "gui_url_label_stay_open": "Este recurso compartido no se detendrá automáticamente.", "gui_url_label_onetime": "Este recurso compartido se detendrá después de completar la primera descarga.", "gui_url_label_onetime_and_persistent": "Este recurso compartido no se detendrá automáticamente.

Cada recurso compartido subsiguiente reutilizará la dirección. (Para usar direcciones una sola vez, desactiva la opción «Usar dirección persistente» en la configuración.)", - "gui_status_indicator_share_stopped": "Listo para compartir", + "gui_status_indicator_share_stopped": "Detenido", "gui_status_indicator_share_working": "Comenzando.…", "gui_status_indicator_share_started": "Compartiendo", - "gui_status_indicator_receive_stopped": "Listo para recibir", + "gui_status_indicator_receive_stopped": "Detenido", "gui_status_indicator_receive_working": "Comenzando.…", "gui_status_indicator_receive_started": "Recibiendo", "gui_file_info": "{} archivos, {}", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_started": "Chateando", "gui_status_indicator_chat_scheduled": "Programado…", "gui_status_indicator_chat_working": "Iniciando…", - "gui_status_indicator_chat_stopped": "Listo para chatear", + "gui_status_indicator_chat_stopped": "Detenido", "gui_reveal": "Mostrar", "gui_settings_theme_label": "Tema", "gui_url_instructions": "Primero, envía la siguiente dirección de OnionShare:", diff --git a/desktop/onionshare/resources/locale/fi.json b/desktop/onionshare/resources/locale/fi.json index 2fc3bdef..10654f5b 100644 --- a/desktop/onionshare/resources/locale/fi.json +++ b/desktop/onionshare/resources/locale/fi.json @@ -77,10 +77,10 @@ "gui_url_label_stay_open": "Tämä jako ei pysähdy automaattisesti.", "gui_url_label_onetime": "Tämä jako lopetetaan ensimmäisen valmistumisen jälkeen.", "gui_url_label_onetime_and_persistent": "Tämä jako ei pysähdy automaattisesti.

Jokainen seuraava jako käyttää osoitetta uudelleen. (Jos haluat käyttää kertaluontoisia osoitteita, sammuta \"Käytä pysyvää osoitetta\" asetuksissa.)", - "gui_status_indicator_share_stopped": "Valmis jakamaan", + "gui_status_indicator_share_stopped": "Pysäytetty", "gui_status_indicator_share_working": "Aloitetaan…", "gui_status_indicator_share_started": "Jakaminen", - "gui_status_indicator_receive_stopped": "Valmis vastaanottamaan", + "gui_status_indicator_receive_stopped": "Pysäytetty", "gui_status_indicator_receive_working": "Vastaanotetaan…", "gui_status_indicator_receive_started": "Vastaanotetaan", "gui_file_info": "{} tiedostoa, {}", @@ -184,7 +184,7 @@ "gui_status_indicator_chat_started": "Keskustellaan", "gui_status_indicator_chat_scheduled": "Ajastettu…", "gui_status_indicator_chat_working": "Aloitetaan…", - "gui_status_indicator_chat_stopped": "Valmiina keskustelemaan", + "gui_status_indicator_chat_stopped": "Pysäytetty", "gui_chat_url_description": "Kuka tahansa tällä Onionshare-osoitteella voi liittyä tähän keskusteluryhmään käyttämällä Tor-selainta: ", "gui_please_wait_no_button": "Aloitetaan…", "gui_qr_code_dialog_title": "OnionSharen QR-koodi", diff --git a/desktop/onionshare/resources/locale/fil.json b/desktop/onionshare/resources/locale/fil.json index cbb05597..88db97cd 100644 --- a/desktop/onionshare/resources/locale/fil.json +++ b/desktop/onionshare/resources/locale/fil.json @@ -39,5 +39,8 @@ "gui_status_indicator_chat_working": "Sinisimulan…", "gui_all_modes_history": "History", "gui_canceled": "Kinansela", - "moat_captcha_reload": "I-restart ang laro" + "moat_captcha_reload": "I-restart ang laro", + "gui_status_indicator_share_stopped": "Inihinto", + "gui_status_indicator_receive_stopped": "Inihinto", + "gui_status_indicator_chat_stopped": "Inihinto" } diff --git a/desktop/onionshare/resources/locale/fr.json b/desktop/onionshare/resources/locale/fr.json index 47eaa46f..f5c7f782 100644 --- a/desktop/onionshare/resources/locale/fr.json +++ b/desktop/onionshare/resources/locale/fr.json @@ -64,10 +64,10 @@ "gui_url_label_stay_open": "Ce partage ne s’arrêtera pas automatiquement.", "gui_url_label_onetime": "Ce partage s’arrêtera une fois que le premier téléchargement sera terminé.", "gui_url_label_onetime_and_persistent": "Ce partage ne s’arrêtera pas automatiquement.

Tout partage subséquent réutilisera l’adresse. (Pour des adresses qui ne peuvent être utilisées qu’une fois, désactivez « Utiliser une adresse persistante » dans les paramètres.)", - "gui_status_indicator_share_stopped": "Prêt à partager", + "gui_status_indicator_share_stopped": "Arrêté", "gui_status_indicator_share_working": "Démarrage…", "gui_status_indicator_share_started": "Partage en cours", - "gui_status_indicator_receive_stopped": "Prêt à recevoir", + "gui_status_indicator_receive_stopped": "Arrêté", "gui_status_indicator_receive_working": "Démarrage…", "gui_status_indicator_receive_started": "Réception", "gui_file_info": "{} fichiers, {}", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_started": "En conversation", "gui_status_indicator_chat_scheduled": "Planifié…", "gui_status_indicator_chat_working": "Démarrage…", - "gui_status_indicator_chat_stopped": "Prêt à dialoguer", + "gui_status_indicator_chat_stopped": "Arrêté", "gui_copied_client_auth_title": "La clé privée a été copiée", "gui_please_wait_no_button": "Démarrage…", "gui_copied_client_auth": "La clé privée a été copiée dans le presse-papiers", diff --git a/desktop/onionshare/resources/locale/he.json b/desktop/onionshare/resources/locale/he.json index 2c6a6a69..30088080 100644 --- a/desktop/onionshare/resources/locale/he.json +++ b/desktop/onionshare/resources/locale/he.json @@ -57,5 +57,8 @@ "gui_general_settings_window_title": "כללי", "gui_status_indicator_chat_working": "התחלה…", "mode_settings_title_label": "כותרת מותאמת אישית", - "gui_settings_bridge_use_checkbox": "להשתמש בגשר" + "gui_settings_bridge_use_checkbox": "להשתמש בגשר", + "gui_status_indicator_receive_stopped": "נעצר", + "gui_status_indicator_chat_stopped": "נעצר", + "gui_status_indicator_share_stopped": "נעצר" } diff --git a/desktop/onionshare/resources/locale/hi.json b/desktop/onionshare/resources/locale/hi.json index e5fe5da1..0bb100f3 100644 --- a/desktop/onionshare/resources/locale/hi.json +++ b/desktop/onionshare/resources/locale/hi.json @@ -136,5 +136,8 @@ "moat_captcha_label": "पुल का अनुरोध करने के लिए कैप्चा को हल करें।", "moat_solution_empty_error": "छवि से अक्षर दर्ज करें", "gui_autoconnect_start": "टोर से कनेक्ट करें", - "moat_captcha_reload": "Reload" + "moat_captcha_reload": "Reload", + "gui_status_indicator_share_stopped": "रुका हुआ", + "gui_status_indicator_receive_stopped": "रुका हुआ", + "gui_status_indicator_chat_stopped": "रुका हुआ" } diff --git a/desktop/onionshare/resources/locale/hr.json b/desktop/onionshare/resources/locale/hr.json index 008b1902..c9e194de 100644 --- a/desktop/onionshare/resources/locale/hr.json +++ b/desktop/onionshare/resources/locale/hr.json @@ -84,11 +84,11 @@ "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 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_stopped": "Prekinuto", "gui_status_indicator_share_working": "Pokretanje …", "gui_status_indicator_share_scheduled": "Planirano …", "gui_status_indicator_share_started": "Dijeljenje", - "gui_status_indicator_receive_stopped": "Spremno za primanje", + "gui_status_indicator_receive_stopped": "Prekinuto", "gui_status_indicator_receive_working": "Pokretanje …", "gui_status_indicator_receive_scheduled": "Planirano …", "gui_status_indicator_receive_started": "Primanje", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_working": "Pokretanje …", "mode_settings_receive_webhook_url_checkbox": "Koristi automatsko obavještavanje", "gui_status_indicator_chat_started": "Razgovor u tijeku", - "gui_status_indicator_chat_stopped": "Spremno za razgovor", + "gui_status_indicator_chat_stopped": "Prekinuto", "gui_server_doesnt_support_stealth": "Nažalost, ova Tor verzija ne podržava autentifikaciju klijenata. Pokušaj s novijom Tor verzijom ili koristi „javni” način rada ako ne mora biti privatni.", "gui_settings_theme_dark": "Tamna", "gui_settings_theme_light": "Svjetla", diff --git a/desktop/onionshare/resources/locale/hu.json b/desktop/onionshare/resources/locale/hu.json index c270e778..b9276d2d 100644 --- a/desktop/onionshare/resources/locale/hu.json +++ b/desktop/onionshare/resources/locale/hu.json @@ -139,7 +139,7 @@ "gui_settings_bridge_radio_builtin": "Válasszon beépített hidat", "gui_autoconnect_configure": "Hálózati beállítások", "gui_url_instructions": "Először küldje el az alábbi OnionShare címet:", - "gui_status_indicator_receive_stopped": "Fogadásra készen", + "gui_status_indicator_receive_stopped": "Leállít", "gui_status_indicator_chat_scheduled": "Ütemezett…", "gui_file_info": "{} fájl, {}", "gui_chat_start_server": "Csevegőszerver indítása", @@ -160,8 +160,8 @@ "gui_chat_url_description": "Ezzel az OnionShare címmel és privát kulccsal bárki csatlakozhat ehhez a csevegőszobához a Tor böngésző használatával: ", "gui_tor_connection_ask": "Megnyissuk a beállításokat, hogy a Tor-hoz való kapcsolódást rendezze?", "gui_status_indicator_share_scheduled": "Ütemezett…", - "gui_status_indicator_share_stopped": "Megosztásra kész", - "gui_status_indicator_chat_stopped": "Készen áll a csevegésre", + "gui_status_indicator_share_stopped": "Leállít", + "gui_status_indicator_chat_stopped": "Leállít", "gui_enable_autoconnect_checkbox": "Automatikus csatlakozás a Torhoz", "gui_tor_connection_lost": "Leválasztva a Torról.", "gui_copied_client_auth": "A privát kulcs a vágólapra másolva", diff --git a/desktop/onionshare/resources/locale/ia.json b/desktop/onionshare/resources/locale/ia.json index d5970905..df1e1e15 100644 --- a/desktop/onionshare/resources/locale/ia.json +++ b/desktop/onionshare/resources/locale/ia.json @@ -34,5 +34,8 @@ "gui_all_modes_clear_history": "Rader toto", "gui_new_tab": "Nove scheda", "gui_main_page_share_button": "Comenciar a compartir", - "gui_tab_name_share": "Compartir" + "gui_tab_name_share": "Compartir", + "gui_status_indicator_chat_stopped": "Stoppate", + "gui_status_indicator_share_stopped": "Stoppate", + "gui_status_indicator_receive_stopped": "Stoppate" } diff --git a/desktop/onionshare/resources/locale/id.json b/desktop/onionshare/resources/locale/id.json index 3a7a05a1..ff57a49f 100644 --- a/desktop/onionshare/resources/locale/id.json +++ b/desktop/onionshare/resources/locale/id.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "Pembagian ini tidak akan berhenti otomatis.", "gui_url_label_onetime": "Pembagian ini akan berhenti setelah penyelesaian pertama.", "gui_url_label_onetime_and_persistent": "Pembagian ini tidak akan berhenti otomatis.

Setiap pembagian selanjutnya akan menggunakan lagi alamat tersebut. (Untuk menggunakan alamat sekali pakai, matikan \"Gunakan alamat persisten\" di pengaturan.)", - "gui_status_indicator_share_stopped": "Siap untuk berbagi", + "gui_status_indicator_share_stopped": "Terhenti", "gui_status_indicator_share_working": "Memulai…", "gui_status_indicator_share_started": "Berbagi", - "gui_status_indicator_receive_stopped": "Siap untuk menerima", + "gui_status_indicator_receive_stopped": "Terhenti", "gui_status_indicator_receive_working": "Memulai…", "gui_status_indicator_receive_started": "Menerima", "gui_file_info": "{} file, {}", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_started": "Mengobrol", "gui_status_indicator_chat_scheduled": "Menjadwalkan…", "gui_status_indicator_chat_working": "Memulai…", - "gui_status_indicator_chat_stopped": "Siap untuk mengobrol", + "gui_status_indicator_chat_stopped": "Terhenti", "gui_copied_client_auth_title": "Kunci Pribadi Disalin", "gui_copy_client_auth": "Salin Kunci Pribadi", "gui_hide": "Sembunyikan", diff --git a/desktop/onionshare/resources/locale/it.json b/desktop/onionshare/resources/locale/it.json index 176c0d72..f7a767df 100644 --- a/desktop/onionshare/resources/locale/it.json +++ b/desktop/onionshare/resources/locale/it.json @@ -80,10 +80,10 @@ "gui_url_label_stay_open": "Questa condivisione non si arresterà automaticamente.", "gui_url_label_onetime": "Questa condivisione verrà interrotta dopo il primo completamento.", "gui_url_label_onetime_and_persistent": "Questa condivisione non si arresterà automaticamente.

Ogni condivisione successiva riutilizzerà l'indirizzo. (Per utilizzare indirizzi monouso, disattivare \"Usa indirizzo persistente\" nelle impostazioni.)", - "gui_status_indicator_share_stopped": "Pronto per condividere", + "gui_status_indicator_share_stopped": "Fermato", "gui_status_indicator_share_working": "Iniziando…", "gui_status_indicator_share_started": "Condividendo", - "gui_status_indicator_receive_stopped": "Pronto per ricevere", + "gui_status_indicator_receive_stopped": "Fermato", "gui_status_indicator_receive_working": "Iniziando…", "gui_status_indicator_receive_started": "Ricevendo", "gui_file_info": "{} file, {}", @@ -239,7 +239,7 @@ "gui_url_instructions_public_mode": "Invia l'indirizzo OnionShare qua sotto:", "gui_client_auth_instructions": "Successivamente, invia la chiave privata per consentire l'accesso al servizio OnionShare:", "moat_bridgedb_error": "Impossibile contattare BridgeDB.", - "gui_status_indicator_chat_stopped": "Pronto a chattare", + "gui_status_indicator_chat_stopped": "Fermato", "gui_settings_stop_active_tabs_label": "Ci sono servizi in esecuzione in alcune delle tue schede.\nDevi arrestare tutti i servizi per modificare le impostazioni di Tor.", "waitress_web_server_error": "\"Si è verificato un problema nell'avvio del server web\"", "gui_autoconnect_circumventing_censorship_starting_circumvention": "Eludere la censura…", diff --git a/desktop/onionshare/resources/locale/ja.json b/desktop/onionshare/resources/locale/ja.json index 49fcfdbf..c3a97a31 100644 --- a/desktop/onionshare/resources/locale/ja.json +++ b/desktop/onionshare/resources/locale/ja.json @@ -78,10 +78,10 @@ "gui_url_label_stay_open": "この共有は自動では停止しません。", "gui_url_label_onetime": "この共有は最初の完了後に停止します。", "gui_url_label_onetime_and_persistent": "この共有は自動では停止しません。

次回以降の共有も同じアドレスを使用します。(1回限りのアドレスを使うには、設定画面で「固定アドレスを使用」を無効にしてください。)", - "gui_status_indicator_share_stopped": "共有の準備が完了しました", + "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": "{} ファイル, {}", @@ -190,7 +190,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_client_auth_instructions": "次に、OnionShare サービスへのアクセスを許可する秘密鍵を送信してください。", "gui_url_instructions_public_mode": "以下に表示される OnionShare アドレスを送信。", "gui_url_instructions": "初めに、以下に表示される OnionShare アドレスを送信してください。", diff --git a/desktop/onionshare/resources/locale/ko.json b/desktop/onionshare/resources/locale/ko.json index 42428928..66abc9ed 100644 --- a/desktop/onionshare/resources/locale/ko.json +++ b/desktop/onionshare/resources/locale/ko.json @@ -105,5 +105,8 @@ "mode_settings_title_label": "커스텀 제목", "mode_settings_public_checkbox": "공개 OnionShare 서비스 (비밀키 비활성화)", "mode_settings_persistent_checkbox": "OnionShare가 시작될 때 항상 이 탭 열기", - "gui_settings_bridge_use_checkbox": "브리지 사용" + "gui_settings_bridge_use_checkbox": "브리지 사용", + "gui_status_indicator_receive_stopped": "중지됨", + "gui_status_indicator_share_stopped": "중지됨", + "gui_status_indicator_chat_stopped": "중지됨" } diff --git a/desktop/onionshare/resources/locale/mk.json b/desktop/onionshare/resources/locale/mk.json index 7c6fc240..2ad97df7 100644 --- a/desktop/onionshare/resources/locale/mk.json +++ b/desktop/onionshare/resources/locale/mk.json @@ -38,5 +38,8 @@ "gui_settings_bridge_moat_radio_option": "Барање за мост од torproject.org", "gui_settings_bridge_custom_placeholder": "внеси адреса:порта (по една во секој ред)", "moat_captcha_label": "Решете ја ЗАДАЧАТА за да побарате мост.", - "gui_settings_bridge_use_checkbox": "Користи мост" + "gui_settings_bridge_use_checkbox": "Користи мост", + "gui_status_indicator_chat_stopped": "Запрено", + "gui_status_indicator_receive_stopped": "Запрено", + "gui_status_indicator_share_stopped": "Запрено" } diff --git a/desktop/onionshare/resources/locale/ms.json b/desktop/onionshare/resources/locale/ms.json index cfc33ce5..4fbee33a 100644 --- a/desktop/onionshare/resources/locale/ms.json +++ b/desktop/onionshare/resources/locale/ms.json @@ -38,5 +38,8 @@ "gui_settings_bridge_custom_placeholder": "taip alamat:port (satu per baris)", "moat_captcha_label": "Selesaikan CAPTCHA untuk meminta satu titi.", "moat_captcha_submit": "Serah", - "moat_solution_empty_error": "Masukkan aksara yang tertera dari imej" + "moat_solution_empty_error": "Masukkan aksara yang tertera dari imej", + "gui_status_indicator_receive_stopped": "Terhenti", + "gui_status_indicator_share_stopped": "Terhenti", + "gui_status_indicator_chat_stopped": "Terhenti" } diff --git a/desktop/onionshare/resources/locale/nb_NO.json b/desktop/onionshare/resources/locale/nb_NO.json index 0b1563a5..21145346 100644 --- a/desktop/onionshare/resources/locale/nb_NO.json +++ b/desktop/onionshare/resources/locale/nb_NO.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "Denne delingen vil ikke stoppe automatisk.", "gui_url_label_onetime": "Denne delingen vil stoppe etter første fullføring.", "gui_url_label_onetime_and_persistent": "Delingen vil ikke stoppe automatisk.

Hver påfølgende deling vil gjenbruke adressen. (For å bruke engangsadresser, skru av \"Bruk vedvarende adresse\" i innstillingene.)", - "gui_status_indicator_share_stopped": "Klar til å dele", + "gui_status_indicator_share_stopped": "Stoppet", "gui_status_indicator_share_working": "Starter…", "gui_status_indicator_share_started": "Deler", - "gui_status_indicator_receive_stopped": "Klar til mottak", + "gui_status_indicator_receive_stopped": "Stoppet", "gui_status_indicator_receive_working": "Starter…", "gui_status_indicator_receive_started": "Mottar", "gui_file_info": "{} filer, {}", @@ -188,7 +188,7 @@ "gui_status_indicator_chat_started": "Sludrer", "gui_status_indicator_chat_scheduled": "Planlagt …", "gui_status_indicator_chat_working": "Starter …", - "gui_status_indicator_chat_stopped": "Klar til å sludre", + "gui_status_indicator_chat_stopped": "Stoppet", "gui_client_auth_instructions": "Så sender du den private nøkkelen for å innvilge tilgang til din OnionShare-tjeneste:", "gui_url_instructions_public_mode": "Send OnionShare-adressen nedenfor:", "gui_chat_url_public_description": "Alle med denne OnionShare-adressen kan ta del i dette sludrerommet med Tor-nettleseren: ", diff --git a/desktop/onionshare/resources/locale/nl.json b/desktop/onionshare/resources/locale/nl.json index cadbce51..344abce4 100644 --- a/desktop/onionshare/resources/locale/nl.json +++ b/desktop/onionshare/resources/locale/nl.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "Deze share stopt niet automatisch.", "gui_url_label_onetime": "Deze share stopt na de eerste voltooiïng.", "gui_url_label_onetime_and_persistent": "Deze share stopt niet vanzelf.

Elke volgende share zal het adres hergebruiken. (Om eenmalige adressen te gebruiken, zet \"Gebruik vast adres\" uit in de settings.)", - "gui_status_indicator_share_stopped": "Klaar om te delen", + "gui_status_indicator_share_stopped": "Gestopt", "gui_status_indicator_share_working": "Starten…", "gui_status_indicator_share_started": "Aan het delen", - "gui_status_indicator_receive_stopped": "Klaar om te ontvangen", + "gui_status_indicator_receive_stopped": "Gestopt", "gui_status_indicator_receive_working": "Starten…", "gui_status_indicator_receive_started": "Ontvangen", "gui_file_info": "{} bestanden, {}", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_started": "in gesprek", "gui_status_indicator_chat_scheduled": "Ingepland…", "gui_color_mode_changed_notice": "Herstart OnionShare om de nieuwe kleur toe te passen.", - "gui_status_indicator_chat_stopped": "Klaar om te chatten", + "gui_status_indicator_chat_stopped": "Gestopt", "gui_settings_theme_label": "Thema", "gui_settings_theme_auto": "Automatisch", "moat_captcha_label": "Los de CAPTCHA op om een bridge aan te vragen.", diff --git a/desktop/onionshare/resources/locale/pt_BR.json b/desktop/onionshare/resources/locale/pt_BR.json index c4b9bdd4..e9969314 100644 --- a/desktop/onionshare/resources/locale/pt_BR.json +++ b/desktop/onionshare/resources/locale/pt_BR.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "Este compartilhamento não será encerrado automaticamente.", "gui_url_label_onetime": "Este compartilhamento será encerrado após completar uma vez.", "gui_url_label_onetime_and_persistent": "Este compartilhamento não será encerrado automaticamente.

Todos os compartilhamentos posteriores reutilizarão este endereço. (Para usar endereços únicos a cada compartilhamento, desative a opção \"Usar o mesmo endereço\" nas configurações.)", - "gui_status_indicator_share_stopped": "Pronto para compartilhar", + "gui_status_indicator_share_stopped": "Encerrado", "gui_status_indicator_share_working": "Começando…", "gui_status_indicator_share_started": "Compartilhando", - "gui_status_indicator_receive_stopped": "Pronto para receber", + "gui_status_indicator_receive_stopped": "Encerrado", "gui_status_indicator_receive_working": "Começando…", "gui_status_indicator_receive_started": "Recebendo", "gui_file_info": "{} arquivos, {}", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_started": "Conversando", "gui_status_indicator_chat_scheduled": "Programando…", "gui_status_indicator_chat_working": "Começando…", - "gui_status_indicator_chat_stopped": "Pronto para conversar", + "gui_status_indicator_chat_stopped": "Encerrado", "gui_share_url_public_description": "Qualquer pessoa com este endereço OnionShare pode baixar seus arquivos usando o Navegador Tor: ", "gui_server_doesnt_support_stealth": "Desculpe, esta versão do Tor não suporta (autenticação de cliente) furtiva. Por favor, tente uma versão mais recente do Tor ou utilize o modo 'público' se não houver a necessidade de ter privacidade.", "gui_please_wait_no_button": "Iniciando…", diff --git a/desktop/onionshare/resources/locale/pt_PT.json b/desktop/onionshare/resources/locale/pt_PT.json index 08470d0c..b5facc63 100644 --- a/desktop/onionshare/resources/locale/pt_PT.json +++ b/desktop/onionshare/resources/locale/pt_PT.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "Esta partilha não irá parar automaticamente.", "gui_url_label_onetime": "Esta partilha irá parar após ser descarregada uma vez com sucesso.", "gui_url_label_onetime_and_persistent": "Esta partilha não vai ser encerrada automaticamente.

Todas as partilhas posteriores utilizarão este endereço. (Para usar endereços de uma só utilização, desative a opção \"Usar endereço persistente\" nas configurações.)", - "gui_status_indicator_share_stopped": "Pronto para partilhar", + "gui_status_indicator_share_stopped": "Parado", "gui_status_indicator_share_working": "A começar…", "gui_status_indicator_share_started": "A partilhar", - "gui_status_indicator_receive_stopped": "Pronto para receber", + "gui_status_indicator_receive_stopped": "Parado", "gui_status_indicator_receive_working": "A começar…", "gui_status_indicator_receive_started": "A receber", "gui_file_info": "{} ficheiros, {}", @@ -197,7 +197,7 @@ "gui_status_indicator_chat_started": "A conversar", "gui_status_indicator_chat_scheduled": "Agendado…", "gui_status_indicator_chat_working": "A iniciar…", - "gui_status_indicator_chat_stopped": "Pronto para conversar", + "gui_status_indicator_chat_stopped": "Parado", "gui_client_auth_instructions": "Em seguida, envie a chave privada para permitir o acesso ao seu serviço OnionShare:", "gui_url_instructions_public_mode": "Envie o seguinte endereço OnionShare:", "gui_url_instructions": "Primeiro, envie o seguinte endereço OnionShare:", diff --git a/desktop/onionshare/resources/locale/ro.json b/desktop/onionshare/resources/locale/ro.json index 383d43ba..d7494696 100644 --- a/desktop/onionshare/resources/locale/ro.json +++ b/desktop/onionshare/resources/locale/ro.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "Această partajare nu se va opri automat.", "gui_url_label_onetime": "Această partajare se va opri după prima finalizare.", "gui_url_label_onetime_and_persistent": "Această partajare nu se va opri automat.

Fiecare acțiune ulterioară va reutiliza adresa. (Pentru a utiliza adrese unice, dezactivați „Utilizați adresa persistentă” din setări.)", - "gui_status_indicator_share_stopped": "Pregătit pentru partajare", + "gui_status_indicator_share_stopped": "Oprit", "gui_status_indicator_share_working": "Pornire…", "gui_status_indicator_share_started": "Partajare", - "gui_status_indicator_receive_stopped": "Pregătit pentru primire", + "gui_status_indicator_receive_stopped": "Oprit", "gui_status_indicator_receive_working": "Pornire…", "gui_status_indicator_receive_started": "Primire", "gui_file_info": "{} fișiere, {}", @@ -168,5 +168,6 @@ "moat_captcha_reload": "Reîncarcă", "gui_autoconnect_start": "Conectare la Tor", "gui_general_settings_window_title": "General", - "gui_share_url_public_description": "Oricine are această adresă OnionShare poate descărca fișierele dvs. folosind Tor Browser: " + "gui_share_url_public_description": "Oricine are această adresă OnionShare poate descărca fișierele dvs. folosind Tor Browser: ", + "gui_status_indicator_chat_stopped": "Oprit" } diff --git a/desktop/onionshare/resources/locale/ru.json b/desktop/onionshare/resources/locale/ru.json index d75df8d4..acbeb994 100644 --- a/desktop/onionshare/resources/locale/ru.json +++ b/desktop/onionshare/resources/locale/ru.json @@ -79,9 +79,9 @@ "gui_url_label_stay_open": "Эта отправка не будет остановлена автоматически.", "gui_url_label_onetime": "Эта отправка будет завершена автоматически после первой загрузки.", "gui_url_label_onetime_and_persistent": "Эта отправка не будет завершена автоматически.

Каждая последующая отправка будет повторно использовать этот адрес. (Чтобы использовать одноразовый адрес, отключите опцию \"Использовать устаревший адрес\" в настройках.)", - "gui_status_indicator_share_stopped": "Данные готовы к отправке", + "gui_status_indicator_share_stopped": "Остановлено", "gui_status_indicator_share_working": "Запуск…", - "gui_status_indicator_receive_stopped": "Данные готовы к получению", + "gui_status_indicator_receive_stopped": "Остановлено", "gui_status_indicator_receive_working": "Запуск…", "gui_file_info": "{} файлы, {}", "gui_file_info_single": "{} файл, {}", @@ -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_settings_theme_dark": "Тёмная", "gui_settings_theme_light": "Светлая", "gui_settings_theme_auto": "Авто", diff --git a/desktop/onionshare/resources/locale/si.json b/desktop/onionshare/resources/locale/si.json index 1c0355a4..7efeb699 100644 --- a/desktop/onionshare/resources/locale/si.json +++ b/desktop/onionshare/resources/locale/si.json @@ -28,5 +28,8 @@ "gui_tab_name_website": "වෙබ් අඩවිය", "gui_tab_name_chat": "කතාබහ", "moat_captcha_submit": "Submit", - "gui_close_tab_warning_close": "හරි" + "gui_close_tab_warning_close": "හරි", + "gui_status_indicator_receive_stopped": "නවත්වා ඇත", + "gui_status_indicator_chat_stopped": "නවත්වා ඇත", + "gui_status_indicator_share_stopped": "නවත්වා ඇත" } diff --git a/desktop/onionshare/resources/locale/sk.json b/desktop/onionshare/resources/locale/sk.json index 14314b56..3a4d16b4 100644 --- a/desktop/onionshare/resources/locale/sk.json +++ b/desktop/onionshare/resources/locale/sk.json @@ -79,11 +79,11 @@ "gui_url_label_stay_open": "Toto zdieľanie sa automaticky nezastaví.", "gui_url_label_onetime": "Toto zdieľanie sa zastaví po prvom dokončení.", "gui_url_label_onetime_and_persistent": "Toto zdieľanie sa automaticky nezastaví.

Každé ďalšie zdieľanie znova použije adresu. (Ak chcete použiť jednorazové adresy, vypnite v nastaveniach možnosť „Používať trvalú adresu“.)", - "gui_status_indicator_share_stopped": "Pripravené na zdieľanie", + "gui_status_indicator_share_stopped": "Zastavený", "gui_status_indicator_share_working": "Spúšťa sa…", "gui_status_indicator_share_scheduled": "Naplánované…", "gui_status_indicator_share_started": "Zdieľa sa", - "gui_status_indicator_receive_stopped": "Pripravené na príjem", + "gui_status_indicator_receive_stopped": "Zastavený", "gui_status_indicator_receive_working": "Spúšťa sa…", "gui_status_indicator_receive_scheduled": "Naplánované…", "gui_status_indicator_receive_started": "Prijíma sa", @@ -216,7 +216,7 @@ "gui_autoconnect_bridge_detect_automatic": "Určiť moju krajinu z mojej IP adresy pre nastavenia premostenia", "gui_autoconnect_circumventing_censorship_requesting_bridges": "Žiadosť o premostenie z API rozhrania Tor na obchádzanie cenzúry…", "gui_autoconnect_could_not_connect_to_tor_api": "Nepodarilo sa pripojiť k rozhraniu Tor API. Pred ďalším pokusom sa uistite, že ste pripojení k internetu.", - "gui_status_indicator_chat_stopped": "Pripravený na diskusiu", + "gui_status_indicator_chat_stopped": "Zastavený", "gui_chat_mode_explainer": "Režim diskusie umožňuje interaktívny rozhovor s ostatnými v prehliadači Tor.

História diskusie sa v službe OnionShare neukladá. História diskusie zmizne po zatvorení prehliadača Tor Browser.", "mode_settings_receive_disable_files_checkbox": "Zakázať nahrávanie súborov", "waitress_web_server_error": "Nastal problém so spustením webového servera", diff --git a/desktop/onionshare/resources/locale/sl.json b/desktop/onionshare/resources/locale/sl.json index 7cc7586e..fbbd063d 100644 --- a/desktop/onionshare/resources/locale/sl.json +++ b/desktop/onionshare/resources/locale/sl.json @@ -58,5 +58,8 @@ "moat_captcha_reload": "Ponovno naloži", "gui_status_indicator_share_started": "Deljenje", "gui_status_indicator_receive_working": "Začetek …", - "gui_status_indicator_chat_working": "Začetek …" + "gui_status_indicator_chat_working": "Začetek …", + "gui_status_indicator_receive_stopped": "Ustavljeno", + "gui_status_indicator_share_stopped": "Ustavljeno", + "gui_status_indicator_chat_stopped": "Ustavljeno" } diff --git a/desktop/onionshare/resources/locale/sv.json b/desktop/onionshare/resources/locale/sv.json index d6d1e25c..6f429dda 100644 --- a/desktop/onionshare/resources/locale/sv.json +++ b/desktop/onionshare/resources/locale/sv.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "Denna delning kommer inte automatiskt att avslutas.", "gui_url_label_onetime": "Denna delning kommer att sluta efter första slutförandet.", "gui_url_label_onetime_and_persistent": "Denna delning kommer inte automatiskt att avslutas.
< br>Varje efterföljande delning kommer att återanvända adressen. (För att använda engångsadresser, stäng av \"Använd beständig adress\" i inställningarna.)", - "gui_status_indicator_share_stopped": "Redo att dela", + "gui_status_indicator_share_stopped": "Stoppad", "gui_status_indicator_share_working": "Startar…", "gui_status_indicator_share_started": "Delar", - "gui_status_indicator_receive_stopped": "Redo att ta emot", + "gui_status_indicator_receive_stopped": "Stoppad", "gui_status_indicator_receive_working": "Startar…", "gui_status_indicator_receive_started": "Tar emot", "gui_file_info": "{} filer, {}", @@ -177,7 +177,7 @@ "gui_new_tab_chat_button": "Chatta anonymt", "gui_open_folder_error": "Det gick inte att öppna mappen med xdg-open. Filen finns här: {}", "gui_chat_url_description": "Vem som helst med denna OnionShare-adress och privata nyckel kan gå med i detta chattrum med hjälp av Tor Browser: ", - "gui_status_indicator_chat_stopped": "Redo att chatta", + "gui_status_indicator_chat_stopped": "Stoppad", "gui_status_indicator_chat_scheduled": "Schemalagd…", "history_receive_read_message_button": "Läs meddelandet", "mode_settings_receive_webhook_url_checkbox": "Använd aviseringswebhook", diff --git a/desktop/onionshare/resources/locale/ta.json b/desktop/onionshare/resources/locale/ta.json index 248456d5..46928fe3 100644 --- a/desktop/onionshare/resources/locale/ta.json +++ b/desktop/onionshare/resources/locale/ta.json @@ -67,7 +67,7 @@ "gui_close_tab_warning_website_description": "வலைத்தளத்தை புரவலன் செய்யும் தாவலை மூடு?", "gui_close_tab_warning_share_description": "கோப்புகளை அனுப்பும் தாவலை மூடு?", "systray_page_loaded_message": "வெங்காய முகவரி ஏற்றப்பட்டது", - "gui_status_indicator_receive_stopped": "பெற தயாராக உள்ளது", + "gui_status_indicator_receive_stopped": "நிறுத்தப்பட்டது", "gui_all_modes_progress_eta": "{0: с}, இது: {1: с}, %n %", "hours_first_letter": "ம", "gui_autoconnect_circumventing_censorship": "இணைப்பு சிக்கல்களைத் தீர்ப்பது…", @@ -205,11 +205,11 @@ "gui_url_label_stay_open": "இந்த பங்கு தானாக நிறுத்தப்படாது.", "gui_url_instructions": "முதலில், வெங்காய முகவரியை கீழே அனுப்பவும்:", "gui_client_auth_instructions": "அடுத்து, உங்கள் வெங்காய சேவைக்கு அணுகலை அனுமதிக்க தனிப்பட்ட விசையை அனுப்பவும்:", - "gui_status_indicator_share_stopped": "பகிர தயாராக உள்ளது", + "gui_status_indicator_share_stopped": "நிறுத்தப்பட்டது", "gui_status_indicator_share_scheduled": "திட்டமிடப்பட்டுள்ளது…", "gui_status_indicator_share_started": "பகிர்வு", "gui_status_indicator_receive_scheduled": "திட்டமிடப்பட்டுள்ளது…", - "gui_status_indicator_chat_stopped": "அரட்டையடிக்க தயாராக உள்ளது", + "gui_status_indicator_chat_stopped": "நிறுத்தப்பட்டது", "gui_status_indicator_chat_scheduled": "திட்டமிடப்பட்டுள்ளது…", "gui_file_info": "{} கோப்புகள், {}", "gui_file_info_single": "{} கோப்பு, {}", diff --git a/desktop/onionshare/resources/locale/tl.json b/desktop/onionshare/resources/locale/tl.json index 9a02d7f6..2b9dc55a 100644 --- a/desktop/onionshare/resources/locale/tl.json +++ b/desktop/onionshare/resources/locale/tl.json @@ -23,5 +23,8 @@ "gui_settings_theme_light": "Maliwanag na tema", "gui_tab_name_website": "Pook-sapot", "gui_tor_connection_ask_open_settings": "Oo", - "moat_captcha_reload": "Reload" + "moat_captcha_reload": "Reload", + "gui_status_indicator_receive_stopped": "Natigil", + "gui_status_indicator_share_stopped": "Natigil", + "gui_status_indicator_chat_stopped": "Natigil" } diff --git a/desktop/onionshare/resources/locale/ug.json b/desktop/onionshare/resources/locale/ug.json index 43e5895b..a770b4b3 100644 --- a/desktop/onionshare/resources/locale/ug.json +++ b/desktop/onionshare/resources/locale/ug.json @@ -20,5 +20,8 @@ "gui_quit_warning_cancel": "ۋاز كەچ", "mode_settings_receive_data_dir_browse_button": "كۆرۈش", "gui_status_indicator_share_started": "ئورتاقلىشىش", - "gui_settings_button_help": "ياردەم" + "gui_settings_button_help": "ياردەم", + "gui_status_indicator_share_stopped": "توختىدى", + "gui_status_indicator_receive_stopped": "توختىدى", + "gui_status_indicator_chat_stopped": "توختىدى" } diff --git a/desktop/onionshare/resources/locale/uk.json b/desktop/onionshare/resources/locale/uk.json index 03c034dc..816c2363 100644 --- a/desktop/onionshare/resources/locale/uk.json +++ b/desktop/onionshare/resources/locale/uk.json @@ -82,11 +82,11 @@ "gui_url_label_stay_open": "Це надсилання не припинятиметься автоматично.", "gui_url_label_onetime": "Це надсилання не припинятиметься після першого виконання.", "gui_url_label_onetime_and_persistent": "Це надсилання не припинятиметься автоматично.

Кожне наступне надсилання використовує ту ж адресу. (Для використання одноразової адреси, вимкніть \"Використовувати постійну адресу\" в параметрах.)", - "gui_status_indicator_share_stopped": "Готово до надсилання", + "gui_status_indicator_share_stopped": "Зупинено", "gui_status_indicator_share_working": "Запуск…", "gui_status_indicator_share_scheduled": "Заплановано…", "gui_status_indicator_share_started": "Надсилання", - "gui_status_indicator_receive_stopped": "Готово до отримання", + "gui_status_indicator_receive_stopped": "Зупинено", "gui_status_indicator_receive_working": "Початок…", "gui_status_indicator_receive_scheduled": "Заплановано…", "gui_status_indicator_receive_started": "Отримання", @@ -186,7 +186,7 @@ "gui_status_indicator_chat_scheduled": "Заплановано…", "gui_status_indicator_chat_started": "Спілкування", "gui_status_indicator_chat_working": "Запуск…", - "gui_status_indicator_chat_stopped": "Готовий до спілкування", + "gui_status_indicator_chat_stopped": "Зупинено", "gui_settings_theme_dark": "Темна", "gui_settings_theme_light": "Світла", "gui_settings_theme_auto": "Автоматична", diff --git a/desktop/onionshare/resources/locale/vi.json b/desktop/onionshare/resources/locale/vi.json index 67b1140b..5ae178d1 100644 --- a/desktop/onionshare/resources/locale/vi.json +++ b/desktop/onionshare/resources/locale/vi.json @@ -131,15 +131,15 @@ "gui_url_instructions": "Đầu tiên, hãy gửi địa chỉ OnionShare bên dưới:", "gui_url_instructions_public_mode": "Gửi địa chỉ OnionShare bên dưới:", "gui_client_auth_instructions": "Tiếp theo, gửi khóa key riêng tư để cho phép truy cập vào dịch vụ OnionShare của bạn:", - "gui_status_indicator_share_stopped": "Sẵn sàng chia sẻ", + "gui_status_indicator_share_stopped": "Đã dừng", "gui_status_indicator_share_working": "Đang bắt đầu…", "gui_status_indicator_share_scheduled": "Lên kế hoạch…", "gui_status_indicator_share_started": "Chia sẻ", - "gui_status_indicator_receive_stopped": "Sẵn sàng nhận", + "gui_status_indicator_receive_stopped": "Đã dừng", "gui_status_indicator_receive_working": "Đang bắt đầu…", "gui_status_indicator_receive_scheduled": "Lên kế hoạch…", "gui_status_indicator_receive_started": "Đang nhận", - "gui_status_indicator_chat_stopped": "Sẵn sàng chat", + "gui_status_indicator_chat_stopped": "Đã dừng", "gui_status_indicator_chat_working": "Đang bắt đầu…", "gui_status_indicator_chat_scheduled": "Lên kế hoạch…", "gui_status_indicator_chat_started": "Chat hội thoại", diff --git a/desktop/onionshare/resources/locale/zh_Hant.json b/desktop/onionshare/resources/locale/zh_Hant.json index 012115c8..ce23e628 100644 --- a/desktop/onionshare/resources/locale/zh_Hant.json +++ b/desktop/onionshare/resources/locale/zh_Hant.json @@ -76,10 +76,10 @@ "gui_url_label_stay_open": "此次分享不會自動停止。", "gui_url_label_onetime": "此次分享將在第一個任務完成後停止。", "gui_url_label_onetime_and_persistent": "這次分享不會自動停止。

隨後的所有分享序列將會繼續使用相同的地址。(如要使用一次性地址,請在設定裡關掉\"使用永久地址\"的選項。)", - "gui_status_indicator_share_stopped": "準備就緒", + "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": "{}個檔案, {}", @@ -237,7 +237,7 @@ "gui_receive_url_public_description": "任何人取得此 OnionShare 地址後,就可以透過 Tor 瀏覽器 上載 檔案到您的電腦: ", "gui_status_indicator_chat_working": "啟動…", "gui_status_indicator_chat_scheduled": "已排程…", - "gui_status_indicator_chat_stopped": "準備聊天", + "gui_status_indicator_chat_stopped": "已停止", "gui_client_auth_instructions": "接著發送私鑰以便存取 OnionShare 服務:", "gui_settings_theme_dark": "深色", "mode_settings_receive_disable_text_checkbox": "關閉提交文字", From 92dbd7e442d5aea2335d29e3b924418c32b282a6 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Wed, 19 Feb 2025 07:04:45 +1100 Subject: [PATCH 10/10] Go back to expecting moat-bridges after captcha submission --- desktop/onionshare/moat_dialog.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/desktop/onionshare/moat_dialog.py b/desktop/onionshare/moat_dialog.py index 43354d32..428b5c91 100644 --- a/desktop/onionshare/moat_dialog.py +++ b/desktop/onionshare/moat_dialog.py @@ -289,7 +289,7 @@ class MoatThread(QtCore.QThread): self.bridgedb_error.emit() return if moat_res["data"][0]["type"] != "moat-challenge": - self.common.log("MoatThread", "run", f"type != moat-challange") + self.common.log("MoatThread", "run", f"type != moat-challenge") self.bridgedb_error.emit() return @@ -351,8 +351,8 @@ class MoatThread(QtCore.QThread): self.captcha_error.emit(errors) return - if moat_res["data"][0]["type"] != "moat-challenge": - self.common.log("MoatThread", "run", f"type != moat-challenge") + if moat_res["data"][0]["type"] != "moat-bridges": + self.common.log("MoatThread", "run", f"type != moat-bridges") self.bridgedb_error.emit() return