From ee8c7c584e9ffc32f00886e67de7f909f6b2e3c1 Mon Sep 17 00:00:00 2001 From: Norbel AMBANUMBEN Date: Wed, 2 Oct 2024 08:59:37 +0100 Subject: [PATCH 1/9] feat: add support for updating multiplatform projects from the translation source --- convert-from-app-string.py | 67 ++++++++++++++++++++++++++ update_languages_kmp.sh | 96 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 163 insertions(+) create mode 100644 convert-from-app-string.py create mode 100755 update_languages_kmp.sh diff --git a/convert-from-app-string.py b/convert-from-app-string.py new file mode 100644 index 0000000..14a6bbe --- /dev/null +++ b/convert-from-app-string.py @@ -0,0 +1,67 @@ +import argparse +import json +import csv +import sys +import re +import xml.etree.ElementTree as ET + +assert sys.version_info >= (3, 6), "Python >= 3.6 is required" + +def parse_args(): + p = argparse.ArgumentParser(description='translations: CSV to KEYVALUEJSON') + p.add_argument('--source', metavar='PATH', help='path to multiplatform source', required=True) + p.add_argument('--destination', metavar='PATH', help='path to multiplatform source', required=True) + p.add_argument('--json', metavar='PATH', help='path to multiplatform source', required=True) + p.add_argument('--lang', metavar='STRING', help='language', required=True) + opt = p.parse_args() + return opt + +def load_json(in_path): + with open(in_path) as in_file: + return json.load(in_file) + +def load_xml_keys(in_path): + tree = ET.parse(in_path) + root = tree.getroot() + result = {} + for string in root.findall('string'): + key = string.get('name') + value = string.text + result[key] = value + return result + +def dict_to_android_xml(d, out_path): + resources = ET.Element('resources') + + comment = ET.Comment('This file is generated from https://github.com/ooni/translations. Please do not modify unless you know what youre doing') + resources.insert(0, comment) + + for key, text in d.items(): + key = key.replace('.', '_') + text = text.replace("&", "&") + text = text.replace('"', '\"') + text = text.replace("'", "\'") + text = text.replace("\n", "\\n") + text = re.sub(r'([^\\])\'|^\'', '\g<1>\\\'', text) + text = re.sub(r'([^\\])\"|^\"', '\g<1>\\\"', text) + string_element = ET.SubElement(resources, 'string', name=key) + string_element.text = text + + tree = ET.ElementTree(resources) + tree.write(out_path, encoding='utf-8', xml_declaration=True) + +def main(): + opt = parse_args() + source_keys = load_xml_keys(opt.source).keys() + json_data = load_json(opt.json) + + filtered_data = {} + for key, text in json_data.items(): + key = key.replace('.', '_') + if key in source_keys: + filtered_data[key] = text + + dict_to_android_xml(filtered_data, opt.destination) + +if __name__ == "__main__": + main() diff --git a/update_languages_kmp.sh b/update_languages_kmp.sh new file mode 100755 index 0000000..34b40eb --- /dev/null +++ b/update_languages_kmp.sh @@ -0,0 +1,96 @@ +#!/bin/bash +set -e + +source utils.sh + +app=${1:-"probe-mobile"} + +validate_app_param $app + +PROJDIR="../probe-multiplatform" + +if [ ! -d ${PROJDIR}/composeApp/src/commonMain/composeResources ];then + echo "check your PROJDIR variable, it should be the directory where you cloned https://github.com/ooni/probe-multiplatform" + exit 1 +fi + +if [ "$app" != "probe-mobile" ] && [ ! -d ${PROJDIR}/composeApp/src/ooniMain/composeResources/values/ ];then + echo "Check your current branch, it should contain the ooni res directory" + exit 1 +fi + +if [ "$app" != "news-media-scan" ] && [ ! -d ${PROJDIR}/composeApp/src/dwMain/composeResources/values/ ];then + echo "Check your current branch, it should contain the dw res directory" + exit 1 +fi + +source supported_languages_mobile.sh $app + +# ./update-translations.sh $app + +## We want to avoid copying unrequired strings. +## Read `${PROJDIR}/composeApp/src/commonMain/composeResources/values/strings-common.xml` and extract all the keys. +## Then, for each language, read the corresponding `strings.xml` and remove all the keys that are not in the common keys. +## Finally, copy the resulting `strings.xml` to the destination directory. + +## loop through the languages + +for language in ${SUPPORTED_LANGUAGES[@]};do + + lang=$(basename ${language} | sed 's/zh_CN/zh_rCN/' | sed 's/zh_TW/zh_rTW/' | sed 's/pt_BR/pt_rBR/' | tr '_' '-' ) + echo "Processing language $lang" + + if [ "$app" == "probe-mobile" ];then + # OONI Resources + output_dir=${PROJDIR}/composeApp/src/ooniMain/composeResources/values-${lang}/ + + # Common Resources + output_file=${output_dir}/strings-common.xml + + mkdir -p $(dirname ${output_file}) + + python convert-from-app-string.py \ + --source ${PROJDIR}/composeApp/src/commonMain/composeResources/values/strings-common.xml \ + --json probe-mobile/${language}/strings.json \ + --destination ${output_file} \ + --lang ${language} + + # Common Resources + output_file=${output_dir}/strings-organization.xml + + python convert-from-app-string.py \ + --source ${PROJDIR}/composeApp/src/ooniMain/composeResources/values/strings-organization.xml \ + --json probe-mobile/${language}/strings.json \ + --destination ${output_file} \ + --lang ${language} + + fi + + if [ "$app" == "news-media-scan" ];then + # DW Resources + output_dir=${PROJDIR}/composeApp/src/dwMain/composeResources/values-${lang}/ + + # Common Resources + output_file=${output_dir}/strings-common.xml + + mkdir -p $(dirname ${output_file}) + + mkdir -p ${PROJDIR}/composeApp/src/commonMain/composeResources/values-${lang}/ + + python convert-from-app-string.py \ + --source ${PROJDIR}/composeApp/src/commonMain/composeResources/values/strings-common.xml \ + --json probe-mobile/${language}/strings.json \ + --destination ${output_file} \ + --lang ${language} + + # Common Resources + output_file=${output_dir}/strings-organization.xml + + python convert-from-app-string.py \ + --source ${PROJDIR}/composeApp/src/dwMain/composeResources/values/strings-organization.xml \ + --json probe-mobile/${language}/strings.json \ + --destination ${output_file} \ + --lang ${language} + fi + +done \ No newline at end of file From 610f121fbe67b704d0f9021052ccb74a54349d1d Mon Sep 17 00:00:00 2001 From: Norbel AMBANUMBEN Date: Tue, 29 Oct 2024 12:09:27 +0100 Subject: [PATCH 2/9] update localization strings --- convert-from-app-string.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/convert-from-app-string.py b/convert-from-app-string.py index 14a6bbe..ac218ad 100644 --- a/convert-from-app-string.py +++ b/convert-from-app-string.py @@ -44,6 +44,37 @@ def dict_to_android_xml(d, out_path): text = text.replace("\n", "\\n") text = re.sub(r'([^\\])\'|^\'', '\g<1>\\\'', text) text = re.sub(r'([^\\])\"|^\"', '\g<1>\\\"', text) + if key == "Dashboard_Runv2_Overview_Description": + text = text.replace("\\n\\n%s", "") + # replace first `%s` with `%1$s` and second `%s` with `%2$s` + text = text.replace("%s", "%1$s", 1) + text = text.replace("%s", "%2$s", 1) + + if key == "Dashboard_Experimental_Overview_Paragraph": + # replace first `{experimental_test_list}` with `%1$s` + text = text.replace("{experimental_test_list}", "%1$s", 1) + + if key == "Settings_Websites_Categories_Description": + # replace first `{experimental_test_list}` with `%1$s` + text = text.replace("{Count}", "%1$s", 1) + + if key == "Modal_ResultsNotUploaded_Uploading": + # replace first `{experimental_test_list}` with `%1$s` + text = text.replace("{testNumber}", "%1$s", 1) + + if key == "Modal_ReRun_Websites_Title": + # replace first `{experimental_test_list}` with `%1$s` + text = text.replace("{websitesNumber}", "%1$s", 1) + + if key == "Modal_UploadFailed_Paragraph": + # replace first `{experimental_test_list}` with `%1$s` + text = text.replace("{numberFailed}", "%1$s", 1) + text = text.replace("{totalUploads}", "%2$s", 1) + + if key == "Settings_AutomatedTesting_RunAutomatically_Number": + # replace first `{experimental_test_list}` with `%1$s` + text = text.replace("{testsNumber}", "%1$s", 1) + string_element = ET.SubElement(resources, 'string', name=key) string_element.text = text From 2eedcb3efb123148bba14f7395f2abc59ab2010f Mon Sep 17 00:00:00 2001 From: Norbel AMBANUMBEN Date: Tue, 29 Oct 2024 12:42:03 +0100 Subject: [PATCH 3/9] chore update translations --- convert-from-app-string.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/convert-from-app-string.py b/convert-from-app-string.py index ac218ad..99645ab 100644 --- a/convert-from-app-string.py +++ b/convert-from-app-string.py @@ -55,11 +55,11 @@ def dict_to_android_xml(d, out_path): text = text.replace("{experimental_test_list}", "%1$s", 1) if key == "Settings_Websites_Categories_Description": - # replace first `{experimental_test_list}` with `%1$s` + # replace first `{Count}` with `%1$s` text = text.replace("{Count}", "%1$s", 1) if key == "Modal_ResultsNotUploaded_Uploading": - # replace first `{experimental_test_list}` with `%1$s` + # replace first `{testNumber}` with `%1$s` text = text.replace("{testNumber}", "%1$s", 1) if key == "Modal_ReRun_Websites_Title": @@ -67,14 +67,18 @@ def dict_to_android_xml(d, out_path): text = text.replace("{websitesNumber}", "%1$s", 1) if key == "Modal_UploadFailed_Paragraph": - # replace first `{experimental_test_list}` with `%1$s` + # replace first `{numberFailed}` with `%1$s` and second `{totalUploads}` with `%2$s` text = text.replace("{numberFailed}", "%1$s", 1) text = text.replace("{totalUploads}", "%2$s", 1) if key == "Settings_AutomatedTesting_RunAutomatically_Number": - # replace first `{experimental_test_list}` with `%1$s` + # replace first `{testsNumber}` with `%1$s` text = text.replace("{testsNumber}", "%1$s", 1) + if key == "Settings_AutomatedTesting_RunAutomatically_DateLast": + # replace first `{testDate}` with `%1$s` + text = text.replace("{testDate}", "%1$s", 1) + string_element = ET.SubElement(resources, 'string', name=key) string_element.text = text From 392c2e4b03e27f40d4f7d54298355686ab15ad7a Mon Sep 17 00:00:00 2001 From: Norbel AMBANUMBEN Date: Wed, 6 Nov 2024 16:18:02 +0100 Subject: [PATCH 4/9] add ability to create ooni tests as run v2 links https://github.com/ooni/probe-multiplatform/issues/173 --- .devcontainer/devcontainer.json | 28 +++++ import-ooni-descriptors.py | 184 ++++++++++++++++++++++++++++++++ import-ooni-descriptors.sh | 11 ++ 3 files changed, 223 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 import-ooni-descriptors.py create mode 100755 import-ooni-descriptors.sh diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..81337bd --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,28 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/python +{ + "name": "Python 3", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/python:1-3.12-bullseye", + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": "pip3 install --user -r requirements.txt", + // Configure tool-specific properties. + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-python.debugpy", + "eamodio.gitlens", + "vscode-icons-team.vscode-icons", + "github.copilot", + "github.copilot-chat" + ] + } + }, + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + "remoteUser": "vscode" +} \ No newline at end of file diff --git a/import-ooni-descriptors.py b/import-ooni-descriptors.py new file mode 100644 index 0000000..9e1f20e --- /dev/null +++ b/import-ooni-descriptors.py @@ -0,0 +1,184 @@ +import argparse +import requests +import json + +BASE_URL = "https://api.dev.ooni.io" + +TESTS = [ + { + "name": "Test_Websites_Fullname", + "short_description": "Dashboard_Websites_Card_Description", + "description": "Dashboard_Websites_Overview_Paragraph", + "nettests": [ + { + "test_name": "web_connectivity", + } + ], + "icon": "OoniWebsites", + "color": "#4c6ef5", + }, + { + "name": "Test_InstantMessaging_Fullname", + "short_description": "Dashboard_InstantMessaging_Card_Description", + "description": "Dashboard_InstantMessaging_Overview_Paragraph", + "nettests": [ + { + "test_name": "whatsapp", + }, + { + "test_name": "telegram", + }, + { + "test_name": "facebook_messenger", + }, + { + "test_name": "signal", + }, + ], + "icon": "OoniInstantMessaging", + "color": "#15aabf", + }, + { + "name": "Test_Circumvention_Fullname", + "short_description": "Dashboard_Circumvention_Card_Description", + "description": "Dashboard_Circumvention_Overview_Paragraph", + "nettests": [ + { + "test_name": "psiphon", + }, + { + "test_name": "tor", + }, + ], + "icon": "OoniCircumvention", + "color": "#e64980", + }, + { + "name": "Test_Performance_Fullname", + "short_description": "Dashboard_Performance_Card_Description", + "description": "Dashboard_Performance_Overview_Paragraph", + "nettests": [ + { + "test_name": "ndt", + }, + { + "test_name": "dash", + }, + { + "test_name": "http_header_field_manipulation", + }, + { + "test_name": "http_invalid_request_line", + }, + ], + "icon": "OoniPerformance", + "color": "#be4bdb", + }, + { + "name": "Test_Experimental_Fullname", + "short_description": "Dashboard_Experimental_Card_Description", + "description": "Dashboard_Experimental_Overview_Paragraph", + "nettests": [ + { + "test_name": "stunreachability", + }, + { + "test_name": "openvpn", + }, + { + "test_name": "vanilla_tor", + }, + ], + "icon": "OoniExperimental", + "color": "#495057", + }, +] + +def load_json(in_path): + with open(in_path) as in_file: + return json.load(in_file) + +def get_item_intl(key, supported_languages): + item_intl = {} + for lang in supported_languages: + item_intl[lang] = get_string_for_label(key, lang) + return item_intl + +def get_string_for_label(label,lang="en"): + label = label.replace("_", ".") + json_data = load_json(f"probe-mobile/{lang}/strings.json") + return json_data[label] + + +def set_auth_token(token): + global AUTH_TOKEN + AUTH_TOKEN = token + +def create_link(name, name_intl, short_description, short_description_intl, description, description_intl, expiration_date, nettests,icon,color, author="norbel@ooni.org"): + url = f"{BASE_URL}/api/v2/oonirun/links" + headers = { + "Authorization": f"Bearer {AUTH_TOKEN}", + "Content-Type": "application/json" + } + data = { + "name": name, + "name_intl": name_intl, + "short_description": short_description, + "short_description_intl": short_description_intl, + "description": description, + "description_intl": description_intl, + "author": author, + "icon": icon, + "color": color, + "nettests": nettests, + "expiration_date": expiration_date + } + response = requests.post(url, headers=headers, data=json.dumps(data)) + return response.json() + +def upload_ooni_tests(supported_languages): + for descriptor in TESTS: + + link_name = get_string_for_label(descriptor["name"]) + name_intl = get_item_intl(descriptor["name"], supported_languages) + + description = get_string_for_label(descriptor["description"]) + description_intl = get_item_intl(descriptor["description"], supported_languages) + + short_description = get_string_for_label(descriptor["short_description"]) + short_description_intl = get_item_intl(descriptor["short_description"], supported_languages) + + nettests = descriptor["nettests"] + icon = descriptor["icon"] + color = descriptor["color"] + + expiration_date = "4000-01-01T00:00:00.000000Z" + + response = create_link( + name=link_name, + name_intl=name_intl, + short_description=short_description, + short_description_intl=short_description_intl, + description=description, + description_intl=description_intl, + nettests=nettests, + icon=icon, + color=color, + expiration_date=expiration_date, + ) + print(f"Uploaded {link_name}: {response}") + +def main(): + set_auth_token("eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYmYiOjE3MzA4NTk1OTgsImlhdCI6MTczMDg1OTU5OCwiZXhwIjoxNzQ2NDExNTk4LCJhdWQiOiJ1c2VyX2F1dGgiLCJsb2dpbl90aW1lIjoxNzMwODU5NTk4LCJyb2xlIjoiYWRtaW4iLCJhY2NvdW50X2lkIjoiYmU3YmRlNGU3NTAxOTc3MTMzNzhjY2U1M2E0NzUyYjEiLCJlbWFpbF9hZGRyZXNzIjoibm9yYmVsQG9vbmkub3JnIn0.zVs2UJE11HgSUJ5bVbvlZzARTXX5XCF2MWhD-7hZBdo") + opt = parse_args() + upload_ooni_tests(supported_languages=opt.langs) + + +def parse_args(): + p = argparse.ArgumentParser(description='') + p.add_argument('--langs', metavar='str', help='language', nargs='*', required=True) + opt = p.parse_args() + return opt + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/import-ooni-descriptors.sh b/import-ooni-descriptors.sh new file mode 100755 index 0000000..9c1706a --- /dev/null +++ b/import-ooni-descriptors.sh @@ -0,0 +1,11 @@ +#!/bin/bash +set -e + +source utils.sh + +app=${1:-"probe-mobile"} + +source supported_languages_mobile.sh $app + +python import-ooni-descriptors.py \ + --langs ${SUPPORTED_LANGUAGES[@]} \ No newline at end of file From 179f5165688dc42880ec0d7ffc25966e2fb87fac Mon Sep 17 00:00:00 2001 From: Norbel AMBANUMBEN Date: Thu, 5 Dec 2024 14:36:06 +0100 Subject: [PATCH 5/9] chore: update translations --- .tx/config | 18 - convert-from-app-string.py | 11 +- json-to-android-xml.py | 1 - news-media-scan/am/description.xlf | 46 ++ news-media-scan/am/strings.json | 19 + news-media-scan/am/strings.xml | 360 ++++++++++++++ news-media-scan/ar/description.xlf | 37 ++ news-media-scan/ar/strings.json | 19 + news-media-scan/ar/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/bg/description.xlf | 46 ++ news-media-scan/bg/strings.json | 19 + news-media-scan/de/description.xlf | 44 ++ news-media-scan/de/strings.json | 19 + news-media-scan/de/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/en/strings.xml | 106 ++++ news-media-scan/es/description.xlf | 42 ++ news-media-scan/es/strings.json | 19 + news-media-scan/es/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/fa/description.xlf | 39 ++ news-media-scan/fa/strings.json | 19 + news-media-scan/fa/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/fr/description.xlf | 42 ++ news-media-scan/fr/strings.json | 19 + news-media-scan/fr/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/ha/description.xlf | 48 ++ news-media-scan/ha/strings.json | 19 + news-media-scan/hi/description.xlf | 49 ++ news-media-scan/hi/strings.json | 19 + news-media-scan/hi/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/hr/description.xlf | 44 ++ news-media-scan/hr/strings.json | 19 + news-media-scan/id/description.xlf | 39 ++ news-media-scan/id/strings.json | 19 + news-media-scan/id/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/pl/description.xlf | 46 ++ news-media-scan/pl/strings.json | 19 + news-media-scan/pl/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/pt_BR/description.xlf | 42 ++ news-media-scan/pt_BR/strings.json | 19 + news-media-scan/pt_BR/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/ro/description.xlf | 48 ++ news-media-scan/ro/strings.json | 19 + news-media-scan/ro/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/ru/description.xlf | 42 ++ news-media-scan/ru/strings.json | 19 + news-media-scan/ru/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/sq/description.xlf | 48 ++ news-media-scan/sq/strings.json | 19 + news-media-scan/sq/strings.xml | 639 +++++++++++++++++++++++++ news-media-scan/tr/description.xlf | 42 ++ news-media-scan/tr/strings.json | 19 + news-media-scan/tr/strings.xml | 639 +++++++++++++++++++++++++ probe-mobile/ar/Localizable.strings | 55 +++ probe-mobile/ar/strings.json | 57 ++- probe-mobile/ar/strings.xml | 55 +++ probe-mobile/as/Localizable.strings | 55 +++ probe-mobile/as/strings.json | 57 ++- probe-mobile/as/strings.xml | 55 +++ probe-mobile/be/Localizable.strings | 59 ++- probe-mobile/be/strings.json | 61 ++- probe-mobile/be/strings.xml | 59 ++- probe-mobile/be_BY/Localizable.strings | 55 +++ probe-mobile/be_BY/strings.json | 57 ++- probe-mobile/be_BY/strings.xml | 55 +++ probe-mobile/bn/Localizable.strings | 57 ++- probe-mobile/bn/strings.json | 59 ++- probe-mobile/bn/strings.xml | 57 ++- probe-mobile/br/Localizable.strings | 55 +++ probe-mobile/br/strings.json | 57 ++- probe-mobile/br/strings.xml | 55 +++ probe-mobile/bs/Localizable.strings | 55 +++ probe-mobile/bs/strings.json | 57 ++- probe-mobile/bs/strings.xml | 55 +++ probe-mobile/ca/Localizable.strings | 55 +++ probe-mobile/ca/strings.json | 57 ++- probe-mobile/ca/strings.xml | 55 +++ probe-mobile/cs/Localizable.strings | 57 ++- probe-mobile/cs/strings.json | 59 ++- probe-mobile/cs/strings.xml | 57 ++- probe-mobile/de/Localizable.strings | 55 +++ probe-mobile/de/strings.json | 57 ++- probe-mobile/de/strings.xml | 55 +++ probe-mobile/el/Localizable.strings | 55 +++ probe-mobile/el/strings.json | 57 ++- probe-mobile/el/strings.xml | 55 +++ probe-mobile/en/Localizable.strings | 106 ++++ probe-mobile/en/strings.csv | 240 +++++++--- probe-mobile/en/strings.json | 108 ++++- probe-mobile/en/strings.xml | 106 ++++ probe-mobile/es/Localizable.strings | 99 +++- probe-mobile/es/strings.json | 101 +++- probe-mobile/es/strings.xml | 99 +++- probe-mobile/fa/Localizable.strings | 55 +++ probe-mobile/fa/strings.json | 57 ++- probe-mobile/fa/strings.xml | 55 +++ probe-mobile/fi/Localizable.strings | 55 +++ probe-mobile/fi/strings.json | 57 ++- probe-mobile/fi/strings.xml | 55 +++ probe-mobile/fil/Localizable.strings | 55 +++ probe-mobile/fil/strings.json | 57 ++- probe-mobile/fil/strings.xml | 55 +++ probe-mobile/fr/Localizable.strings | 55 +++ probe-mobile/fr/strings.json | 57 ++- probe-mobile/fr/strings.xml | 55 +++ probe-mobile/gl/Localizable.strings | 55 +++ probe-mobile/gl/strings.json | 57 ++- probe-mobile/gl/strings.xml | 55 +++ probe-mobile/hi/Localizable.strings | 55 +++ probe-mobile/hi/strings.json | 57 ++- probe-mobile/hi/strings.xml | 55 +++ probe-mobile/id/Localizable.strings | 55 +++ probe-mobile/id/strings.json | 57 ++- probe-mobile/id/strings.xml | 55 +++ probe-mobile/ig/Localizable.strings | 55 +++ probe-mobile/ig/strings.json | 57 ++- probe-mobile/ig/strings.xml | 55 +++ probe-mobile/is/Localizable.strings | 55 +++ probe-mobile/is/strings.json | 57 ++- probe-mobile/is/strings.xml | 55 +++ probe-mobile/it/Localizable.strings | 55 +++ probe-mobile/it/strings.json | 57 ++- probe-mobile/it/strings.xml | 55 +++ probe-mobile/ja/Localizable.strings | 55 +++ probe-mobile/ja/strings.json | 57 ++- probe-mobile/ja/strings.xml | 55 +++ probe-mobile/km/Localizable.strings | 55 +++ probe-mobile/km/strings.json | 57 ++- probe-mobile/km/strings.xml | 55 +++ probe-mobile/kn/Localizable.strings | 55 +++ probe-mobile/kn/strings.json | 57 ++- probe-mobile/kn/strings.xml | 55 +++ probe-mobile/ko/Localizable.strings | 55 +++ probe-mobile/ko/strings.json | 57 ++- probe-mobile/ko/strings.xml | 55 +++ probe-mobile/mk/Localizable.strings | 55 +++ probe-mobile/mk/strings.json | 57 ++- probe-mobile/mk/strings.xml | 55 +++ probe-mobile/ms/Localizable.strings | 55 +++ probe-mobile/ms/strings.json | 57 ++- probe-mobile/ms/strings.xml | 55 +++ probe-mobile/my/Localizable.strings | 55 +++ probe-mobile/my/strings.json | 57 ++- probe-mobile/my/strings.xml | 55 +++ probe-mobile/nb/Localizable.strings | 55 +++ probe-mobile/nb/strings.json | 57 ++- probe-mobile/nb/strings.xml | 55 +++ probe-mobile/nd/Localizable.strings | 55 +++ probe-mobile/nd/strings.json | 57 ++- probe-mobile/nd/strings.xml | 55 +++ probe-mobile/ne/Localizable.strings | 55 +++ probe-mobile/ne/strings.json | 57 ++- probe-mobile/ne/strings.xml | 55 +++ probe-mobile/nl/Localizable.strings | 55 +++ probe-mobile/nl/strings.json | 57 ++- probe-mobile/nl/strings.xml | 55 +++ probe-mobile/ny/Localizable.strings | 55 +++ probe-mobile/ny/strings.json | 57 ++- probe-mobile/ny/strings.xml | 55 +++ probe-mobile/ny_MW/Localizable.strings | 55 +++ probe-mobile/ny_MW/strings.json | 57 ++- probe-mobile/ny_MW/strings.xml | 55 +++ probe-mobile/pa_IN/Localizable.strings | 55 +++ probe-mobile/pa_IN/strings.json | 57 ++- probe-mobile/pa_IN/strings.xml | 55 +++ probe-mobile/pl/Localizable.strings | 55 +++ probe-mobile/pl/strings.json | 57 ++- probe-mobile/pl/strings.xml | 55 +++ probe-mobile/pt_BR/Localizable.strings | 55 +++ probe-mobile/pt_BR/strings.json | 57 ++- probe-mobile/pt_BR/strings.xml | 55 +++ probe-mobile/pt_MZ/Localizable.strings | 55 +++ probe-mobile/pt_MZ/strings.json | 57 ++- probe-mobile/pt_MZ/strings.xml | 55 +++ probe-mobile/ro/Localizable.strings | 55 +++ probe-mobile/ro/strings.json | 57 ++- probe-mobile/ro/strings.xml | 55 +++ probe-mobile/ru/Localizable.strings | 55 +++ probe-mobile/ru/strings.json | 57 ++- probe-mobile/ru/strings.xml | 55 +++ probe-mobile/sk/Localizable.strings | 55 +++ probe-mobile/sk/strings.json | 57 ++- probe-mobile/sk/strings.xml | 55 +++ probe-mobile/sl/Localizable.strings | 55 +++ probe-mobile/sl/strings.json | 57 ++- probe-mobile/sl/strings.xml | 55 +++ probe-mobile/sn/Localizable.strings | 55 +++ probe-mobile/sn/strings.json | 57 ++- probe-mobile/sn/strings.xml | 55 +++ probe-mobile/sq/Localizable.strings | 55 +++ probe-mobile/sq/strings.json | 57 ++- probe-mobile/sq/strings.xml | 55 +++ probe-mobile/ss/Localizable.strings | 55 +++ probe-mobile/ss/strings.json | 57 ++- probe-mobile/ss/strings.xml | 55 +++ probe-mobile/sv/Localizable.strings | 55 +++ probe-mobile/sv/strings.json | 57 ++- probe-mobile/sv/strings.xml | 55 +++ probe-mobile/sw/Localizable.strings | 55 +++ probe-mobile/sw/strings.json | 57 ++- probe-mobile/sw/strings.xml | 55 +++ probe-mobile/th/Localizable.strings | 55 +++ probe-mobile/th/strings.json | 57 ++- probe-mobile/th/strings.xml | 55 +++ probe-mobile/tk_TM/Localizable.strings | 55 +++ probe-mobile/tk_TM/strings.json | 57 ++- probe-mobile/tk_TM/strings.xml | 55 +++ probe-mobile/tr/Localizable.strings | 55 +++ probe-mobile/tr/strings.json | 57 ++- probe-mobile/tr/strings.xml | 55 +++ probe-mobile/tum/Localizable.strings | 55 +++ probe-mobile/tum/strings.json | 57 ++- probe-mobile/tum/strings.xml | 55 +++ probe-mobile/uk/Localizable.strings | 55 +++ probe-mobile/uk/strings.json | 57 ++- probe-mobile/uk/strings.xml | 55 +++ probe-mobile/ur/Localizable.strings | 55 +++ probe-mobile/ur/strings.json | 57 ++- probe-mobile/ur/strings.xml | 55 +++ probe-mobile/vi/Localizable.strings | 55 +++ probe-mobile/vi/strings.json | 57 ++- probe-mobile/vi/strings.xml | 55 +++ probe-mobile/zh_CN/Localizable.strings | 81 +++- probe-mobile/zh_CN/strings.json | 83 +++- probe-mobile/zh_CN/strings.xml | 81 +++- probe-mobile/zh_HK/Localizable.strings | 55 +++ probe-mobile/zh_HK/strings.json | 57 ++- probe-mobile/zh_HK/strings.xml | 55 +++ probe-mobile/zh_TW/Localizable.strings | 55 +++ probe-mobile/zh_TW/strings.json | 57 ++- probe-mobile/zh_TW/strings.xml | 55 +++ probe-mobile/zu_ZA/Localizable.strings | 55 +++ probe-mobile/zu_ZA/strings.json | 57 ++- probe-mobile/zu_ZA/strings.xml | 55 +++ update_languages_kmp.sh | 2 +- 234 files changed, 20249 insertions(+), 270 deletions(-) create mode 100644 news-media-scan/am/description.xlf create mode 100644 news-media-scan/am/strings.json create mode 100644 news-media-scan/am/strings.xml create mode 100644 news-media-scan/ar/description.xlf create mode 100644 news-media-scan/ar/strings.json create mode 100644 news-media-scan/ar/strings.xml create mode 100644 news-media-scan/bg/description.xlf create mode 100644 news-media-scan/bg/strings.json create mode 100644 news-media-scan/de/description.xlf create mode 100644 news-media-scan/de/strings.json create mode 100644 news-media-scan/de/strings.xml create mode 100644 news-media-scan/es/description.xlf create mode 100644 news-media-scan/es/strings.json create mode 100644 news-media-scan/es/strings.xml create mode 100644 news-media-scan/fa/description.xlf create mode 100644 news-media-scan/fa/strings.json create mode 100644 news-media-scan/fa/strings.xml create mode 100644 news-media-scan/fr/description.xlf create mode 100644 news-media-scan/fr/strings.json create mode 100644 news-media-scan/fr/strings.xml create mode 100644 news-media-scan/ha/description.xlf create mode 100644 news-media-scan/ha/strings.json create mode 100644 news-media-scan/hi/description.xlf create mode 100644 news-media-scan/hi/strings.json create mode 100644 news-media-scan/hi/strings.xml create mode 100644 news-media-scan/hr/description.xlf create mode 100644 news-media-scan/hr/strings.json create mode 100644 news-media-scan/id/description.xlf create mode 100644 news-media-scan/id/strings.json create mode 100644 news-media-scan/id/strings.xml create mode 100644 news-media-scan/pl/description.xlf create mode 100644 news-media-scan/pl/strings.json create mode 100644 news-media-scan/pl/strings.xml create mode 100644 news-media-scan/pt_BR/description.xlf create mode 100644 news-media-scan/pt_BR/strings.json create mode 100644 news-media-scan/pt_BR/strings.xml create mode 100644 news-media-scan/ro/description.xlf create mode 100644 news-media-scan/ro/strings.json create mode 100644 news-media-scan/ro/strings.xml create mode 100644 news-media-scan/ru/description.xlf create mode 100644 news-media-scan/ru/strings.json create mode 100644 news-media-scan/ru/strings.xml create mode 100644 news-media-scan/sq/description.xlf create mode 100644 news-media-scan/sq/strings.json create mode 100644 news-media-scan/sq/strings.xml create mode 100644 news-media-scan/tr/description.xlf create mode 100644 news-media-scan/tr/strings.json create mode 100644 news-media-scan/tr/strings.xml diff --git a/.tx/config b/.tx/config index 2f85828..2ee1fa9 100644 --- a/.tx/config +++ b/.tx/config @@ -24,21 +24,3 @@ file_filter = news-media-scan//description.xlf source_file = news-media-scan/en/description.xlf source_lang = en type = XLIFF - -[o:otf:p:ooni-explorer:r:website] -file_filter = explorer//strings.json -source_file = explorer/en/strings.json -source_lang = en -type = KEYVALUEJSON - -[o:otf:p:ooni-run:r:website] -file_filter = run//strings.json -source_file = run/en/strings.json -source_lang = en -type = KEYVALUEJSON - -[o:otf:p:ooni-test-lists-editor:r:website] -file_filter = test-lists-editor//strings.json -source_file = test-lists-editor/en/strings.json -source_lang = en -type = KEYVALUEJSON diff --git a/convert-from-app-string.py b/convert-from-app-string.py index 99645ab..523cdae 100644 --- a/convert-from-app-string.py +++ b/convert-from-app-string.py @@ -38,12 +38,6 @@ def dict_to_android_xml(d, out_path): for key, text in d.items(): key = key.replace('.', '_') - text = text.replace("&", "&") - text = text.replace('"', '\"') - text = text.replace("'", "\'") - text = text.replace("\n", "\\n") - text = re.sub(r'([^\\])\'|^\'', '\g<1>\\\'', text) - text = re.sub(r'([^\\])\"|^\"', '\g<1>\\\"', text) if key == "Dashboard_Runv2_Overview_Description": text = text.replace("\\n\\n%s", "") # replace first `%s` with `%1$s` and second `%s` with `%2$s` @@ -79,10 +73,15 @@ def dict_to_android_xml(d, out_path): # replace first `{testDate}` with `%1$s` text = text.replace("{testDate}", "%1$s", 1) + if key == "Modal_EnableNotifications_Paragraph": + # replace `OONI Probe` with `News Media Scan` + text = text.replace("OONI Probe", "News Media Scan", 1) + string_element = ET.SubElement(resources, 'string', name=key) string_element.text = text tree = ET.ElementTree(resources) + ET.indent(tree) tree.write(out_path, encoding='utf-8', xml_declaration=True) def main(): diff --git a/json-to-android-xml.py b/json-to-android-xml.py index ea55590..e482311 100644 --- a/json-to-android-xml.py +++ b/json-to-android-xml.py @@ -1,6 +1,5 @@ import argparse import json -import cgi import csv import sys import re diff --git a/news-media-scan/am/description.xlf b/news-media-scan/am/description.xlf new file mode 100644 index 0000000..abde18a --- /dev/null +++ b/news-media-scan/am/description.xlf @@ -0,0 +1,46 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + ኒዊስ ሚዲያ ስካን + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + ባካባቢህ የዜና መገናኛ ዘዴ መታገዱን አጋልጥ + This is limited by Google to 80 characters + + + News Media Scan + ኒዊስ ሚዲያ ስካን + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + ባካባቢህ የዜና መገናኛ ዘዴ መታገዱን አጋልጥ + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + የምትፈልጋቸዉን የዜና ገፆች ማግኘትሕን ወይም መታገዳቸዉን ዕወቅ።የዶቸ ቬለ ኒዊስ ሚዲያ ስካን የሚያስፈልግሕን ግልፅነት ያቀርብልሐል።ቅድመ-ምርመራን በማጋለጥ ለዓለም አቀፍ «የኢንተርኔት ነፃነት» ማሕበረሰብ ጠቃሚ አስተዋፅኦ ታበረክታለሕ። + +ይሕ መተግበሪያ (APP) የዶቸ ቬለ (DW)ና የOONl የቅርብ ትብብር ዉጤት (ምርት) ነዉ። + +ሥለ ዶቸ ቬለ (DW):-ገለልተኛ መረጃ ለነፃ አዕምሮ-ይሕ የDW መለያ ቃል-ኪዳን ነዉ።የጀርመን ዓለም አቀፍ ዜና ማሰራጪያ ገለልተኛ የመገናኛ ዘዴ ኩባንያ እንደመሆኑ፣ በመላዉ ዓለም ለሚገኙ ሰዎች መረጃ ያቀርባል።DW በ32 ቋንቋዎች በሚጠናቀሩ ዝግጅቶቹ በቴሌቪዥን፣ በራዲዮ፣በኢንተርኔትና በማሕበራዊ መገናኛ ዘዴዎች በመላዉ ዓለም የሚገኙ ሰዎችን ያገናኛል። + +ሥለ OONI:-በ2012 (እጎአ) የተመሠረተዉ የኔትወርክ ጣልቃ ገብነት ግልፅ ታዛቢ (Open Observatory of Network Interference-OONI) በመላዉ ዓለም በኢንተርኔት ላይ የሚደረጉ ቅድመ-ምርመራዎችን ለመሰነድ ያልተማከሉ ጥረቶችን ለማበረታት ያለመ፣ ለትርፍ የማይሰራ የሶፍትዌር ፕሮጀክት ነዉ። + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + + +
+
\ No newline at end of file diff --git a/news-media-scan/am/strings.json b/news-media-scan/am/strings.json new file mode 100644 index 0000000..075d61c --- /dev/null +++ b/news-media-scan/am/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "ኒዊስ ሚዲያ ስካን", + "Onboarding.WhatIsOONIProbe.Title": "የዜና ገፆች ታግደዋል?", + "Onboarding.WhatIsOONIProbe.Paragraph": "ሁኔታዉን ለማወቅ ኒዉስ ሚዲያ ስካንን ክፈት።ኒዊስ ሚዲያ ስካን፣ የትም ሐገር ብትሆን ያለሕበትን ሥፍራ የዜና ሁኔታ (መታገድ አለመታገዱን) በግልፅ የሚያሳይ #1 መተግበሪያ ነዉ።ከዚህም በተጨማሪ፣ መተግበሪያዉን በመጠቀም ቅድመ-ምርመራ በዓለም አቀፍ ደረጃ ያለበትን ሁኔታ ለማወቅ ለሚደረገዉ ጥረት ጠቃሚ አስተዋፅኦ ታደርጋለሕ።\n\nበመተግበሪያዉ የምታየዉ ዝርዝር በGitHub በተጠቃሚዉ ማሕበረሰብ የተሰበሰበና የተደረጀ ዝርዝር እንጂ በDW የተጠናቀረ አይደለም።የበርካታ ዓለም አቀፍና ብሔራዊ የዜና መገናኛ ዘዴዎችን ተጨባጭ ደረጃ ይወክላል።", + "Onboarding.ThingsToKnow.Bullet.1": "OONI will openly publish the measurement data you send, along with your network information.", + "Onboarding.ThingsToKnow.Bullet.2": "Anyone monitoring your Internet connection will be able to see you are running News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "You will be testing news websites that might be banned in the country where you currently find yourself.", + "Onboarding.PopQuiz.1.Question": "If someone is monitoring my internet activity, they will see that I am running News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running.", + "Onboarding.PopQuiz.2.Question": "Every time I run News Media Scan, the network data I collect will automatically get published.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings).", + "Onboarding.AutomatedTesting.Paragraph": "To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon\u2019t worry, we\u2019ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time.", + "Onboarding.Crash.Paragraph": "To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team?", + "Dashboard.Websites.Card.Description": "Checks for blocking of news media websites", + "Test.Websites.Fullname": "News Media Websites", + "Settings.About.Label": "ስለ ኒዊስ ሚዲያ ስካን", + "Settings.About.Content.Paragraph": "ይሕ መተግበሪያ (APP) የዶቸ ቬለ (DW)ና የOONl የቅርብ ትብብር ዉጤት (ምርት) ነዉ።\n\nሥለ ዶቸ ቬለ (DW):-ገለልተኛ መረጃ ለነፃ አዕምሮ-ይሕ የDW መለያ ቃል-ኪዳን ነዉ።የጀርመን ዓለም አቀፍ ዜና ማሰራጪያ ገለልተኛ የመገናኛ ዘዴ ኩባንያ እንደመሆኑ፣ በመላዉ ዓለም ለሚገኙ ሰዎች መረጃ ያቀርባል።DW በ32 ቋንቋዎች በሚጠናቀሩ ዝግጅቶቹ በቴሌቪዥን፣ በራዲዮ፣በኢንተርኔትና በማሕበራዊ መገናኛ ዘዴዎች በመላዉ ዓለም የሚገኙ ሰዎችን ያገናኛል።\n\n[ሥለ DW፣ ተጨማሪ መረጃ](https://corporate.dw.com/en/about-dw/s-30688) \n\nሥለ OONI:-በ2012 (እጎአ) የተመሠረተዉ የኔትወርክ ጣልቃ ገብነት ግልፅ ታዛቢ (Open Observatory of Network Interference-OONI) በመላዉ ዓለም በኢንተርኔት ላይ የሚደረጉ ቅድመ-ምርመራዎችን ለመሰነድ ያልተማከሉ ጥረቶችን ለማበረታታት ያለመ፣ ለትርፍ የማይሰራ የሶፍትዌር ፕሮጀክት ነዉ።በመላዉ ዓለም ለሚገኙ [(የOONI)](https://explorer.ooni.org/) ማሕበረሰብ አባላት ምስጋና ይግባቸዉና ከ200 ከሚበልጡ ሐገራት ከአንድ ቢሊዮን የሚበልጥ የኔትወርክ ደረጃ (መለኪያ) ታትሟል።ይሕ የኢንተርኔት ቅድመ-ምርመራ በዓለም አቀፍ ደረጃ ያለበትን ሁኔታ ለማሳየት ብርሐን ፈንጣቂ ነዉ።\n\nከምትጠቀምበት ኔትወርክ መረጃ በመስጠት የኢንተርኔት ነፃነት (ተሟጋቾች) ንቅናቄ አካል ሁን።", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/am/strings.xml b/news-media-scan/am/strings.xml new file mode 100644 index 0000000..a32bab4 --- /dev/null +++ b/news-media-scan/am/strings.xml @@ -0,0 +1,360 @@ + + + ኒዊስ ሚዲያ ስካን + የዜና ገፆች ታግደዋል? + ሁኔታዉን ለማወቅ ኒዉስ ሚዲያ ስካንን ክፈት።ኒዊስ ሚዲያ ስካን፣ የትም ሐገር ብትሆን ያለሕበትን ሥፍራ የዜና ሁኔታ (መታገድ አለመታገዱን) በግልፅ የሚያሳይ #1 መተግበሪያ ነዉ።ከዚህም በተጨማሪ፣ መተግበሪያዉን በመጠቀም ቅድመ-ምርመራ በዓለም አቀፍ ደረጃ ያለበትን ሁኔታ ለማወቅ ለሚደረገዉ ጥረት ጠቃሚ አስተዋፅኦ ታደርጋለሕ።\n\nበመተግበሪያዉ የምታየዉ ዝርዝር በGitHub በተጠቃሚዉ ማሕበረሰብ የተሰበሰበና የተደረጀ ዝርዝር እንጂ በDW የተጠናቀረ አይደለም።የበርካታ ዓለም አቀፍና ብሔራዊ የዜና መገናኛ ዘዴዎችን ተጨባጭ ደረጃ ይወክላል። + Got It + Heads-up! + OONI will openly publish the measurement data you send, along with your network information. + Anyone monitoring your Internet connection will be able to see you are running News Media Scan. + You will be testing news websites that might be banned in the country where you currently find yourself. + I understand + Learn more + Pop Quiz + True + False + Go back + Continue + Question 1/2 + If someone is monitoring my internet activity, they will see that I am running News Media Scan. + Warning + News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running. + Question 2/2 + Every time I run News Media Scan, the network data I collect will automatically get published. + Warning + To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings). + Default Settings + We collect and publish: + Country code (e.g. IT for Italy) + Network information (including Autonomous System Number) + Time & date of testing + We do our best not to publish your IP address or any other potentially personally-identifiable information.\n\nLearn more through [OONI\'s Data Policy](https://ooni.io/about/data-policy/). + Let\'s go + Change defaults + Dashboard + Run + N/A + Run + Last test: + Estimated: + Choose websites + Running: + Estimated time left: + %1$s seconds + Preparing test + Tap card for more + ~%1$ss + Checks for blocking of news media websites + Check whether websites are blocked using OONI\'s [Web Connectivity test](https://ooni.io/nettest/web-connectivity/).\n\nEvery time you tap Run, you test different websites from the Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists.\n\nTo test the sites of your choice, tap the Choose websites button or select categories of sites via the settings of this card. \n\nThis test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.io/world/) and [OONI API](https://api.ooni.io/). + Test your network speed and performance + Measure the speed and performance of your network using the [NDT](https://ooni.io/nettest/ndt/) test.\n\nMeasure video streaming performance using the [DASH](https://ooni.io/nettest/dash/) test.\n\nThese tests consume data depending on your network speed.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.io/world/) and [OONI API](https://api.ooni.io/).\n\nDisclaimer: These tests rely on third party servers. We therefore cannot guarantee that your IP address will not be collected. + Detect middleboxes in your network + Internet Service Providers often use network appliances (middleboxes) for various networking purposes (such as caching). Sometimes these middleboxes are used to implement internet censorship and/or surveillance.\n\nFind middleboxes in your network using OONI\'s [HTTP Invalid Request Line](https://ooni.io/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.io/nettest/http-header-field-manipulation/) tests.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.io/world/) and [OONI API](https://api.ooni.io/). + Test the blocking of instant messaging apps + Check whether [WhatsApp](https://ooni.io/nettest/whatsapp/), [Facebook Messenger](https://ooni.io/nettest/facebook-messenger/) and [Telegram](https://ooni.ionettest/telegram/) are blocked.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.io/world/) and [OONI API](https://api.ooni.io/). + Gbps + Mbps + Kbps + ms + N/A + Unknown + Test Results + Test Results + Tests + Networks + Data Usage + Filter Tests + All Tests + Websites + Middleboxes + Performance + Instant Messaging + No tests have been run yet. Try running one! + %1$s blocked + %1$s blocked + %1$s tested + %1$s tested + Detected + Not detected + Failed + %1$s blocked + %1$s blocked + %1$s accessible + %1$s accessible + Date & Time + Network + Country + Data Usage + Total Runtime + WiFi + Mobile Data + No internet + Tested + Tested + Blocked + Blocked + Website + Websites + Accessible + Accessible + Video + Quality + Upload + Download + Ping + Detected + Not detected + Failed + Tested + Tested + Blocked + Blocked + Accessible + Accessible + App + Apps + Runtime + View log + Data + Copy to clipboard + Accessible + %1$s is accessible. + Likely blocked + %1$s is likely blocked by means of %2$s.\n\nNote: False positives can occur. Learn more [here](https://ooni.io/nettest/web-connectivity/). + Censorship Circumvention + **DNS tampering** + **TCP/IP based blocking** + **HTTP blocking (a blockpage might be served)** + **HTTP blocking (HTTP requests failed)** + Mobile App + OK + Failed + WhatsApp Web + OK + Failed + Registration + OK + Failed + Working + This test successfully connected to WhatsApp\'s endpoints, registration service and web interface (web.whatsapp.com). + Likely blocked + WhatsApp appears to be blocked. + Mobile App + OK + Failed + Telegram Web + OK + Failed + Working + This test successfully connected to Telegram\'s endpoints and web interface (web.telegram.org). + Likely blocked + Telegram appears to be blocked. + TCP connections + OK + Failed + DNS lookups + OK + Failed + Working + This test successfully connected to Facebook\'s endpoints and resolved to Facebook IP addresses. + Likely blocked + Facebook Messenger appears to be blocked. + No middleboxes detected + No network anomaly was detected when communicating with our servers. + Network tampering + Network traffic was manipulated when contacting our control servers.\n\nThis means that there may be a middlebox in your network, which could be responsible for censorship and/or surveillance. + No middleboxes detected + No network anomaly was detected when communicating with our servers. + Network tampering + Network traffic was manipulated when contacting our control servers.\n\nThis means that there may be a middlebox in your network, which could be responsible for censorship and/or surveillance. + You Sent + You Received + Upload + Download + Ping + Server + Packet Loss + Out of Order + Average Ping + Max Ping + MSS + Timeouts + You can stream up to %1$s without buffering. + Median Bitrate + Playout Delay + Feed + Feed + OK + Cancel + Delete + Error + Unable to run the test. Please check your internet connectivity. + Unable to download URL list. Please try again. + Notification permissions are required. Please enable them in the Settings of your phone and then enable them in your OONI Probe app. + Go to the Settings + This screen is locked while a test is running. + Results not uploaded + Some of your test results have not been uploaded to OONI servers. If you\'d like to contribute to OONI\'s dataset, please upload them. + Cancel + Upload + Enable notification permissions to run tests automatically. + Enable notification permissions to receive news updates. + Enable notification permissions to receive push notifications. + To improve the accuracy of tests, we need GPS permissions. OONI will only collect an approximation of your GPS position. + The old results will be deleted. Don\'t worry, you can always find them in OONI Explorer and in the OONI API. + Do you want to delete all test results? + Do you want to delete this test? + Can\'t deactivate + Please insert only digits in this field. + Re-run test + This test has failed. Re-run the test? + Your URLs will not be saved when you leave this screen. Are you sure you want to leave this screen? + Copied into clipboard + Not uploaded + Upload + Some not uploaded + Upload All + News Media Websites + Instant Messaging + Middleboxes + Performance + HTTP Invalid Request Line Test + HTTP Header Field Manipulation Test + Web Connectivity Test + NDT Speed Test + DASH Streaming Test + WhatsApp Test + Telegram Test + Facebook Messenger Test + Settings + The amount of time you have set for the test duration is too low. + ስለ ኒዊስ ሚዲያ ስካን + ይሕ መተግበሪያ (APP) የዶቸ ቬለ (DW)ና የOONl የቅርብ ትብብር ዉጤት (ምርት) ነዉ።\n\nሥለ ዶቸ ቬለ (DW):-ገለልተኛ መረጃ ለነፃ አዕምሮ-ይሕ የDW መለያ ቃል-ኪዳን ነዉ።የጀርመን ዓለም አቀፍ ዜና ማሰራጪያ ገለልተኛ የመገናኛ ዘዴ ኩባንያ እንደመሆኑ፣ በመላዉ ዓለም ለሚገኙ ሰዎች መረጃ ያቀርባል።DW በ32 ቋንቋዎች በሚጠናቀሩ ዝግጅቶቹ በቴሌቪዥን፣ በራዲዮ፣በኢንተርኔትና በማሕበራዊ መገናኛ ዘዴዎች በመላዉ ዓለም የሚገኙ ሰዎችን ያገናኛል።\n\n[ሥለ DW፣ ተጨማሪ መረጃ](https://corporate.dw.com/en/about-dw/s-30688) \n\nሥለ OONI:-በ2012 (እጎአ) የተመሠረተዉ የኔትወርክ ጣልቃ ገብነት ግልፅ ታዛቢ (Open Observatory of Network Interference-OONI) በመላዉ ዓለም በኢንተርኔት ላይ የሚደረጉ ቅድመ-ምርመራዎችን ለመሰነድ ያልተማከሉ ጥረቶችን ለማበረታታት ያለመ፣ ለትርፍ የማይሰራ የሶፍትዌር ፕሮጀክት ነዉ።በመላዉ ዓለም ለሚገኙ [(የOONI)](https://explorer.ooni.org/) ማሕበረሰብ አባላት ምስጋና ይግባቸዉና ከ200 ከሚበልጡ ሐገራት ከአንድ ቢሊዮን የሚበልጥ የኔትወርክ ደረጃ (መለኪያ) ታትሟል።ይሕ የኢንተርኔት ቅድመ-ምርመራ በዓለም አቀፍ ደረጃ ያለበትን ሁኔታ ለማሳየት ብርሐን ፈንጣቂ ነዉ።\n\nከምትጠቀምበት ኔትወርክ መረጃ በመስጠት የኢንተርኔት ነፃነት (ተሟጋቾች) ንቅናቄ አካል ሁን። + Learn more + OONI Data Policy + Notifications + Enabled + Notify upon test completion + News Feed + Regular test reminder + Enabled + Enabled tests + Categories + Website categories to test + %1$s categories enabled + Monthly mobile allowance + Monthly WiFi allowance + Sharing + Publish Results + Include Network Info + Include approximate geo-location + Include my IP address + Include Country Code + This information (e.g. IT for Italy) is required to identify which country the measurements are collected from. Are you sure you want to disable this option? + By publishing results, you are increasing transparency of network interference and supporting the OONI community. \n\nNetwork information (i.e. Autonomous System Number) is required for identifying Internet Service Providers. + Advanced + Send crash reports + Debug logs + Always use domain fronting + Test duration + Website categories to test + %1$s categories enabled + Choose websites to test + URL + No URLs entered + Run + Add website + Test WhatsApp + Test all WhatsApp endpoints + Test Telegram + Test Facebook Messenger + Run the HTTP Invalid Request Line Test + Run the HTTP Header Field Manipulation Test + Run the NDT Speed Test + Automatic NDT server selection + NDT server address + NDT server port + Run the DASH Streaming Test + Automatic DASH server selection + DASH server + DASH server port + Finished running + Try mirror + Loading... + An unexpected error occurred. Please reload this page. + You are about to run an OONI Probe test. + %1$s URLs + Test Name + Test Details + Run + Out of date + You need a newer version of OONI Probe to run this test. + Update + Close + Invalid parameter + The OONI Run link is either malformed or your app is out of date. + You will test a random sample of websites. + Please wait for the test to finish running before opening OONI Run. + Drugs & Alcohol + Religion + Pornography + Provocative Attire + Political Criticism + Human Rights Issues + Environment + Terrorism and Militants + Hate Speech + News Media + Sex Education + Public Health + Gambling + Circumvention tools + Online Dating + Social Networking + LGBT + File-sharing + Hacking Tools + Communication Tools + Media sharing + Hosting and Blogging + Search Engines + Gaming + Culture + Economics + Government + E-commerce + Control content + Intergovernmental Orgs. + Miscellaneous content + Use and sale of drugs and alcohol + Religious issues, both supportive and critical + Hard-core and soft-core pornography + Provocative attire and portrayal of women wearing minimal clothing + Critical political viewpoints + Human rights issues + Discussions on environmental issues + Terrorism, violent militant or separatist movements + Disparaging of particular groups based on race, sex, sexuality or other characteristics + Major news websites, regional news outlets and independent media + Sexual health issues including contraception, STD\'s, rape prevention and abortion + Public health issues including HIV, SARS, bird flu, World Health Organization + Online gambling and betting + Anonymization, censorship circumvention and encryption + Online dating sites + Online social networking tools and platforms + LGBTQI related communities discussing related issues (excluding pornography) + File sharing including cloud-based file storage, torrents and P2P + Computer security tools and news + Individual and group communication tools including VoIP, messaging and webmail + Video, audio and photo sharing + Web hosting, blogging and other online publishing + Search engines and portals + Online games and gaming platforms (excluding gambling sites) + Entertainment including history, literature, music, film, satire and humour + General economic development and poverty + Government-run websites, including military + Commercial services and products + Benign or innocuous content used for control + Intergovernmental organizations including The United Nations + Sites that haven\'t been categorized yet + diff --git a/news-media-scan/ar/description.xlf b/news-media-scan/ar/description.xlf new file mode 100644 index 0000000..3967d99 --- /dev/null +++ b/news-media-scan/ar/description.xlf @@ -0,0 +1,37 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + This is limited by Google to 80 characters + + + News Media Scan + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + لجمع الأدلة على الرّقابة على الإنترنت، قوموا بقياس سرعة وأداء شبكتكم. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + شبكة،إختبار سرعة،قياسات،انترنت،واي فاي، الشبكات،فحص،سعة الشبكة،المعيار،dns،الهاتف المحمول،أوني،بحوث،أداة + + +
+
\ No newline at end of file diff --git a/news-media-scan/ar/strings.json b/news-media-scan/ar/strings.json new file mode 100644 index 0000000..a51058d --- /dev/null +++ b/news-media-scan/ar/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "Are news media sites blocked?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers.", + "Onboarding.ThingsToKnow.Bullet.1": "OONI will openly publish the measurement data you send, along with your network information.", + "Onboarding.ThingsToKnow.Bullet.2": "Anyone monitoring your Internet connection will be able to see you are running News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "You will be testing news websites that might be banned in the country where you currently find yourself.", + "Onboarding.PopQuiz.1.Question": "If someone is monitoring my internet activity, they will see that I am running News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running.", + "Onboarding.PopQuiz.2.Question": "Every time I run News Media Scan, the network data I collect will automatically get published.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings).", + "Onboarding.AutomatedTesting.Paragraph": "To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon\u2019t worry, we\u2019ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time.", + "Onboarding.Crash.Paragraph": "To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team?", + "Dashboard.Websites.Card.Description": "Checks for blocking of news media websites", + "Test.Websites.Fullname": "News Media Websites", + "Settings.About.Label": "About News Media Scan", + "Settings.About.Content.Paragraph": "This app is the product of close cooperation between Deutsche Welle (DW) and OONI.\n\n_About DW:_ Unbiased information for free minds \u2013 that is the DW brand promise. As an independent media company, Germany\u2019s international news broadcaster informs people around the world. With programming in 32 languages, DW connects people across the globe via TV, radio, Internet and on social media. \n\nFurther information:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n_About OONI:_ Founded in 2012, the Open Observatory of Network Interference (OONI) is a non-profit free software project that aims to empower decentralized efforts in documenting internet censorship around the world. Thanks to their global community, [more than a billion network measurements](https://explorer.ooni.org/) have been published from more than 200 countries, shedding light on cases of internet censorship worldwide. \n\nBe part of the internet freedom movement by providing data from the networks you\u2019re using.", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/ar/strings.xml b/news-media-scan/ar/strings.xml new file mode 100644 index 0000000..3659c5e --- /dev/null +++ b/news-media-scan/ar/strings.xml @@ -0,0 +1,639 @@ + + + News Media Scan + Are news media sites blocked? + Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers. + فهمت + إنتباه! + OONI will openly publish the measurement data you send, along with your network information. + Anyone monitoring your Internet connection will be able to see you are running News Media Scan. + You will be testing news websites that might be banned in the country where you currently find yourself. + فهمت + تعرّف على المزيد + امتحان قصير + صحيح + خاطئ + عودة + استمرار + السؤال 1 من 2 + If someone is monitoring my internet activity, they will see that I am running News Media Scan. + تحذير + News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running. + السؤال 2 من 2 + Every time I run News Media Scan, the network data I collect will automatically get published. + تحذير + To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings). + الاختبارات التلقائية + To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon’t worry, we’ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time. + التبليغ عن التعطيلات + To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team? + ‮نعم + ‮لا + الإعدادات الإفتراضية + نقوم بجمع ونشر: + رمز الدّولة (مثلاً IT لإيطاليا) + معلومات الشبكة (متضمنا رقم ASN) + وقت وتاريخ الاختبار + نعمل ما في وسعنا لعدم نشر عنوان بروتوكل الانترنت (IP) أو أي بيانات أخرى قد تساعد في تحديد هويّتك الشّخصيّة. \n\nتعلّم أكثر عبر [سياسة البيانات في OONI](https://ooni.org/about/data-policy/). + عند النقر على \"OK\"، ستشارك.ين تبليغ عن التعطيلات والتي ستساعدنا في تحسين OONI Probe. + فلننطلق! + تغيير الافتراضي + لوحة التحكم + ابدأ + ‮غير متاح + ابدأ + الاختبار الأخير: + التقدير: + اختر المواقع + جار التنفيذ: + تقدير الوقت الباقي: + %1$s ثانية + تحضير الاختبار + حساب الوقت اللازم + استعرض السِّجِل + أغلِق السجل + إيقاف الاختبار جار ... + يرجى الانتظار حتى الانتهاء من الاختبارات الجارية حاليّاً + الوسيط يعمل + انقر البطاقة للمزيد + ~%1$sث + Checks for blocking of news media websites + تأكّدوا عمّا إذا كانت المواقع محجوبة باستخدام [اختبار الاتصاليّة بالويب](https://ooni.io/nettest/web-connectivity) من OONI \n\nفي كل مرّة تنقرون فيها \"Run\" ستقومون بفحص المواقع الموجودة لدى قائمة اختبارات Citizen Lab [العالميّة](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) و تلك [الخاصّة ببلد معيّنة](https://github.com/citizenlab/test-lists/tree/master/lists)\n\nلاختبار مواقع معيّنة، انقروا زر \"Choose websites\" أو \"اختاروا من ضمن تصنيفات المواقع عبر إعدادات هذا الكرت. \n\nاختيار مواقع\" هذا الفحص يكشف عمّا إذا كانت المواقع محجوبة عن طريق التلاعب ب DNS، حجب TCP/IP أو عن طريق بروكسي HTTP غير مرئي.\n\nسيتم نشر نتائج فحصكم على كل من [مكتشف OONI](https://explorer.ooni.org) و [واجهة تطبيق OONI](https://api.ooni.io/) + تأكّدوا عمّا إذا كانت المواقع محجوبة باستخدام [اختبار الاتصاليّة بالويب](https://ooni.io/nettest/web-connectivity) من OONI \n\nستقومون بفحص المواقع الموجودة لدى قوائم اختبارات Citizen Lab [العالميّة](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) و تلك [الخاصّة ببلد معيّنة](https://github.com/citizenlab/test-lists/tree/master/lists)\n\nلاختبار مواقع معيّنة، انقروا زر \"Choose websites\" أو \"اختاروا من ضمن تصنيفات المواقع عبر إعدادات هذا الكرت. \n\nاختيار مواقع\" هذا الفحص يكشف عمّا إذا كانت المواقع محجوبة عن طريق التلاعب ب DNS، حجب TCP/IP أو عن طريق بروكسي HTTP غير مرئي.\n\nسيتم نشر نتائج فحصكم على كل من [مكتشف OONI](https://explorer.ooni.org) و [واجهة تطبيق OONI](https://api.ooni.io/) + اختبار سرعة و جودة شبكتك + يمكن قياس سرعة و جودة شبكتك من خلال اختبار [NDT](https://ooni.io/nettest/ndt/).\n\nويمكن قياس أداء بث الفيديو من خلال اختبار [DASH](https://ooni.io/nettest/dash/).\n\nهذه الاختبارات تستهلك بيانات بحسب سرعة اتصالك بالشبكة.\n\nستنشر نتائج اختبارك على [متصفح OONI](https://explorer.ooni.io/world/) و على [OONI API](https://api.ooni.io/).\n\nتنبيه: هذه الاختبارات تعتمد على خوادم من أطراف ثالثة. لذلك لا نستطيع ضمان عدم تسجيل عنوان IP الخاص بك. + من خلال إجراء الاختبارات في هذه البطاقة ، ستقوم بما يلي:\n\n- قياس سرعة وأداء شبكتك ([NDT] (https://ooni.org/nettest/ndt/) اختبار)\n- قياس أداء تدفق الفيديو ([DASH] (https://ooni.org/nettest/dash/) اختبار)\n- تحقق من وجود [تقنيات علب وسط] (https://ooni.org/support/glossary/#middlebox) على شبكتك ([خط طلب HTTP غير صالح] (https://ooni.org/nettest/http-invalid -request-line /) و [اختبار معالجة رأس HTTP] (https://ooni.org/nettest/http-header-field-manipulation/) اختبارات)\n\nتستهلك هذه الاختبارات البيانات اعتمادًا على سرعة شبكتك.\n\nسيتم نشر نتائج اختبارك على [OONI Explorer] (https://explorer.ooni.org/) و [OONI API] (https://api.ooni.io/).\n\n** إخلاء المسؤولية: ** يتم إجراء اختبارات [NDT] (https://ooni.org/nettest/ndt/) و [DASH] (https://ooni.org/nettest/dash/) على خوادم الجهات الخارجية مقدمة من [Measurement Lab (M-Lab)] (https://www.measurementlab.net/). إذا قمت بإجراء هذه الاختبارات ، فسيقوم M-Lab بجمع ونشر عنوان IP الخاص بك (لأغراض البحث) ، بغض النظر عن إعدادات مسبار OONI. تعرف على المزيد حول إدارة بيانات M-Lab من خلال [بيان الخصوصية] (https://www.measurementlab.net/privacy/). + البحث عن اختبارات تفتيش في شبكتك + عادة ما تقوم الشركات المزودة لخدمة الإنترنت باستخدام أجهزة شبكية اعتراضية (middleboxes) لاستخدامات مختلفة فى الشبكة (مثل تسريع الخدمة عن طريق تقديم نسخة مسجلة من المطلوب) . أحيانا ما تستخدم هذه الأجهزة الإعتراضية لتنفيذ الحجب أو مراقية للإنترنت.\n\nاعثر على الأجهزة الإعتراضية فى شبكتك بإستخدام إختبارات HTTP Invalid Request Line](https://ooni.io/nettest/http-invalid-request-line/) و [HTTP Header Field Manipulation](https://ooni.io/nettest/http-header-field-manipulation/).\n\nستنشر نتائج اختبارك على [متصفح OONI](https://explorer.ooni.org/) و على [OONI API](https://api.ooni.io/). + اختبار حجب برامج المراسلة الفورية + تحقّقوا من حجب [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), and [Signal](https://ooni.org/nettest/signal) are blocked. \n\nستنشر نتائج اختبارك على [متصفح OONI](https://explorer.ooni.org/) و على [OONI API](https://api.ooni.io/). + اختبار حجب وسائل تجاوز الرقابة. + تحققوا من حجب [Psiphon](https://ooni.io/nettest/psiphon/) و [تور](https://ooni.io/nettest/tor/).\n\nستنشر نتائج اختبارك على [متصفح OONI](https://explorer.ooni.org/) و على [OONI API](https://api.ooni.io/). + إجراء الاختبارات التجريبيّة الجديدة + يمكنكم إجراء بعض الاختبارات التجريبيّة الجديدة المطوّرة من قبل فريق OONI: \n%1$s\n\nسيتم نشر نتائج اختباراتكم على كل من [مكتشف OONI](https://explorer.ooni.org) و [واجهة تطبيق OONI](https://api.ooni.io/) + سوف تشتغل الاختبارات التالية فقط كجزء من الاختبارات التلقائية : + الاختبارات المُعطَّلة + غيغابت/ثا + ميغابت/ثا + كيلوبت/ثا + ms + ‮غير متاح + غير معروف + نتائج الاختبار + نتائج الاختبار + اختبارات + الشبكات + إستخدام البيانات + ترشيح النتائج + جميع الاختبارات + المواقع + Middleboxes + الأداء + المراسلة الفورية + تجاوز الحجب + تجريبي + لم تجر أي اختبار حتى الآن. قم بتجربة أحد الاختبارات! + %1$s محجوب + %1$s محجوبة + %1$s تمّ اختبارها + %1$s تمّ اختبارها + تمّ اكتشافها + لم يتمّ رصدها + فشل + %1$s محجوب + %1$s محجوبة + %1$s متاح + %1$s متاحة + %1$s محجوب + %1$s محجوب + %1$s متوفر + %1$s متوفر + نتيجة غير مكتملة + خطأ + خطأ في القياس + النتائج لم يتمّ رفعها + التاريخ والوقت + الشبكة + البلد +  إستخدام البيانات + إجمالي زمن التشغيل + وايفاي + بيانات الخلوي + لا إنترنت + فشل + تمّ اختبارها + تمّ اختبارها + محظور + محظور + موقع + مواقع + مُتاح + مُتاح + الفيديو + الجودة + رفع + تحميل + الاستجابة + تمّ رصدها + لم يتمّ رصدها + فشل + تمّ اختبارها + تمّ اختبارها + محظور + محظور + مُتاح + مُتاح + تطبيق + تطبيقات + تمّ اختبارها + تمّ اختبارها + محجوب + محجوب + يعمل + يعمل + أداة + الأدوات + زمن التشغيل + المنهجية + عرض السجل + بيانات + نسخ رابط المتصفح + مشاركة رابط ال Explorer + نسخ إلى الحافظة + إظهار في متصفح OONI + فشل + باستطاعتك إجراء هذا الاختبار من جديد + الرجاء المحاولة مجددًا + التعرف على كيفية عمل هذا الاختبار [هنا](%1$s). + مُتاح + %1$s مُتاح. + محجوب على الأرجح + %1$s محجوب غالبًا من خلال %2$s.\n\nملاحظة: فى بعض الأحيان يحدث خطأ في اثبات الحجب. لمعرفة المزيد [هنا](https://ooni.org/support/faq/#what-are-false-positives). + تجاوز الرّقابة + **التلاعب في DNS** + **حجب باستخدام TCP/IP** + ** حجب من نوع HTTP (من الممكن أن يصلك صفحة حجب)** + ** حجب من نوع HTTP (طلبات HTTP لم يستجب لها)** + تطبيق خلوي + يعمل + لا يعمل + واتساب ويب + يعمل + لا يعمل + التسجيل + يعمل + لا يعمل + يعمل + هذا الاختبار تواصل بنجاح مع طرف واتساب و خدمة التسجيل و واجهة واتساب ويب (web.whatsapp.com). + محجوب على الأرجح + يبدو أن واتساب محجوب + تطبيق خلوي + يعمل + لا يعمل + تيليجرام ويب + يعمل + لا يعمل + يعمل + هذا الاختبار تواصل بنجاح مع طرف تيليجرام و واجهة تيليجرام ويب (web.telegram.org). + محجوب على الأرجح + يبدو أن تيليجرام محجوب + إتصالات TCP + يعمل + لا يعمل + عمليات فحص DNS + يعمل + لا يعمل + يعمل + هذا الاختبار تواصل بنجاح مع طرف فيسبوك و توصل إلى عناوين IP الخاصة بفيسبوك. + محجوب على الأرجح + يبدو أن فيسبوك مسنجر محجوب + محجوب على الأرجح + يبدو بأن Signal محجوب + يعمل + نجح هذا الاختبار بالاتصال مع نقاط النهاية في Signal + لم يتم رصد middleboxes في الشبكة + لم يتم رصد أي شيء غير طبيعي في التواصل مع خوادمنا. + تلاعب بالشبكة + تم رصد تلاعب في الشبكة عند التواصل مع خوادم التحكم الخاصة بنا.\n\nهذا معناه أن هناك middleboxes في شبكتك و قد تكون مسؤولة عن الرقابة او الحجب. + لم يتم رصد middleboxes في الشبكة + لم يتم رصد أي شيء غير طبيعي في التواصل مع خوادمنا. + تلاعب بالشبكة + يوجد تلاعب في الشبكة عند التواصل مع خوادم التحكم الخاصة بنا.\n\nهذا معناه أن هناك middleboxes في شبكتك و قد تكون مسؤولة عن الرقابة او الحجب. + أرسلت + أستلمت + رفع + تحميل + الاستجابة + الخادم + معدل إعادة الإرسال + خروج حزمة + متوسط الاستجابة + تقدير بينغ الأعلى + MSS + نفاذ وقت الحزمة + بإمكانك مشاهدة فيديو حتى جودة %1$s بدون توقف للتحميل + متوسط معدل البت + التأخير في التشغيل + محجوب على الأرجح + يعمل + يبدو أن [Psiphon](https://psiphon.ca/) محجوب. + تمكنّا بنجاح من التمهيد لاتصال Psiphon. هذا معناه أن [Psiphon](https://psiphon.ca/) ينبغى أن يعمل. + مدة التمهيد + %1$s ث + محجوب على الأرجح + يعمل + يبدو أن [تور](https://www.torproject.org/) محجوب. + تمكنّا بنجاح من الاتصال بالجسور التلقائية لتور و/أو سلطات دليل تور. هذا معناه أن [تور](https://www.torproject.org/) ينبغي أن يعمل. + الجسور الإفتراضية + %1$s/%2$s متاح + سلطات الدليل + %1$s/%2$s متاح + الاسم + العنوان + النوع + اتصل + المصافحة + محجوب على الأرجح + يعمل + يبدو أنّ [RiseupVPN](https://riseup.net/vpn)  محجوب. + لقد تمكّنا من الاتصال بنجاج مع خادوم مدّة التمهيد الخاص ب RiseupVPN ومع بوّابات VPN. هذا يعني أنّ [RiseupVPN](https://riseup.net/vpn) يجب أن يعمل. + خادوم مدة التمهيد + اتصالات OpenVPN + اتصالات عبر جسور تور + محجوب + %1$s محجوب + %1$s محجوب + موافق + هذا اختبار تجريبي. + التغذية + التغذية + موافقة + إلغاء + كلا، لا تسألني مرة أخرى + حذف + خطأ + حاول مجددا + رائع ! + لا، شكراً + في وقت آخر + شغِّل في كل الأحوال + تعطيل VPN + شغِّل دائما + التطبيق غير قادر على إجراء الاختبار. من فضلك تحقق من اتصال الإنترنت. + التطبيق غير قادر على تحميل قائمة المواقع. من فضلك حاول مرة أخرى. + يُرجى انتظار الاختبارات الحالية حتى تنتهي، قبل بدء اختبار جديد. + التطبيق بحاجة الى تصريح التنبيهات. من فضلك قم بإعطاء التطبيق تصريح التنبيهات من خلال إعدادات هاتفك ثم اسمح بها في تطبيق OONI Probe. + اذهب إلى الإعدادات + هذه الواجهة مغلقة لحين الإنتهاء من الاختبار. + لا بد أن تكون متصلا بالانترنت لتحميل بيانات القياسات الأولية. + النتائج لم يتمّ رفعها + بعض نتائج الاختبارات الخاصة بك لم يتمّ رفعها إلى خوادم OONI. من فضلك قم برفعها اذا كنت ترغب بالمساهمة في تجميع بيانات OONI. + رفع + جارٍ تحميل %1$s ... + لا يمكن لـ OONI Probe أن يعمل تلقائيا بدون تحسينات البطارية. هل ترغب في المحاولة مرة أخرى ؟ + يُرجى تعطيل اتصالك عبر VPN. + إذا قمت بتشغيل OONI Probe عبر VPN مُفعَّل، سوف يظهر مصدر نتائج القياسات من دولة غير صحيحة. يُرجى تعطيل اتصالك عبر VPN. + لقد تم أخذ بعض القياسات عبر VPN. + إذا قمت برفع القياسات عبر اتصال VPN مُفعَّل، سوف يظهر مصدر نتائج القياسات من دولة غير صحيحة. + تم التحميل بنجاح + عرض سجل الإخفاق + احصل.ي على تحديثات حول الرّقابة على الانترنت + لديكم اهتمام بإجارء اختبارات OONI Probe خلال أحداث قد تسودها الرّقابة في المستقبل؟ يرجى تفعيل الإشعارات لاستقبال رسالة عندما نسمع بحادثة رقابة بجواركم. + التطبيق بجاجة إلى تصريح GPS لتحسين دقة الاختبارات. سيقوم OONI بالحصول على موقع GPS التقريبي الخاص بك. + هل تريد حذف جميع نتائج الإختبارات؟ + هل تريد حذف هذا الإختبار؟ + يرجى تشغيل اختبار واحد على الأقل + يرجى إدخال الأرقام فقط في هذا الحقل. + إعادة إجراء الاختبار + لقد فشل هذا الإختبار. هل تريد إعادة إجراء الاختبار؟ + أنت على وشك إعادة اختبار %1$s موقعا. + ابدأ + هل أنت متأكد؟ + المواقع لن تسجل اذا تركت هذه الواجهة. هل تريد ترك الواجهة؟ + تفعيل الرّفع اليدوي؟ + هذا الإعداد يمكّن من إعادة رفع القياسات الغير منشورة يدويّاً + تمكين + لا، شكراً + فَشِلتْ عملية الرفع + أخفقنا في رفع %1$s من %2$s قياسا. تم مشاركة سجل الإخفاق مع مطوري OONI. + ملف السجلّ غير موجود + لم يتم العثور على روابط صحيحة + JSON فارغ + هل تود.ين إيقاف هذا الاختبار؟ + هذا سيعطّل الاختبار الجاري فوراً + هل تودّون إجراء الاختبارات تلقائيا؟ + عند تفعيل الاختبار التلقائي، سوف تساهم بقياسات OONI بشكل منتظم. + يُرجى السماح بتشغيل التطبيق في الخلفية. + ذكرني لاحقا + نسخ إلى الحافظة + لم يتمّ الرفع + رفع + لم يتمّ رفع البعض + رفع الجميع + News Media Websites + المراسلة الفورية + Middleboxes + الأداء + تجاوز الحجب + تجريبي + اختبار عدم صلاحية طلب الHTTP + اختبار التلاعب بخانة رأس صفحة الHTTP + اختبار الاتصال بالشبكة + اختبار السرعة NDT + اختبار البث DASH + اختبار واتساب + اختبار تيليجرام + اختبار فيسبوك مسنجر + اختبار Psiphon + اختبار تور + اختبار RiseupVPN + اختبار Signal + الإعدادات + المدة التي حددتها لفترة الاختبار قصيرة جدًا + About News Media Scan + This app is the product of close cooperation between Deutsche Welle (DW) and OONI.\n\n_About DW:_ Unbiased information for free minds – that is the DW brand promise. As an independent media company, Germany’s international news broadcaster informs people around the world. With programming in 32 languages, DW connects people across the globe via TV, radio, Internet and on social media. \n\nFurther information:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n_About OONI:_ Founded in 2012, the Open Observatory of Network Interference (OONI) is a non-profit free software project that aims to empower decentralized efforts in documenting internet censorship around the world. Thanks to their global community, [more than a billion network measurements](https://explorer.ooni.org/) have been published from more than 200 countries, shedding light on cases of internet censorship worldwide. \n\nBe part of the internet freedom movement by providing data from the networks you’re using. + تعرف على المزيد + مدونة + التقارير + سياسة OONI في البيانات + التنبيهات + ‮مُفعّل + إجراء تنبيه عند إنتهاء الاختبار + شريط الأخبار + الاختبارات التلقائية + إجراء الاختبارات تلقائيا + عدد الاختبارات الأوتوماتيكية : %1$s. + آخر اختبار أوتوماتيكي %1$s. + فقط عند الاتصال عبر الواي الفاي + فقط عند الشحن + عند تفعيل الاختبار التلقائي، سيشغل OONI Probe الاختبارات تلقائيا عدة مرات في اليوم. سوف ينشر OONI Explorer نتائج اختباراتك تلقائيا : https://explorer.ooni.org/\n\nهام : إذا كان عندك VPN مُفعَّل، فلن يشغل OONI Probe الاختبارات تلقائيا. يُرجى إيقاف اتصالك بـ VPN لتمكين OONI Probe للقيام بالاختبار التلقائي. للتعرف على المزيد : https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + المشاركة + نشر النتائج أوتوماتيكيّاً + رفع النتائج يدويّاً + إدراج معلومات الشبكة + إدراج الموقع الجغرافي التقريبي + إدراج عنوان الIP + إدراج رمز الدولة + هذه المعلومات (مثلا IT لايطاليا) مطلوبة لتحدبد الدولة التي تم اجراء القياسات فيها. هل أنت متأكد أنك تريد الغاء هذا الإختيار؟ + قيامك بنشر النتائج سيرفع من الشفافية حول التدخل في الشبكة ويدعم مجتمع OONI. \n\nمعلومات الشبكة (أي رقم النظام التلقائي ASN) مطلوب لتحديد مزودي خدمات الانترنت. + اختيارات الاختبار + سوف تُطبَّق إعدادات الاختبار أعلاه على الاختبارات التي سوف يتم تشغيلها يدويا عندما تقوم بتهيئة تلك الإعدادات، كما ستُطبَّق أيضا على الاختبارات التي يتم تشغيلها تلقائيا (عند تفعيل الاختبار التلقائي). + اشتغال الاختبار الطويل + إطلاق اشتغال الاختبارات الطويلة في الواجهة ؟ + الخصوصية + أرسل تقارير حول تعطل التطبيق + متقدم + الثيمة المعتمة + أظهر سجلات التصحيح + الاطلاع على السجلات الأخيرة + إعدادات اللغة + اختر اللغة + دائمًا استخدم وسيط في اتصال النطاق Domain Fronting + Backend proxy + بروكسي + لا شيء + سايفون + بروكسي مخصص + رابط بروكسي مخصص + بروتوكل بروكسي مخصص + الاتصال + اسم المُضيف + منفذ + الاعتمادات (اختياري) + اسم المستخدم + كلمة السّر + استخدام Psiphon عبر بروكسي مخصّص + هل أنتم غير قادرين على تشغيل OONI Probe؟ حاولوا تفعيل [Psiphon](https://psiphon.ca/)  لتجاوز أي حجب محتمل لِ OONI Probe. أو، بإمكانكم استخدام بروكسي مخصص. + قيّد مدة الاختبار + مدة الاختبار + أقسام المواقع للاختبار + %1$s قسمًا مفعل + عدّل + إزالة الاختيار عن الكل + حدد الكل + حفظ + تغييرات غير مسجلة + لقد قمت ببعض التعديلات على الفئات المفعّلة. هل تود.ين حفظها؟ + حفظ + تجاهل + اختيار المواقع للاختبار + الرابط + لم يتم إدخال أي روابط + ابدأ + أضف موقعًا + تحميل من قالب + عدد المواقع المختبرة (0 يعني الكل) + اختبر واتساب + اختبر تيليجرام + اختبر فيسبوك مسنجر + اختبار Signal + تشغيل اختبار عدم صلاحية طلب الHTTP + تشغيل اختبار التلاعب بخانة رأس صفحة الHTTP + تشغيل اختبار السرعة NDT + إختيار خادم NDT اوتوماتيكيًا + عنوان خادم NDT + منفذ خادم NDT + شغل اختبار البث DASH + إختيار خادم DASH اوتوماتيكيًا + خادم DASH + منفذ خادم DASH + إختبار Psiphon + إختبار Tor + اختبار RiseupVPN + نبِّه عند استخدام VPN + إرسال إيميل لفريق الدعم + يرجى وصف المشكلة التي تواجهونها: + من فضلك أرسل رسالة إلكترونية إلى bugs@openobservatory.org تحتوى على معلومات عن اصدار البرنامج وإصدار iOS. اضغط على \"نسخ إلى الحافظة\" فى الأسفل لنسخ عنوان بريدنا الإلكتروني. + اللغة الحالية للتطبيق هي %1$s + اللغة + استخدام سعة التخزين + مساحة التخزين المستعملة + احذف + Clear + أنت على وشك حذف جميع مقاييس OONI من جهازك. إن تمّ رفعها ستكون متاحة على [OONI Explorer](https://explorer.ooni.org). + انتهى التشغيل + إيقاف الاختبار + تجربة خادم بديل + جاري التحميل... + حدث خطأ غير متوقع. من فضلك أعد تحميل الصفحة. + أنت على وشك تشغيل إختبار OONI Probe على شبكتك. + %1$s روابط + اسم الإختبار + تفاصيل الإختبار + ابدأ + اصدار قديم + انت بحاجة إلى اصدار أجدد من OONI Probe لإجراء هذا الاختبار. + تحديث + ‮إغلاق + مُعطى خاطئ + رابط تشغيل OONI غير صحيح أو لديك اصدار قديم من التطبيق. + ستقوم بإختبار عينة عشوائية من المواقع. + يرجى الانتظار حتى يتم إنهاء الاختبار قبل الضغط على رابط تشغيل OONI + Read more > + Read less > + المخدرات والكحول + الدين + المواد الإباحية + ملابس مثيرة + النقد السياسي + قضايا حقوق الإنسان + البيئة + الإرهاب والميليشيات + خطاب كراهية + إعلام إخباري + تثقيف جنسي + الصحّة العامّة + المقامرة + أدوات تجاوز الحجب + المواعدة على النت + التواصل الاجتماعي + م.م.م.م.ك+ + مشاركة الملفّات + أدوات اختراق + أدوات اتصال + مشاركة المواد الإعلاميّة + استضافة المواقع والتدوين + محرّكات البحث + ألعاب + ثقافة + اقتصاد + حكومة + التجارة الالكترونية + التحكم في المحتوى + المنظمات بين الحكومية الدولية + محتوى متفرّق + استخدام وبيع المخدرات والكحول + قضايا دينيّة، نقديّة وداعمة + مواد إباحيّة فاضحة وملطّفة + ملابس خادشة للحياء و تصوير نساء بملايس فاضحة + وجهات نظز سياسيّة نقديّة + قضايا حقوق الإنسان + نقاشات حول قضايا بيئيّة + الإرهاب، المقاومة المسلّحة، أو الحركات الانفصاليّة + ذم مجموعات معيّنة بناءً على العرق، الجنس، الجنسانيّة، أو ميّزات أخرى + مواقع الأخبار الرئيسيّة، مواقع الإعلام المستقل والأخبار المحليّة + قضايا الصحة الجنسيّة مثل وسائل منع الحمل، الأمراض المنقولة جنسياً، منع الاغتصاب، والإجهاض + قضايا صحة عامّة، مثل كوفيد-١٩، الإيدز وفيروس نقص المناعة المكتسبة (HIV)، إيبولا + القمار على النت والمراهنة + أدوات مجهوليّة، تجاوز رقابة وتعمية + مواقع المواعدة على النت + منصّات ووسائل التشابك الاجتماعي على النت + مجتمعات م.م.م.م.ك+ تناقش قضايا ذات صلة (باستثناء البورنوجرافيا) + مشاركة الملفّات بما في ذلك نظم التخزين السحابي، والتورنت، ومشاركة النّد-للنّد + أخبار وأدوات أمن الحاسوب + أدوات اتصال فردي وجماعي مثل الاتصال عبر الانترنت، الدردشة وبريد الويب + مشاركة ملفات الفيديو، الصوت، والصور + استضافة المواقع، التدوين والنشر على الانترنت + محرّكات البحث والبوابات الالكترونية + ألعاب انترنت (ما عدا مواقع القمار) + مواد ترفيهيّة بما في ذلك التاريخ، الأدب، الموسيقى، الفيلم، السخريّة والفكاهة + الفقر و التطوّر الاقتصادي بشكل عام + مواقع حكوميّة، بما فيها عسكريّة + خدمات ومنتوجات تجاريّة + محتوى حميد أو غير ضار يستخدم للتحكّم + منظّّمات بين حكوميّة دوليّة بما في ذلك الأمم المتحدة + مواقع لم يتم تصنيفها + Don’t ask again + Enable test progress notifications + Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? + Link Loading + خطأ + Link installation cancelled + Created by %s on %s\n\n%s + Uninstall Link + Review Updates + المراجعات السابقة + You will be able to install this link again only from the original link sent by the creator. + See More + Test websites automatically + خطأ + OONI Tests + OONI Run Links + Run finished. Tap to view results. + منتهي الصلاحية + UPDATED + Install New Link + المؤلف/ة: + فحص الإعدادات + Install updates automatically + إجراء الاختبارات تلقائيا + Link installed + Install Link + Link installation cancelled + UPDATES + Test %s URLs + Test URLs + Link Update + Link(s) updated + Link Update (%1$s of %2$s) + UPDATE AND FINISH (%1$s of %2$s) + UPDATE (%1$s of %2$s) + تحديث + Run tests + إجراء الاختبارات + Please select test to run + Run %s test(s) + Select the tests to run + Select all tests + Deselect all tests + Link Loading + Link updates loading + Link updates ready + مراجعة + %s inputs + الرجوع + refresh + طي + تمديد + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + جانفي + فيفري + مارس + أفريل + ماي + جوان + جويلية + أوت + سبتمبر + أكتوبر + نوفمبر + ديسمبر + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + فشل + موافق + شذوذ + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + السجلات + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + جاري التجريب + Manual Run + Auto Run + الشبكة الافتراضية الخاصة + diff --git a/news-media-scan/bg/description.xlf b/news-media-scan/bg/description.xlf new file mode 100644 index 0000000..6263bc7 --- /dev/null +++ b/news-media-scan/bg/description.xlf @@ -0,0 +1,46 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + News Media Scan + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Вижте кои новинарски медии са блокирани във вашата страна. + This is limited by Google to 80 characters + + + News Media Scan + News Media Scan + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Вижте кои новинарски медии са блокирани във вашата страна. + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Имате ли достъп новинарските сайтове, от които искате да се информирате? Или може би те са били блокирани? News Media Scan на DW ви осигурява прозрачността, от която се нуждаете. Използвайки нашето приложение и помагайки да разкрием цензурата по света, вие ще дадете своя принос към глобалната онлайн свобода. + +Това приложение е създадено съвместно от “Дойче Веле” и OONI. + +За “Дойче Веле”: Безпристрастна информация за свободни умове - това е обещанието, което “Дойче Веле” дава в своето мото. Независимата медия е международният новинарски канал на Германия, който информира хората по целия свят. “Дойче Веле” има свои програми на 32 различни езика и по този начин свързва хората по света - с телевизионни канали, радио, уебсайтове и социални медии. + +За OONI: Open Observatory for Network Interference (Отворена обсерватория за мрежови смущения) или OONI е основана през 2012 година като неправителствен безплатен софтуерен проект. Целта ѝ е да  подпомогне децентрализираните усилия за документиране на цензурата в световен мащаб. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + + +
+
\ No newline at end of file diff --git a/news-media-scan/bg/strings.json b/news-media-scan/bg/strings.json new file mode 100644 index 0000000..e9c561d --- /dev/null +++ b/news-media-scan/bg/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "Блокирани ли са новинарските сайтове?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Използвайте News Media Scan, за да проверите дали определен сайт е блокиран. Това е най-доброто приложение, което ви осигурява прозрачност на медийния пейзаж, в която и държава да се намирате. Освен това, използвайки приложението, допринасяте за оценяването на цензурата по света. \n\nСписъкът, който виждате в приложението, е публичен, събран от общността в GitHub и не е изготвен от “Дойче Веле”. Той представлява обективен списък с международни и местни новинарски медии.", + "Onboarding.ThingsToKnow.Bullet.1": "OONI will openly publish the measurement data you send, along with your network information.", + "Onboarding.ThingsToKnow.Bullet.2": "Anyone monitoring your Internet connection will be able to see you are running News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "You will be testing news websites that might be banned in the country where you currently find yourself.", + "Onboarding.PopQuiz.1.Question": "If someone is monitoring my internet activity, they will see that I am running News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running.", + "Onboarding.PopQuiz.2.Question": "Every time I run News Media Scan, the network data I collect will automatically get published.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings).", + "Onboarding.AutomatedTesting.Paragraph": "To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon\u2019t worry, we\u2019ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time.", + "Onboarding.Crash.Paragraph": "To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team?", + "Dashboard.Websites.Card.Description": "Checks for blocking of news media websites", + "Test.Websites.Fullname": "News Media Websites", + "Settings.About.Label": "About News Media Scan", + "Settings.About.Content.Paragraph": "Това приложение е създадено съвместно от “Дойче Веле” и OONI. \n\nЗа “Дойче Веле”: Безпристрастна информация за свободни умове - това е обещанието, което “Дойче Веле” дава в своето мото. Независимата медия е международният новинарски канал на Германия, който информира хората по целия свят. “Дойче Веле” има свои програми на 32 различни езика и по този начин свързва хората по света - с телевизионни канали, радио, уебсайтове и социални медии. \n\nЗа OONI: Open Observatory for Network Interference (Отворена обсерватория за мрежови смущения) или OONI е основана през 2012 година като неправителствен безплатен софтуерен проект. Целта ѝ е да  подпомогне децентрализираните усилия за документиране на цензурата в световен мащаб. Благодарение на международната общност на OONI повече от милиард изчисления на мрежовите връзки са били публикувани в над 200 държави, осветлявайки редица случаи на цензура в интернет по света. \n\nСтанете част от движението за свободен интернет като предоставите данните от вашето сърфиране сред новинарските медии. ", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/de/description.xlf b/news-media-scan/de/description.xlf new file mode 100644 index 0000000..1c60045 --- /dev/null +++ b/news-media-scan/de/description.xlf @@ -0,0 +1,44 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + News Media Scan + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Welche Nachrichtenportale sind in Ihrer Region gesperrt? + This is limited by Google to 80 characters + + + News Media Scan + News Media Scan + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Welche Nachrichtenportale sind in Ihrer Region gesperrt? + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + Sammle Anzeichen auf Internetzensur. Miss die Geschwindigkeit und Performance deines Netzwerks. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Finden Sie heraus, ob Nachrichtenportale in Ihrer Region erreichbar oder blockiert sind. Der News Media Scan by DW verschafft Ihnen die dafür nötige Transparenz. Außerdem leisten Sie einen wertvollen Beitrag zur globalen "Internet Freedom"-Community, indem Sie helfen, Zensur auf der ganzen Welt aufzudecken. + +Diese App ist in enger Zusammenarbeit zwischen der Deutschen Welle (DW) und OONI entstanden. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + netzwerk,geschwindigkeitstest,messung,netz,wlan,vernetzung,scan,bandbreite,bench,dns,mobil,ooni,forschung,werkzeug + + +
+
\ No newline at end of file diff --git a/news-media-scan/de/strings.json b/news-media-scan/de/strings.json new file mode 100644 index 0000000..d8add0e --- /dev/null +++ b/news-media-scan/de/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "Sind Nachrichtenportale blockiert?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Starten Sie den News Media Scan, um das herauszufinden! News Media Scan ist die erste App, die Ihnen Transparenz über die Nachrichtenlandschaft in der Region bietet, in der Sie sich gerade befinden. Außerdem leisten Sie einen wichtigen Beitrag zur Messung der Zensur auf der ganzen Welt.\n\nDie Liste, die Sie in der App sehen, ist eine öffentliche, von der Community kuratierte Liste auf GitHub und nicht von der DW. Sie repräsentiert eine objektive Auswahl an internationalen und nationalen Nachrichtenmedienanbietern.", + "Onboarding.ThingsToKnow.Bullet.1": "Aufgepasst!\n\nOONI wird die von Ihnen gesendeten Messdaten zusammen mit Ihren Netzwerkinformationen veröffentlichen.", + "Onboarding.ThingsToKnow.Bullet.2": "Jeder, der Ihre Internetverbindung überwacht, wird sehen können, dass Sie den News Media Scan nutzen.", + "Onboarding.ThingsToKnow.Bullet.3": "Es werden Nachrichten-Websites getestet, die in dem Land, in dem Sie sich gerade befinden, verboten sein könnten.", + "Onboarding.PopQuiz.1.Question": "Falls meine Internetverbindung überwacht wird, wird man sehen können, dass ich den News Media Scan nutze.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan ist kein Tool zum Schutz der Privatsphäre. Jeder, der Ihre Internetaktivitäten überwacht, kann sehen, welche Software Sie ausführen.", + "Onboarding.PopQuiz.2.Question": "Jedes Mal, wenn ich News Media Scan ausführe, werden die gesammelten Netzwerkdaten automatisch veröffentlicht.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "Um die Transparenz der Internetzensur zu erhöhen, werden die Netzwerkdaten aller News Media Scan-Benutzer automatisch veröffentlicht (es sei denn, sie lehnen dies in den Einstellungen ab).", + "Onboarding.AutomatedTesting.Paragraph": "Um die Internet-Zensur täglich zu messen, aktivieren Sie bitte die automatische Testfunktion, damit News Media Scan in regelmäßigen Abständen Tests durchführen kann.\n\nKeine Sorge, wir werden den Akkuverbrauch im Auge behalten.\n\nSie können die automatischen Tests jederzeit in den Einstellungen deaktivieren.", + "Onboarding.Crash.Paragraph": "Um News Media Scan zu verbessern, würden wir gerne anonyme Absturzberichte sammeln, wenn die App nicht richtig funktioniert.\n\nMöchten Sie dem OONI-Entwicklungsteam Absturzberichte übermitteln?", + "Dashboard.Websites.Card.Description": "Überprüft die Sperrung von Nachrichenportalen", + "Test.Websites.Fullname": "Nachrichtenportale", + "Settings.About.Label": "Über News Media Scan", + "Settings.About.Content.Paragraph": "Diese App ist in in enger Zusammenarbeit zwischen der Deutschen Welle (DW) und OONI entstanden.\n\nÜber DW: Freie Informationen für freie Entscheidungen – das ist der Markenkern der Deutschen Welle (DW). Als unabhängiges, internationales Medienunternehmen informiert der deutsche Auslandssender Menschen weltweit. Mit Programmangeboten in 32 Sprachen verbindet die DW täglich Menschen in aller Welt – via TV, Radio, Internet und Sozialen Medien.\n\nWeitere Infos [über DW](https://corporate.dw.com/en/about-dw/s-30688) .\n\nÜber OONI: Das 2012 gegründete Open Observatory of Network Interference (OONI) ist ein gemeinnütziges, freies Softwareprojekt, das dezentrale Bemühungen zur Dokumentation von Internetzensur auf der ganzen Welt fördern will. Dank ihrer globalen Gemeinschaft wurden [mehr als eine Milliarde Netzwerkmessungen](https://explorer.ooni.org/) aus mehr als 200 Ländern veröffentlicht, die Aufschluss über Fälle von Internetzensur weltweit geben.\n\nSeien Sie Teil der Internet Freedom-Bewegung, indem Sie Daten aus Ihrem Netz bereitstellen.", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/de/strings.xml b/news-media-scan/de/strings.xml new file mode 100644 index 0000000..c4cc6b7 --- /dev/null +++ b/news-media-scan/de/strings.xml @@ -0,0 +1,639 @@ + + + News Media Scan + Sind Nachrichtenportale blockiert? + Starten Sie den News Media Scan, um das herauszufinden! News Media Scan ist die erste App, die Ihnen Transparenz über die Nachrichtenlandschaft in der Region bietet, in der Sie sich gerade befinden. Außerdem leisten Sie einen wichtigen Beitrag zur Messung der Zensur auf der ganzen Welt.\n\nDie Liste, die Sie in der App sehen, ist eine öffentliche, von der Community kuratierte Liste auf GitHub und nicht von der DW. Sie repräsentiert eine objektive Auswahl an internationalen und nationalen Nachrichtenmedienanbietern. + Verstanden + Vorsicht! + Aufgepasst!\n\nOONI wird die von Ihnen gesendeten Messdaten zusammen mit Ihren Netzwerkinformationen veröffentlichen. + Jeder, der Ihre Internetverbindung überwacht, wird sehen können, dass Sie den News Media Scan nutzen. + Es werden Nachrichten-Websites getestet, die in dem Land, in dem Sie sich gerade befinden, verboten sein könnten. + Ich verstehe + Erfahre mehr + Pop Quiz + Wahr + Falsch + Zurückgehen + Weiter + Frage 1/2 + Falls meine Internetverbindung überwacht wird, wird man sehen können, dass ich den News Media Scan nutze. + Warnung + News Media Scan ist kein Tool zum Schutz der Privatsphäre. Jeder, der Ihre Internetaktivitäten überwacht, kann sehen, welche Software Sie ausführen. + Frage 2/2 + Jedes Mal, wenn ich News Media Scan ausführe, werden die gesammelten Netzwerkdaten automatisch veröffentlicht. + Warnung + Um die Transparenz der Internetzensur zu erhöhen, werden die Netzwerkdaten aller News Media Scan-Benutzer automatisch veröffentlicht (es sei denn, sie lehnen dies in den Einstellungen ab). + Automatisches Testen + Um die Internet-Zensur täglich zu messen, aktivieren Sie bitte die automatische Testfunktion, damit News Media Scan in regelmäßigen Abständen Tests durchführen kann.\n\nKeine Sorge, wir werden den Akkuverbrauch im Auge behalten.\n\nSie können die automatischen Tests jederzeit in den Einstellungen deaktivieren. + Absturz-Berichterstattung + Um News Media Scan zu verbessern, würden wir gerne anonyme Absturzberichte sammeln, wenn die App nicht richtig funktioniert.\n\nMöchten Sie dem OONI-Entwicklungsteam Absturzberichte übermitteln? + Ja + Nein + Vorgabeeinstellungen + Wir sammeln und veröffentlichen: + Ländercode (z. B. DE für Deutschland) + Netzwerkinformationen (einschließlich der Autonomous System Number, ASN) + Zeit & Datum des Tests + Wir tun unser Bestes, um deine IP-Adresse oder andere potentiell persönlich identifizierbare Informationen nicht zu veröffentlichen.\n\nErfahre mehr über [OONI\'s Daten-Richtlinie](https://ooni.org/about/data-policy/). + Indem du auf \"OK\" tippst, teilst du Absturzberichte, um uns dabei zu helfen, OONI Probe zu verbessern. + Auf geht\'s + Defaults ändern + Übersicht + Ausführen + Nicht verfügbar + Ausführen + Letzter Test: + Voraussichtlich: + Wähle Webseiten + Laufend: + Voraussichtliche Restzeit: + %1$s Sekunden + Bereite Test vor + ETA wird errechnet + Zeige Log + Log schliessen + Test wird gestoppt … + Fertigstellung der aktuell ausstehenden Tests, bitte warten ... + Proxy in Verwendung + Tippe auf die Schaltfläche, um mehr zu erfahren + ~%1$ss + Überprüft die Sperrung von Nachrichenportalen + Prüfe mit dem [Webverbindungstest](https://ooni.org/nettest/web-connectivity/) von OONI, ob Websites blockiert sind.\n\nJedes Mal, wenn du auf Ausführen tippst, testest du verschiedene Websites aus den [globalen](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) und [länderspezifischen](https://github.com/citizenlab/test-lists/tree/master/lists) Testlisten des Citizen Labs.\n\nUm die Websites deiner Wahl zu testen, tippst du auf die Schaltfläche Websites auswählen oder wählst Kategorien von Websites über die Einstellungen dieser Karte aus.\n\nDieser Test misst, ob Websites durch DNS-Manipulation, TCP/IP-Blockierung oder durch einen transparenten HTTP-Proxy blockiert werden.\n\nDeine Ergebnisse werden auf dem [OONI Explorer](https://explorer.ooni.org/world/) und [OONI API](https://api.ooni.io/) veröffentlicht. + Prüfe mit dem [Webverbindungstest](https://ooni.org/nettest/web-connectivity/) von OONI, ob Websites blockiert sind.\n\nJedes Mal, wenn du auf Ausführen tippst, testest du verschiedene Websites aus den [globalen](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) und [länderspezifischen](https://github.com/citizenlab/test-lists/tree/master/lists) Testlisten des Citizen Labs.\n\nDieser Test misst, ob Websites durch DNS-Manipulation, TCP/IP-Blockierung oder durch einen transparenten HTTP-Proxy blockiert werden.\n\nDeine Ergebnisse werden auf dem [OONI Explorer](https://explorer.ooni.org/) und [OONI API](https://api.ooni.io/) veröffentlicht. + Teste die Geschwindigkeit und Performance deines Netzwerks + Miss die Geschwindigkeit und Leistung deines Netzwerks mit dem [NDT](https://ooni.org/nettest/ndt/)-Test.\n\nMiss die Videostreaming-Leistung mit dem [DASH](https://ooni.org/nettest/dash/)-Test.\n\nDiese Tests verbrauchen Daten in Abhängigkeit von deiner Netzwerkgeschwindigkeit.\n\nDeine Ergebnisse werden auf dem [OONI Explorer](https://explorer.ooni.org/world/) und [OONI API](https://api.ooni.io/) veröffentlicht.\n\nHaftungsausschluss: Diese Tests verlassen sich auf Server von Drittanbietern. Wir können daher nicht garantieren, dass deine IP-Adresse nicht gesammelt wird. + Wenn Sie die Tests in dieser Karte durchführen, werden Sie:\n\n- die Geschwindigkeit und Leistung Ihres Netzwerks ([NDT](https://ooni.org/nettest/ndt/) Test) messen.\n- Video-Streaming-Leistung messen ([DASH](https://ooni.org/nettest/dash/) test)\n- das Vorhandensein von [Middlebox-Technologien](https://ooni.org/support/glossary/#middlebox) und [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) Tests) in Ihrem Netzwerk ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) prüfen.\n\nDiese Tests verbrauchen Daten abhängig von der Geschwindigkeit Ihres Netzwerks.\n\nIhre Testergebnisse werden auf [OONI Explorer](https://explorer.ooni.org/) und [OONI API](https://api.ooni.io/) veröffentlicht.\n\n**Haftungsausschluss:** Die Tests [NDT](https://ooni.org/nettest/ndt/) und [DASH](https://ooni.org/nettest/dash/) werden gegen Server von Drittanbietern durchgeführt, die von [Measurement Lab (M-Lab)](https://www.measurementlab.net/) bereitgestellt werden. Wenn Sie diese Tests durchführen, wird M-Lab Ihre IP-Adresse (zu Forschungszwecken) erfassen und veröffentlichen, unabhängig von den Einstellungen Ihrer OONI-Sonde. Weitere Informationen über die Datenverwaltung von M-Lab finden Sie in der [Datenschutzerklärung](https://www.measurementlab.net/privacy/). + Entdecke Middleboxen in deinem Netzwerk + Internetdienstanbieter verwenden häufig Netzwerk-Appliances (Middleboxes) für verschiedene Netzwerkzwecke (z. B. Caching). Manchmal werden diese Middleboxes verwendet, um Internetzensur und/oder Überwachung zu implementieren.\n\nFinde Middleboxes in deinem Netzwerk mit OONI\'s [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) und [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/)-Tests.\n\nDeine Ergebnisse werden auf dem [OONI Explorer](https://explorer.ooni.org/world/) und [OONI API](https://api.ooni.io/) veröffentlicht. + Teste das Blockieren von Instant Messaging-Apps + Prüfe, ob [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/) und [Signal](https://ooni.org/nettest/signal) blockiert sind.\n\nDeine Ergebnisse werden auf dem [OONI Explorer](https://explorer.ooni.org/world/) und [OONI API](https://api.ooni.io/) veröffentlicht. + Test auf Blockierung der Instrumente zur Zensurumgehung + Prüfe, ob [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) oder [RiseupVPN](https://ooni.org/nettest/riseupvpn/) blockiert sind.\n\nDeine Ergebnisse werden auf dem [OONI Explorer](https://explorer.ooni.org/) und [OONI API](https://api.ooni.io/) veröffentlicht. + Neue experimentelle Tests durchführen + Führe die folgenden neuen, vom OONI-Team entwickelten experimentellen Tests durch:\n%1$s\n\nDeine Ergebnisse werden im [OONI Explorer] veröffentlicht.(https://explorer.ooni.org/) und [OONI API](https://api.ooni.io/). + Die folgenden Tests werden nur im Rahmen von automatisierten Tests durchgeführt: + Deaktivierte Tests + Gbit/s + Mbit/s + kbit/s + ms + Nicht verfügbar + Unbekannt + Testergebnisse + Testergebnisse + Tests + Netzwerke + Datennutzung + Tests filtern + Alle Tests + Webseiten + Middleboxen + Performance + Instant Messaging + Umgehung + experimentell + Es wurden noch keine Tests durchgeführt. Probiere, einen auszuführen! + %1$s blockiert + %1$s blockiert + %1$s getestet + %1$s getestet + Erkannt + Nicht erkannt + Fehlgeschlagen + %1$s blockiert + %1$s blockiert + %1$s erreichbar + %1$s erreichbar + %1$s blockiert + %1$s blockiert + %1$s verfügbar + %1$s verfügbar + Unvollständiges Resultat + Fehler + Fehler in Messung + Ergebnisse nicht hochgeladen + Datum & Zeit + Netzwerk + Land + Datennutzung + Gesamtlaufzeit + WLAN + Mobile Daten + Kein Internet + Fehlgeschlagen + Getestet + Getestet + Gesperrt + Gesperrt + Webseite + Webseiten + Zugänglich + Zugänglich + Video + Qualität + Hochladen + Herunterladen + Ping + Erkannt + Nicht erkannt + Fehlgeschlagen + Getestet + Getestet + Gesperrt + Gesperrt + Zugänglich + Zugänglich + App + Apps + Getestet + Getestet + Gesperrt + Gesperrt + Arbeite + Arbeite + Werkzeug + Werkzeuge + Laufzeit + Methodik + Log ansehen + Daten + Explorer URL kopieren + Explorer URL teilen + In die Zwischenablage kopieren + In OONI Explorer anzeigen + Fehlgeschlagen + Du kannst versuchen, diesen Test erneut auszuführen + Noch einmal versuchen + Erfahre [hier](%1$s), wie dieser Test funktioniert. + Zugänglich + %1$s ist zugänglich. + Wahrscheinlich blockiert + %1$s ist wahrscheinlich blockiert wegen %2$s.\n\nHinweis: Falsch positive Ergebnisse können auftreten. Erfahre [hier](https://ooni.org/support/faq/#what-are-false-positives) mehr dazu. + Zensurumgehung + **DNS-Manipulation** + **TCP/IP basiertes Blocken** + **HTTP blockiert (eventuell wird eine Sperrseite angezeigt)** + **HTTP blockiert (HTTP-Anfrage fehlgeschlagen)** + Mobile App + OK + Fehlgeschlagen + WhatsApp Web + OK + Fehlgeschlagen + Registrierung + OK + Fehlgeschlagen + Arbeite + Dieser Test hat eine erfolgreiche Verbindung zu WhatsApp\'s Endpunkten, Registrierungsservice und Weboberfläche (web.whatsapp.com) hergestellt. + Wahrscheinlich blockiert + WhatsApp scheint geblockt zu sein. + Mobile App + OK + Fehlgeschlagen + Telegram Web + OK + Fehlgeschlagen + Arbeite + Dieser Test hat eine erfolgreiche Verbindung zu Telegram\'s Endpunkten und dessen Weboberfläche (web.telegram.org) hergestellt. + Wahrscheinlich blockiert + Telegram scheint geblockt zu sein. + TCP-Verbindungen + OK + Fehlgeschlagen + DNS-Lookups + OK + Fehlgeschlagen + Arbeite + Dieser Test hat eine erfolgreiche Verbindung zu den Endpunkten von Facebook hergestellt und wurde zu Facebooks IP-Adressen aufgelöst. + Wahrscheinlich blockiert + Facebook Messenger scheint geblockt zu sein. + Wahrscheinlich blockiert + Signal scheint blockiert zu sein. + Funktioniert + Dieser Test hat erfolgreich eine Verbindung zu den Endpunkten von Signal hergestellt. + Keine Middleboxen entdeckt + Bei der Kommunikation mit unseren Servern wurde keine Netzwerkanomalie festgestellt. + Netzwerkmanipulation + Der Netzwerkverkehr wurde während der Kontaktaufnahme mit unseren Steuerungsservern manipuliert.\n\nDies bedeutet, dass in deinem Netzwerk möglicherweise eine Middlebox vorhanden ist, die für Zensur und/oder Überwachung verantwortlich sein kann. + Keine Middleboxen entdeckt + Bei der Kommunikation mit unseren Servern wurde keine Netzwerkanomalie festgestellt. + Netzwerkmanipulation + Der Netzwerkverkehr wurde während der Kontaktaufnahme mit unseren Steuerungsservern manipuliert.\n\nDies bedeutet, dass in deinem Netzwerk möglicherweise eine Middlebox vorhanden ist, die für Zensur und/oder Überwachung verantwortlich sein kann. + Sie haben gesendet + Sie haben empfangen + Hochladen + Herunterladen + Ping + Server + Weiterleitungsrate + Außer Betrieb + Durchschnittlicher Ping + Maximale Ping-Schätzung + MSS + Timeouts + Du kannst ohne Pufferung bis zu %1$s streamen. + Mittlere Bitrate + Abspiel-Verzögerung + Wahrscheinlich blockiert + Funktioniert + [Psiphon](https://psiphon.ca/) scheint blockiert zu werden. + Wir konnten erfolgreich eine Psiphon-Verbindung herstellen. Das bedeutet, dass [Psiphon](https://psiphon.ca/) funktionieren sollte. + Bootstrap Zeit + %1$s s + Wahrscheinlich blockiert + Funktioniert + [Tor](https://www.torproject.org/) scheint blockiert zu werden. + Wir konnten uns erfolgreich mit den Standard-Tor-Brücken und/oder den Tor-Verzeichnisautoritäten verbinden. Das bedeutet, dass [Tor](https://www.torproject.org/) funktionieren sollte. + Standard-Brücken + %1$s/%2$s OK + Verzeichnisautoritäten + %1$s/%2$s OK + Name + Adresse + Typ + Verbinden + Handschlag + Wahrscheinlich blockiert + Funktioniert + [RiseupVPN](https://riseup.net/vpn) scheint blockiert zu werden. + Wir sind in der Lage, uns erfolgreich mit RiseupVPN\'s Bootstrap Server und VPN-Gateways zu verbinden. Das bedeutet, dass [RiseupVPN](https://riseup.net/vpn) funktionieren sollte. + Bootstrap Server + OpenVPN Verbindungen + Überbrückte Verbindungen + Gesperrt + %1$s blockiert + %1$s blockiert + OK + Dies ist ein experimenteller Test. + Feed + Feed + OK + Abbrechen + Nein, nicht erneut nachfragen + Entfernen + Fehler + Versuche erneut + Hört sich toll an + Nein, danke + Nicht jetzt + Trotzdem ausführen + VPN deaktivieren + Immer gestartet + Test konnte nicht ausgeführt werden. Bitte überprüfe deine Internetverbindung. + URL-Liste kann nicht heruntergeladen werden. Bitte versuche es erneut. + Bitte warte, bis die laufenden Tests beendet sind, bevor du einen neuen Test startest. + Benachrichtigungsberechtigungen sind erforderlich. Bitte aktiviere sie in den Einstellungen deines Telefons und anschließend in deiner OONI Probe App. + Gehe zu Einstellungen + Dieser Bildschirm ist gesperrt, während ein Test ausgeführt wird. + Um die rohen Messdaten herunterladen zu können, müssen Sie mit dem Internet verbunden sein. + Ergebnisse nicht hochgeladen + Manche deiner Testergebnisse wurden nicht auf OONI-Server hochgeladen. Wenn du zu OONIs Datensatz beitragen möchtest, lade sie bitte hoch. + Hochladen + Hochladen von %1$s ... + OONI Probe kann nicht automatisch ohne Batterieoptimierung laufen. Möchtest du es noch einmal versuchen? + Bitte deaktiviere deine VPN-Verbindung. + Wenn du OONI Probe mit aktiviertem VPN ausführst, kann es sein, dass die Testergebnisse aus dem falschen Land stammen. Bitte deaktiviere deine VPN-Verbindung. + Einige Messungen wurden über VPN durchgeführt. + Wenn du Messungen hochlädst, die bei aktiviertem VPN gemacht wurden, kann es sein, dass die Testergebnisse aus dem falschen Land stammen. + Hochladen war erfolgreich + Fehlerlog anzeigen + Aktuelle Informationen zur Internetzensur + Bist du daran interessiert, OONI Probe-Tests während auftretender Zensurereignisse durchzuführen? Aktiviere Benachrichtigungen, um eine Nachricht zu erhalten, wenn wir von Internet-Zensur in deiner Nähe erfahren. + Um die Genauigkeit von Tests zu verbessern brauchen wir Berechtigung für GPS. OONI wird nur eine ungefähre Position aufnehmen. + Möchtest du alle Testergebnisse löschen? + Möchtest du diesen Test löschen? + Bitte aktiviere mindestens einen Test + Bitte gib nur Ziffern in dieses Feld ein. + Wiederhole Test + Dieser Test ist fehlgeschlagen. Erneut ausführen? + Sie sind dabei, %1$s Websites erneut zu testen. + Ausführen + Bist du sicher? + Deine URLs werden nicht gespeichert, wenn du diesen Bildschirm verlässt. Möchtest du diesen Bildschirm wirklich verlassen? + Manuelles Hochladen aktivieren? + Mit dieser Einstellung kannst du unveröffentlichte Messungen manuell erneut hochladen. + Aktivieren + Nein, danke + Hochladen fehlgeschlagen + Wir haben es nicht geschafft, %1$s/%2$s Messungen hochzuladen. Das Fehlerprotokoll wurde den OONI-Entwicklern zur Verfügung gestellt. + Logdatei nicht gefunden + Keine gültigen URLs gefunden + JSON ist leer + Möchten Sie diesen Test unterbrechen? + Dies wird den laufenden Test ab diesem Zeitpunkt unterbrechen. + Möchtest du Tests automatisch ausführen lassen? + Durch die Aktivierung automatisierter Tests wirst du regelmäßig OONI-Messungen durchführen. + Bitte lass die App im Hintergrund laufen. + Später erinnern + In Zwischenablage kopiert + Nicht hochgeladen + Hochladen + Manche nicht hochgeladen + Alle hochladen + Nachrichtenportale + Instant Messaging + Middleboxen + Performance + Umgehung + experimentell + HTTP Invalid Request Line Test + HTTP Header Field Manipulation Test + Web Connectivity Test + NDT Speed Test + DASH Streaming Test + WhatsApp-Test + Telegram-Test + Facebook Messenger Test + Psiphon Test + Tor Test + RiseupVPN Test + Signal-Test + Einstellungen + Die eingestellte Zeit für den Test ist zu kurz. + Über News Media Scan + Diese App ist in in enger Zusammenarbeit zwischen der Deutschen Welle (DW) und OONI entstanden.\n\nÜber DW: Freie Informationen für freie Entscheidungen – das ist der Markenkern der Deutschen Welle (DW). Als unabhängiges, internationales Medienunternehmen informiert der deutsche Auslandssender Menschen weltweit. Mit Programmangeboten in 32 Sprachen verbindet die DW täglich Menschen in aller Welt – via TV, Radio, Internet und Sozialen Medien.\n\nWeitere Infos [über DW](https://corporate.dw.com/en/about-dw/s-30688) .\n\nÜber OONI: Das 2012 gegründete Open Observatory of Network Interference (OONI) ist ein gemeinnütziges, freies Softwareprojekt, das dezentrale Bemühungen zur Dokumentation von Internetzensur auf der ganzen Welt fördern will. Dank ihrer globalen Gemeinschaft wurden [mehr als eine Milliarde Netzwerkmessungen](https://explorer.ooni.org/) aus mehr als 200 Ländern veröffentlicht, die Aufschluss über Fälle von Internetzensur weltweit geben.\n\nSeien Sie Teil der Internet Freedom-Bewegung, indem Sie Daten aus Ihrem Netz bereitstellen. + Erfahre mehr + Blog + Berichte + OONI Datenschutzbestimmungen + Benachrichtigungen + Aktiviert + Benachrichtigung nach Abschluss des Tests + Neuigkeiten + Automatisches Testen + Tests automatisch ausführen + Anzahl der automatisierten Tests: %1$s. + Letzter automatisierter Test: %1$s. + Nur bei WLAN + Nur während des Ladevorgangs + Wenn du das automatische Testen aktivierst, werden die OONI Probe-Tests automatisch mehrmals am Tag ausgeführt. Deine Testergebnisse werden automatisch im OONI Explorer veröffentlicht: https://explorer.ooni.org/ \n\nWichtig: Wenn du ein VPN aktiviert hast, wird OONI Probe die Tests nicht automatisch ausführen. Bitte schalte dein VPN für automatische OONI Probe-Tests aus. Mehr dazu: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + Teilen + Ergebnisse automatisch veröffentlichen + Manuelles Hochladen der Ergebnisse + Netzwerkinformationen einbeziehen + Ungefähren Standort einbeziehen + IP-Addresse einbeziehen + Ländercode einbeziehen + Diese Information (z. B. IT für Italien) ist notwendig um festzustellen von welchem Land die Messung durchgeführt wurde. Bist du dir sicher, dass du diese Option deaktivieren möchtest? + Mit der Veröffentlichung von Ergebnissen erhöhst du die Transparenz um Netzwerkbeeinflussung und unterstützt die OONI Gemeinschaft.\n\nNetzwerkinformationen sind notwendig (z. B. die Autonomous System Nummer) um den Internetanbieter zu identifizieren.\n + Testoptionen + Was du in den obigen Testeinstellungen konfigurierst (z. B. die Deaktivierung des WhatsApp-Tests), gilt sowohl für manuell durchgeführte Tests als auch für automatisch durchgeführte Tests (wenn automatisierte Tests aktiviert sind). + Langzeittest + Langzeittests im Vordergrund ausführen? + Privatsphäre + Sende Absturzberichte + Erweitert + Dunkelmodus + Fehlerprotokolle + Aktuelle Protokolle anzeigen + Spracheinstellung + Sprache auswählen + Immer Domain Fronting benutzen + Backend proxy + Proxy + Nichts + Psiphon + Benutzerdefinierter Proxy + Benutzerdefinierter Proxy URL + Benutzerdefiniertes Proxy-Protokoll + Verbindung + Hostname + Anschluss + Anmeldedaten (optional) + Benutzername + Passwort + Psiphon über benutzerdefinierten Proxy verwenden + Kannst du OONI Probe nicht verwenden? Versuche [Psiphon](https://psiphon.ca/) zu aktivieren, um eine mögliche Blockierung von OONI Probe zu umgehen. Alternativ kannst du auch einen benutzerdefinierten Proxy verwenden. + Testdauer begrenzen + Testdauer + Zu testende Webseiten-Kategorien + %1$s aktivierte Kategorien + Bearbeiten + Alles abwählen + Alles auswählen + Speichern + Ungespeicherte Änderungen + Sie haben einige Änderungen an den aktivierten Kategorien vorgenommen. Möchten Sie diese speichern? + Speichern + Verwerfen + Wähle Webseiten zum testen aus + URL + Keine URLs eingegeben + Ausführen + Webseite hinzufügen + Aus Vorlage laden + Anzahl der getesteten Websites (0 bedeutet alle) + WhatsApp testen + Telegram testen + Facebook Messenger testen + Test Signal + Führe den HTTP Invalid Request Line Test aus + Führe den HTTP Header Field Manipulation Test aus + Führe den NDT-Geschwindigkeitstest aus + Automatische NDT Serverauswahl + NDT-Serveradresse + NDT-Serverport + Führe den DASH Streaming Test aus + Automatische DASH Serverauswahl + DASH-Server + DASH-Serverport + Psiphon testen + Tor Testen + Teste RiseupVPN + Warnen, wenn VPN in Gebrauch ist + E-Mail an den Support senden + Beschreibe bitte das Problem, das bei dir auftritt: + Bitte senden Sie eine E-Mail an bugs@openobservatory.org mit Informationen zur App und iOS-Version. Tippen Sie unten auf \"In Zwischenablage kopieren\", um unsere E-Mail Adresse zu kopieren. + Aktuelle App-Sprache ist %1$s + Sprache + Speicherplatz-Nutzung + Belegter Speicherplatz + Löschen + Löschen + Du bist im Begriff, alle OONI-Messungen von deinem Gerät zu löschen. Wenn sie hochgeladen wurden, sind sie weiterhin auf dem [OONI Explorer](https://explorer.ooni.org) verfügbar. + Vollständig ausgeführt + Test anhalten + Versuche Mirror + Lade... + Ein unerwarteter Fehler ist aufgetreten. Bitte lade diese Seite erneut. + Du bist im Begriff, einen OONI Probe Test durchzuführen. + %1$s URLs + Testname + Test Details + Ausführen + Veraltet + Du brauchst eine neuere Version von OONI Probe um diesen Test auszuführen. + Update + Schließen + Ungültiger Parameter + Der OONI Run-Link ist entweder fehlerhaft oder deine App ist veraltet. + Du wirst eine zufällige Auswahl von Webseiten testen. + Bitte warten Sie, bis der Test beendet ist, bevor Sie auf einen OONI Run-Link tippen. + Lies mehr + Lies weniger + Drogen & Alkohol + Religion + Pornografie + Provokative Kleidung + Politische Kritik + Menschenrechtsfragen + Umwelt + Terrorismus und Militanz + Hassrede + Nachrichtenmedien + Sexuelle Aufklärung + Gesundheitswesen + Glücksspiel + Umgehungswerkzeuge + Online-Dating + Soziale Netzwerke + LGBTQ+ + Datenaustausch + Hacking-Werkzeuge + Kommunikations-Werkzeuge + Medienaustausch + Hosting und Blogging + Suchmaschinen + Gaming + Kultur + Wirtschaft + Regierung + E-Commerce + Kontroll-Inhalte + Zwischenstaatliche Organisationen + Sonstige Inhalte + Gebrauch und Verkauf von Drogen und Alkohol + Religiöse Fragen, sowohl unterstützend als auch kritisch + Hardcore- und Softcore-Pornografie + Provokative Kleidung und Darstellung von Frauen mit minimaler Kleidung + Kritische politische Standpunkte + Menschenrechtsfragen + Diskussionen zu Umweltfragen + Terrorismus, gewalttätig-militante oder separatistische Bewegungen + Herabwürdigung bestimmter Gruppen aufgrund von Rasse, Geschlecht, Sexualität oder anderen Merkmalen + Große Nachrichtenseiten, regionale Zeitungen und unabhängige Medien + Sexuelle Gesundheitsprobleme einschließlich Verhütung, sexuell übertragbarer Krankheiten, Vergewaltigungsprävention und Abtreibung + Fragen der öffentlichen Gesundheit, wie COVID-19, HIV/AIDS, Ebola + Online-Glücksspiele und Wetten + Anonymisierung, Zensurumgehung und Verschlüsselung + Online-Dating-Seiten + Online-Tools für soziale Netzwerke und Plattformen + LGBTQ+ Communities, die verwandte Themen diskutieren (außer Pornografie). + Datentausch inklusive Cloud-basierter Dateispeicherung, Torrents und P2P + Tools und Neuigkeiten im Bezug auf Computersicherheit + Kommunikationswerkzeuge für Einzelpersonen und Gruppen, inklusive VoIP, Messaging und Webmail + Teilen von Video, Audio und Photos + Webhosting, Blogs und andere Onlineveröffentlichungen + Suchmaschinen und Portale + Online-Spiele und Spieleplattformen (Glücksspielseiten ausgenommen) + Unterhaltung inklusive Geschichte, Literatur, Musik, Film, Satire und Humor + Allgemeine wirtschaftliche Entwicklung und Armut + Regierungs-Webseiten, einschließlich Militär + Kommerzielle Dienstleistungen und Produkte + Gutartiger oder harmloser Inhalt, der als Kontrolle verwendet wird + Zwischenstaatliche Organisationen einschließlich der Vereinten Nationen + Bisher unkategorisierte Webseiten + Nicht erneut nachfragen + Benachrichtigungen über den Testfortschritt aktivieren + Möchtest du Benachrichtigungen über den Fortschritt von OONI Probe-Tests aktivieren und laufende Tests in der Benachrichtigungsschublade anzeigen? + Lade Link + Fehler + Link-Installation abgebrochen + Erzeugt von %s am %s\n\n%s + Link deinstallieren + Überprüfung der Aktualisierungen + Frühere Überarbeitungen + Du kannst diesen Link nur über den Original-Link installieren, den der Ersteller geschickt hat. + Weitere Informationen + Websites automatisch testen + Fehler + OONI Tests + OONI Run Links + Ausführung beendet. Tippe, um die Ergebnisse anzuzeigen. + ABGELAUFEN + AKTUALISIERT + Installiere neuen Link + Autor: + Einstellungen testen + Installiere Aktualisierungen automatisch + Tests automatisch ausführen + Link installiert + Installiere Link + Link-Installation abgebrochen + AKTUALISIERUNGEN + Teste %s URLs + Teste URLs + Link Aktualisierung + Link(s) aktualisiert + Link Aktualisierung (%1$s von %2$s) + AKTUALISIERUNG UND ABSCHLUSS (%1$s von %2$s) + AKTUALISIERUNG (%1$s von %2$s) + Aktualisieren + Führe Tests aus + Führe Tests aus + Bitte wähle den auszuführenden Test + Führe %s Test(s) aus + Wähle den auszuführenden Test + Alle Tests auswählen + Alle Tests abwählen + Lade Link + Lade Link Aktualisierung + Link Aktualisierungen bereit + Überprüfen + %s Eingaben + Zurück + refresh + Einklappen + Ausklappen + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Januar + Februar + März + April + Mai + Juni + Juli + August + September + Oktober + November + Dezember + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Fehlgeschlagen + OK + Anomalie + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Protokolle + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testvorgang + Manual Run + Auto Run + VPN + diff --git a/news-media-scan/en/strings.xml b/news-media-scan/en/strings.xml index f8a4c9b..5a75805 100644 --- a/news-media-scan/en/strings.xml +++ b/news-media-scan/en/strings.xml @@ -308,6 +308,7 @@ This test has failed. Re-run the test? You are about to re-test %1$s websites. Run + Are you sure? Your URLs will not be saved when you leave this screen. Are you sure you want to leave this screen? Enable Manual Upload? This setting allows you to manually re-upload unpublished measurements. @@ -468,6 +469,8 @@ The OONI Run link is either malformed or your app is out of date. You will test a random sample of websites. Please wait for the test to finish running before tapping on an OONI Run link. + Read more > + Read less > Drugs & Alcohol Religion Pornography @@ -530,4 +533,107 @@ Benign or innocuous content used for control Intergovernmental organizations including The United Nations Sites that haven\'t been categorized yet + Don’t ask again + Enable test progress notifications + Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? + Link Loading + Error + Link installation cancelled + Created by %s on %s\n\n%s + Uninstall Link + Review Updates + Previous revisions + You will be able to install this link again only from the original link sent by the creator. + See More + Test websites automatically + Error + OONI Tests + OONI Run Links + Run finished. Tap to view results. + EXPIRED + UPDATED + Install New Link + Author: + Test Settings + Install updates automatically + Run tests automatically + Link installed + Install Link + Link installation cancelled + UPDATES + Test %s URLs + Test URLs + Link Update + Link(s) updated + Link Update (%1$s of %2$s) + UPDATE AND FINISH (%1$s of %2$s) + UPDATE (%1$s of %2$s) + Update + Run tests + Run Tests + Please select test to run + Run %s test(s) + Select the tests to run + Select all tests + Deselect all tests + Link Loading + Link updates loading + Link updates ready + Review + %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/news-media-scan/es/description.xlf b/news-media-scan/es/description.xlf new file mode 100644 index 0000000..5ab849f --- /dev/null +++ b/news-media-scan/es/description.xlf @@ -0,0 +1,42 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + News Media Scan + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Descubra el bloqueo de los sitios de medios de comunicación en su área. + This is limited by Google to 80 characters + + + News Media Scan + News Media Scan + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Descubra el bloqueo de los sitios de medios de comunicación en su área. + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + Recopila evidencia de censura en Internet. Mide la velocidad y rendimiento de tu red. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Descubra si puede llegar a los sitios de noticias que necesita o si están bloqueados\n - Los medios de comunicación por DW le proporcionan la transparencia que necesita. También hará una valiosa contribución a la comunidad global de "libertad de Internet" al ayudar a descubrir la censura en todo el mundo. Esta aplicación es el producto de una estrecha cooperación entre Deutsche Welle (DW) y Ooni. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + red, test, velocidad, medición, red, wifi, conexión, escaneado, ancho, banda, prueba, dns, móvil, ooni, investigación, herramienta, medir, celular, teléfono celular, ancho de banda, prueba, escaneo + + +
+
\ No newline at end of file diff --git a/news-media-scan/es/strings.json b/news-media-scan/es/strings.json new file mode 100644 index 0000000..383f93f --- /dev/null +++ b/news-media-scan/es/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "¿Están bloqueados en su región los sitios de noticias?", + "Onboarding.WhatIsOONIProbe.Paragraph": "¡Ejecute News Media Scan para descubrirlo! News Media Scan es la primera aplicación que le brinda transparencia sobre el panorama de las noticias en la región en la que usted se encuentra actualmente. También hace una contribución importante a la medición de la censura en todo el mundo.\n\nLa lista que ve en la aplicación es una lista pública seleccionada por la comunidad en GitHub y no por DW. Representa una selección objetiva de proveedores de medios de noticias nacionales e internacionales.", + "Onboarding.ThingsToKnow.Bullet.1": "¡Atención!\n\nOONI publicará las métricas que envíe junto con la información de su red.", + "Onboarding.ThingsToKnow.Bullet.2": "Cualquiera que supervise su conexión a Internet podrá ver que está utilizando News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "Compruebe sitios web de noticias que pueden estar prohibidos en el país en el que se encuentra actualmente.", + "Onboarding.PopQuiz.1.Question": "Si alguien está monitorizando mi actividad en internet, verán que utilizo News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan no es una herramienta de privacidad. Cualquiera que pueda ver su actividad en internet verá qué programas ejecuta.", + "Onboarding.PopQuiz.2.Question": "Siempre que ejecuto News Media Scan, los datos de red que recopilo se publicarán en automático.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "Para aumentar la transparencia sobre la censura en internet, los datos de red de todos los usuarios de News Media Scan se publican automáticamente (salvo que se excluya en la configuración).", + "Onboarding.AutomatedTesting.Paragraph": "Para medir cada día la censura en Internet, habilite la función de prueba automática para que News Media Scan pueda ejecutar pruebas a intervalos regulares.\nNo se preocupe, estaremos atentos al uso de la batería.\nPuede desactivar las pruebas automáticas en cualquier momento en Configuración.", + "Onboarding.Crash.Paragraph": "Para mejorar News Media Scan, nos gustaría recopilar datos anónimos sobre fallos inesperados al usar la aplicación.\n\n¿Quiere enviar informes de fallos al equipo de desarrollo de OONI?", + "Dashboard.Websites.Card.Description": "Comprueba el bloqueo a sitios web de noticias", + "Test.Websites.Fullname": "Sitios web de noticias", + "Settings.About.Label": "Acerca de News Media Scan", + "Settings.About.Content.Paragraph": "Esta aplicación fue creada en estrecha colaboración entre Deutsche Welle (DW) y OONI.\n\nAcerca de DW: Información gratuita para decisiones libres: esa es la marca central de Deutsche Welle (DW). Como empresa de medios internacional e independiente, la emisora ​​internacional alemana informa a personas de todo el mundo. Con programación en 32 idiomas, DW conecta a personas de todo el mundo todos los días, a través de televisión, radio, Internet y redes sociales.\n\nMás información: [Sobre DW](https://corporate.dw.com/en/about-dw/s-30688) (en inglés)\n\nAcerca de OONI: Fundado en 2012, el Open Observatory of Network Interference [(OONI)](https://explorer.ooni.org/) es un proyecto de software libre sin fines de lucro que tiene como objetivo promover esfuerzos descentralizados para documentar la censura de Internet en todo el mundo.\n\nSea parte del movimiento por la libertad en Internet proporcionando datos de su red.", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/es/strings.xml b/news-media-scan/es/strings.xml new file mode 100644 index 0000000..235b2e4 --- /dev/null +++ b/news-media-scan/es/strings.xml @@ -0,0 +1,639 @@ + + + News Media Scan + ¿Están bloqueados en su región los sitios de noticias? + ¡Ejecute News Media Scan para descubrirlo! News Media Scan es la primera aplicación que le brinda transparencia sobre el panorama de las noticias en la región en la que usted se encuentra actualmente. También hace una contribución importante a la medición de la censura en todo el mundo.\n\nLa lista que ve en la aplicación es una lista pública seleccionada por la comunidad en GitHub y no por DW. Representa una selección objetiva de proveedores de medios de noticias nacionales e internacionales. + Lo tengo + ¡Atención! + ¡Atención!\n\nOONI publicará las métricas que envíe junto con la información de su red. + Cualquiera que supervise su conexión a Internet podrá ver que está utilizando News Media Scan. + Compruebe sitios web de noticias que pueden estar prohibidos en el país en el que se encuentra actualmente. + Entiendo + Conocer más + Cuestionario sorpresa + Verdadero + Falso + Volver + Continuar + Pregunta 1/2 + Si alguien está monitorizando mi actividad en internet, verán que utilizo News Media Scan. + Advertencia + News Media Scan no es una herramienta de privacidad. Cualquiera que pueda ver su actividad en internet verá qué programas ejecuta. + Pregunta 2/2 + Siempre que ejecuto News Media Scan, los datos de red que recopilo se publicarán en automático. + Advertencia + Para aumentar la transparencia sobre la censura en internet, los datos de red de todos los usuarios de News Media Scan se publican automáticamente (salvo que se excluya en la configuración). + Pruebas automatizadas + Para medir cada día la censura en Internet, habilite la función de prueba automática para que News Media Scan pueda ejecutar pruebas a intervalos regulares.\nNo se preocupe, estaremos atentos al uso de la batería.\nPuede desactivar las pruebas automáticas en cualquier momento en Configuración. + Informes de error + Para mejorar News Media Scan, nos gustaría recopilar datos anónimos sobre fallos inesperados al usar la aplicación.\n\n¿Quiere enviar informes de fallos al equipo de desarrollo de OONI? + Si + No + Configuración predeterminada + Recopilamos y publicamos: + Código de país (ej. IT por Italia) + Información de red (incluyendo Número de Sistema Autónomo) + Hora y fecha de la prueba + Hacemos lo humanamente posible para no publicar tu dirección IP o cualquier otra información potencialmente identificable a nivel personal. \n\nAprende más a través de la [Política de Datos de OONI](https://ooni.org/about/data-policy/). + Al pulsar \"Aceptar\", compartirás informes de falla para ayudarnos a mejorar OONI Probe. + Vamos + Cambiar ajustes + Dashboard + Ejecutar + N/D + Ejecutar + Prueba anterior: + Estimado: + Elige sitios web + Ejecutando: + Tiempo restante estimado: + %1$s segundos + Preparando prueba + Calculando ETA + Mostrar registro (\'log\') + Cerrar registro + Deteniendo prueba... + Finalizando las pruebas actualmente pendientes, por favor espera... + Proxy en uso + Pulsar tarjeta por más + ~%1$ss + Comprueba el bloqueo a sitios web de noticias + Comprobar si los sitios web están bloqueados usando la [prueba conectividad de la Web] de OONI (https://ooni.org/nettest/web-connectivity/).\n\nCada vez que pulsas Ejecutar, pruebas diferentes sitios web incluidos en las listas de pruebas de Citizen Lab [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) y [específicas por país](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nPara probar los sitios de tu elección, pulsa el botón Elegir sitios web o selecciona categorías de sitios vía los ajustes de ésta tarjeta.\n\nEsta prueba mide si los sitios web están bloqueados por medio de manipulación de DNS, bloqueo de TCP/IP o por un proxy transparente HTTP.\n\nTus resultados serán publicados en el [Explorador OONI](https://explorer.ooni.org/world/) y la [API OONI](https://api.ooni.io/). + Comprueba si los sitios web están bloqueados usando la [prueba conectividad de la Web] de OONI (https://ooni.org/nettest/web-connectivity/).\n\nProbarás los sitios web incluídos en las listas de pruebas de Citizen Lab [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) y [específicas por país](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nEsta prueba mide si los sitios web están bloqueados por medio de manipulación de DNS, bloqueo de TCP/IP o por un proxy HTTP transparente.\n\nTus resultados serán publicados en el [Explorador OONI](https://explorer.ooni.org/) y la [API OONI](https://api.ooni.io/). + Mide la velocidad y rendimiento de tu red + Mide la velocidad y rendimiento de tu red usando la prueba [NDT](https://ooni.org/nettest/ndt/).\n\nMide el rendimiento del streaming de vídeo usando la prueba [DASH](https://ooni.org/nettest/dash/).\n\nEstas pruebas consumen datos dependiendo de la velocidad de tu red.\n\nTus resultados serán publicados en el [Explorador OONI](https://explorer.ooni.org/world/) y la [API OONI](https://api.ooni.io/).\n\nDescargo: Estas pruebas dependen de servidores de terceros. Por lo tanto, no podemos garantizar que tu dirección IP no será recopilada. + Al ejecutar las pruebas en esta tarjeta, tu:\n\n- Medirás la velocidad y desempeño de tu red (prueba [NDT](https://ooni.org/nettest/ndt/))\n- Medirás el desempeño del streaming de vídeo (prueba [DASH](https://ooni.org/nettest/dash/))\n- Comprobarás la presencia de [tecnologías middlebox] (https://ooni.org/support/glossary/#middlebox) en tu red (pruebas [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) y [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/))\n\nEstas pruebas consumen datos dependiendo de la velocidad de tu red.\n\nLos resultados de tus pruebas serán publicados en [Explorador OONI](https://explorer.ooni.org/) y [OONI API](https://api.ooni.io/).\n\n**Descargo:** Las pruebas [NDT](https://ooni.org/nettest/ndt/) y [DASH](https://ooni.org/nettest/dash/) son conducidas en contra de servidores de terceros provistos por [Measurement Lab (M-Lab)](https://www.measurementlab.net/). Si las ejecutas, M-Lab recolectará y publicará tu dirección IP (por propósitos de investigación), independientemente de tus ajustes de OONI Probe. Aprende más acerca de la política de datos de M-Lab’s a través de su [declaración de privacidad](https://www.measurementlab.net/privacy/). + Detecta middleboxes en tu red + Los Proveedores de Servicio de Internet a menudo usan dispositivos de red (middleboxes) para varios propósitos técnicos (tales como cacheo). A veces estos middleboxes son usados para implementar censura y/o vigilancia de Internet.\n\nEncuentra middleboxes en tu red usando las pruebas de OONI [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) y [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/).\n\nTus resultados serán publicados en el [Explorador OONI](https://explorer.ooni.org/world/) y la [API OONI](https://api.ooni.io/). + Prueba el bloqueo de aplicaciones de mensajería instantánea. + Comprueba si [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/) y [Signal](https://ooni.org/nettest/signal) están bloqueados.\n\nTus resultados serán publicados en el [Explorador OONI](https://explorer.ooni.org/world/) y la [API OONI](https://api.ooni.io/). + Probar el bloqueo de herramientas de elusión de censura + Comprueba si [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) o [RiseupVPN](https://ooni.org/nettest/riseupvpn/) están bloqueados.\n\nTus resultados serán publicados en [Explorador OONI] (https://explorer.ooni.org/) y [OONI API](https://api.ooni.io/). + Ejecutar nuevas pruebas experimentales + Ejecutar las siguientes nuevas pruebas experimentales desarrolladas por el equipo OONI:\n%1$s\n\nTus resultados serán publicados en el [Explorador OONI](https://explorer.ooni.org/) y el [API OONI](https://api.ooni.io/). + Las siguientes pruebas solo se ejecutarán como parte de las pruebas automatizadas: + Pruebas Deshabilitadas + Gbit/s + Mbit/s + kbit/s + ms + N/D + Desconocido + Resultados de la prueba + Resultados de la prueba + Pruebas + Redes + Uso de datos + Filtrar Pruebas + Todas las Pruebas + Sitios web + Middleboxes + Rendimiento + Mensajería instantánea + Evasión + Experimental + Ninguna prueba ha sido ejecutada aún. ¡Intenta ejecutar una! + %1$s bloqueado + %1$s bloqueados + %1$s probado + %1$s probados + Detectado + No detectado + Falló + %1$s bloqueado + %1$s bloqueados + %1$s accesible + %1$s accesibles + %1$s bloqueado(s) + %1$s bloqueados + %1$s disponible(s) + %1$s disponible(s) + Resultado incompleto + Error + Error de medición + Resultados no se subieron + Fecha y Hora + Red + País + Uso de datos + Tiempo total ejecución + WiFi + Datos móviles + No hay Internet + Falló + Probado + Probados + Bloqueado + Bloqueados + Sitio web + Sitios web + Accesible + Accesibles + Vídeo + Calidad + Subida + Descarga + Ping + Detectado + No detectado + Falló + Probado + Probados + Bloqueado + Bloqueados + Accesible + Accesibles + Aplicación + Aplicaciones + Probados + Probados + Bloqueados + Bloqueados + Funcionando + Funcionando + Herramienta + Herramientas + Tiempo de ejecución + Metodología + Ver registro + Datos + Copiar URL del explorador + Compartir URL del explorador + Copiar al portapapeles + Mostrar en Explorador OONI + Falló + Puedes ejecutar esta prueba de nuevo + Intenta otra vez + Aprende cómo funciona esta prueba [aquí](%1$s). + Accesible + %1$s es accesible. + Probablemente bloqueado + %1$s está probablemente bloqueado debido a %2$s.\n\nNota: Falsos positivos pueden ocurrir. Aprende más [aquí](https://ooni.org/support/faq/#what-are-false-positives). + Evasión de censura + **Manipulación DNS** + **Bloqueo basado en TCP/IP** + **Bloqueo HTTP (una página de bloqueo puede ser servida)** + **Bloqueo HTTP (petición HTTP falló)** + Aplicación móvil + Aceptar + Falló + WhatsApp Web + Aceptar + Falló + Registro + Aceptar + Falló + Funcionando + Esta prueba se conectó exitosamente a WhatsApp, el servicio de registro y la interfaz web (web.whatsapp.com). + Probablemente bloqueado + WhatsApp parece estar bloqueado. + Aplicación móvil + Aceptar + Falló + Telegram Web + Aceptar + Falló + Funcionando + Esta prueba se conectó exitosamente a Telegram y la interfaz web (web.telegram.org). + Probablemente bloqueado + Telegram parece estar bloqueado. + Conexiones TCP + Aceptar + Falló + Búsquedas DNS + Aceptar + Falló + Funcionando + Esta prueba se conectó exitosamente a Facebook y se resolvió a direcciones IP de Facebook. + Probablemente bloqueado + Facebook Messenger parece estar bloqueado. + Probablemente bloqueado + Signal parece estar bloqueado. + Funcionando + Esta prueba se conectó exitosamente a los extremos Signal. + No se detectaron middleboxes. + No se detectó ninguna anomalía de red al comunicarse con nuestros servidores. + Manipulación de red + El tráfico de red fue manipulado al contactar con nuestros servidores de control.\n\nEsto significa que podría haber un middlebox en tu red, que podría ser responsable por censura y/o vigilancia. + No se detectaron middleboxes. + No se detectó ninguna anomalía de red al comunicarse con nuestros servidores. + Manipulación de red + El tráfico de red fue manipulado al contactar con nuestros servidores de control.\n\nEsto significa que podría haber un middlebox en tu red, que podría ser responsable de censura y/o vigilancia. + Enviaste + Recibiste + Subida + Descarga + Ping + Servidor + Tasa de Retransmisión + Fuera de servicio + Ping promedio + Estimación de Ping Máxima + MSS + Tiempos de espera + Puedes hacer stream hasta %1$s sin buffering. + Mediana de tasa de bits + Retardo de transmisión + Probablemente bloqueado + Funcionando + [Psiphon](https://psiphon.ca/) parece estar bloqueado. + Pudimos iniciar con éxito una conexión Psiphon. Esto significa que [Psiphon](https://psiphon.ca/) debería funcionar. + Tiempo de arranque + %1$s s + Probablemente bloqueado + Funcionando + [Tor](https://www.torproject.org/) parece estar bloqueado. + Pudimos conectarnos con éxito a los puentes de Tor predeterminados y/o las autoridades de directorio de [Tor](https://www.torproject.org/). Esto significa que Tor debería funcionar. + Puentes predeterminados + %1$s/%2$s OK + Autoridades de directorio + %1$s/%2$s OK + Nombre + Dirección + Tipo + Conectar + Handshake + Probablemente bloqueado + Funcionando + [RiseupVPN](https://riseup.net/vpn) parece estar bloqueado. + Fuimos capaces conectarnos exitosamente al servidor de inicio de RiseupVPN y las puertas de salida VPN. Esto significa que [RiseupVPN](https://riseup.net/vpn) debería funcionar. + Servidor de inicio + Conexiones OpenVPN + Conexiones puenteadas + Bloqueados + %1$s bloqueado(s) + %1$s bloqueado(s) + OK + Esta es una prueba experimental. + Lista de suscripciones + Lista de suscripciones + Aceptar + Cancelar + No, no preguntar de nuevo + Borrar + Error + Intentar de nuevo + Suena genial + No, gracias + Ahora no + Ejecutar de todos modos + Deshabilitar VPN + Siempre corre + Incapaz de ejecutar la prueba. Por favor comprueba tu conectividad de Internet. + Incapaz de descargar la lista de URL. Por favor intenta de nuevo. + Por favor espera hasta que las pruebas en ejecución terminen, antes de iniciar una nueva. + Son requeridos permisos de notificación. Por favor habilítalos en las Configuraciones de tu teléfono y luego en tu aplicación OONI Probe. + Ir a las Configuraciones + Esta pantalla está bloqueada mientras esté corriendo una prueba. + Debes estar conectado a Internet para descargar los datos de medición sin procesar. + Resultados no se subieron + Algunos de los resultados de tus pruebas no han sido subidos a los servidores OONI. Si te gustaría contribuir al conjunto de datos de OONI, por favor súbelos. + Subir + Subiendo %1$s ... + OONI Probe no se puede ejecutar automáticamente sin optimización de batería. ¿Quieres intentarlo de nuevo? + Por favor deshabilita tu conexión VPN. + Si ejecutas OONI Probe con una VPN habilitada, los resultados de la prueba podrían aparecer como proviniendo desde el país incorrecto. Por favor deshabilita tu conexión VPN. + Algunas mediciones fueron tomadas sobre VPN. + Si se suben mediciones tomadas cuando el VPN está activado, los resultados de las pruebas pueden parecer procedentes de un país equivocado. + Subida exitosa + Mostrar registro de fallos + Obtiene actualizaciones sobre censura en Internet + ¿Tienes interés en ejecutar pruebas de OONI Probe durante eventos emergentes de censura? Habilita notificaciones para recibir un mensaje cuando escuchemos acerca de censura en Internet cerca tuyo. + Para mejorar la precisión de las pruebas, necesitamos permisos para GPS. OONI sólo recopilará una aproximación de tu posición GPS. + ¿Deseas eliminar todos los resultados de las pruebas? + ¿Deseas eliminar esta prueba? + Por favor habilita al menos una prueba + Por favor inserte sólo dígitos en este campo. + Volver a ejecutar prueba + Esta prueba ha fallado. ¿Volver a ejecutarla? + Está a punto de volver a probar %1$s sitios web. + Ejecutar + ¿Estas seguro? + Tus URLs no serán guardadas cuando dejes esta pantalla. ¿Estás seguro de que quieres dejarla? + ¿Habilitar Subida Manual? + Esta configuración te permite volver a subir manualmente mediciones no publicadas. + Habilitar + No, gracias! + La subida falló + No hemos podido subir las medidas %1$s/%2$s. El registro de fallas ha sido compartido con los desarrolladores de OONI. + Archivo de registro no encontrado + No se encontraron URL válidas + JSON vacío + ¿Deseas interrumpir esta prueba? + Esto interrumpirá la prueba actual a partir de este momento. + ¿Desearías ejecutar pruebas automáticamente? + Al habilitar las pruebas automáticas, contribuirás mediciones OONI en forma regular. + Por favor permite que la aplicación se ejecute en segundo plano. + Recordármelo más tarde + Se ha copiado al portapapeles + No subido + Subir + Algunos no subidos + Subir todo + Sitios web de noticias + Mensajería instantánea + Middleboxes + Rendimiento + Evasión + Experimental + Prueba HTTP Invalid Request Line + Prueba HTTP Header Field Manipulation + Prueba Web Connectivity + Prueba de velocidad NDT + Prueba de streaming DASH + Prueba WhatsApp + Prueba Telegram + Prueba Facebook Messenger + Prueba de Psiphon + Prueba de Tor + Prueba RiseupVPN + Prueba de Signal + Configuración + La cantidad de tiempo que haz establecido para la duración de la prueba es demasiado baja. + Acerca de News Media Scan + Esta aplicación fue creada en estrecha colaboración entre Deutsche Welle (DW) y OONI.\n\nAcerca de DW: Información gratuita para decisiones libres: esa es la marca central de Deutsche Welle (DW). Como empresa de medios internacional e independiente, la emisora ​​internacional alemana informa a personas de todo el mundo. Con programación en 32 idiomas, DW conecta a personas de todo el mundo todos los días, a través de televisión, radio, Internet y redes sociales.\n\nMás información: [Sobre DW](https://corporate.dw.com/en/about-dw/s-30688) (en inglés)\n\nAcerca de OONI: Fundado en 2012, el Open Observatory of Network Interference [(OONI)](https://explorer.ooni.org/) es un proyecto de software libre sin fines de lucro que tiene como objetivo promover esfuerzos descentralizados para documentar la censura de Internet en todo el mundo.\n\nSea parte del movimiento por la libertad en Internet proporcionando datos de su red. + Conocer más + Blog + Reportes + Política de datos OONI + Notificaciones + Activado + Notificar una vez que la prueba se haya completado + Suscripción de noticias + Pruebas automatizadas + Ejecutar pruebas automáticamente + Número de pruebas automatizadas: %1$s. + Última prueba automatizada: %1$s. + Sólo sobre WiFi + Sólo cuando se está cargando + Al habilitar pruebas automáticas, OONI Probe las ejecutará automáticamente múltiples veces por día. Los resultados de tus pruebas serán automáticamente publicados en el Explorador OONI: https://explorer.ooni.org/\n\nImportante: Si tienes una VPN habilitada, OONI Probe no ejecutará pruebas automáticamente. Por favor desactiva tu VPN para efectuar pruebas automatizadas con OONI Probe. Aprende más: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + Compartir + Publicar resultados automáticamente + Subida Manual de Resultado + Incluir información de red + Incluir geolocalización aproximada + Incluir mi dirección IP + Incluir código del país + Esta información (ej., IT por Italia) es requerida para identificar desde qué país son recopiladas las mediciones. ¿Estás seguro que quieres deshabilitar esta opción? + Al publicar resultados, estás incrementando la transparencia de la interferencia de red y apoyando a la comunidad de OONI.\n\nCierta información de red (ej., Número de Sistema Autónomo, ASN) es requerida para identificar a Proveedores de Servicio de Internet. + Opciones de la prueba + Lo que configure a través de los ajustes de prueba anteriores (por ejemplo, desactivar la prueba de WhatsApp) se aplicará a las pruebas ejecutadas manualmente, así como a las pruebas ejecutadas automáticamente (cuando las pruebas automatizadas están activadas).\n + Prueba de larga duración + ¿Ejecutar pruebas de larga duración en primer plano? + Privacidad + Enviar informes de errores + Avanzado + Modo Oscuro + Registros de depuración + Opción A: (Traducción literal)\n\nVer registros recientes\n\nOpción B: (más apegada a la estructura de OONI):\nVer logs recientes + Configuración de Idioma + Seleccionar idioma + Usar siempre Domain Fronting + Backend proxy + Proxy + Ninguno + Psiphon + Proxy personalizado + URL del proxy personalizado + Protocolo de proxy personalizado + Conexión + Nombre del servidor + Puerto + Credenciales (opcional) + Nombre de usuario + Contraseña + Usar Psiphon sobre proxy personalizado + ¿No puedes usar OONI Probe? Intenta habilitando [Psiphon] (https://psiphon.ca/) para evadir el bloqueo potencial de OONI Probe. Alternativamente, puedes usar un proxy personalizado. + Limite la duración de la prueba + Duración de la prueba + Categorías de sitios web a probar + %1$s categorías habilitadas + Editar + Deseleccionar Todo + Seleccionar todos + Guardar + Cambios no guardados + Has hecho algunos cambios a las categorías habilitadas. ¿Desearías guardarlos? + Guardar + Descartar + Elige sitios web a probar + URL + No se han introducido URLs + Ejecutar + Añadir sitio web + Cargar desde plantilla + Número de sitios web probados (0 significa todos) + Probar WhatsApp + Probar Telegram + Probar Facebook Messenger + Probar Signal + Ejecutar la prueba HTTP Invalid Request Line + Ejecutar la prueba HTTP Header Field Manipulation + Ejecutar la prueba de velocidad NDT + Selección automática del servidor NDT + Dirección del servidor NDT + Puerto del servidor NDT + Ejecutar la prueba de streaming DASH + Selección automática del servidor DASH + Servidor DASH + Puerto del servidor DASH + Probar Psiphon + Probar Tor + Probar RiseupVPN + Avisar cuando la VPN está en uso + Enviar correo electrónico al soporte + Por favor describe el problema que estás experimentando: + Por favor envíe un correo electrónico a bugs@openobservatory.org con información sobre la aplicación y versión de iOS. Pulse \"Copiar al portapapeles\" abajo para copiar nuestro correo electrónico. + El idioma actual de la aplicación es %1$s + Idioma + Uso de almacenamiento + Almacenamiento usado + Eliminar + Borrar + Estás a punto de borrar todas las mediciones de OONI de tu dispositivo. Si fueron subidas, aún estarán disponibles en el [Explorador OONI](https://explorer.ooni.org) + Finalizó la ejecución + Detener la prueba + Intentar servidor réplica + Cargando... + Ocurrió un error inesperado. Por favor recargue esta página. + Estás a punto de ejecutar una prueba de OONI Probe. + %1$s URLs + Nombre de la prueba + Detalles de la prueba + Ejecutar + Desactualizado + Para ejecutar esta prueba, necesitas una versión más nueva de OONI Probe + Actualizar + Cerrar + Parámetro inválido + El enlace OONI Run está malformado o bien tu aplicación está desactualizada. + Probarás una muestra aleatoria de sitios web. + Por favor espera hasta que la prueba termine su ejecución antes de clicar en un enlace OONI Run. + Leer más > + Leer menos > + Drogas y alcohol + Religión + Pornografía + Atuendos provocativos + Críticas políticas + Cuestiones de Derechos Humanos + Medio Ambiente + Terrorismo y Militantes + Expresión de Odio + Medios de Noticias + Educación Sexual + Salud pública + Juego + Herramientas de elusión + Citas en línea + Redes sociales + LGBTQ+ + Intercambio de archivos + Herramientas de hackeo + Herramientas de comunicación + Compartición de medios audiovisuales + Alojamiento y blogueo + Motores de búsqueda + Juegos + Cultura + Economía + Gobierno + Comercio electrónico + Control de contenido + Organizaciones intergubernamentales + Contenido misceláneo + Uso y ventas de drogas y alcohol + Cuestiones religiosas, tanto a favor como en contra + Pornografía hardcore y softcore + Atuendos provocativos y visualización de mujeres luciendo ropas escasas + Puntos de vista políticos críticos + Cuestiones de Derechos Humanos + Discusión de cuestiones medioambientales + Terrorismo, movimientos militantes o separatistas violentos + Denigración de grupos particulares basada en raza, sexo, sexualidad u otras características + Principales sitios web de noticias, medios de noticias regionales e independientes + Cuestiones de salud sexual, incluyendo anticoncepción, enfermedades de transmisión sexual, prevención de violaciones y aborto + Cuestiones de salud pública, tales como COVID-19, HIV/AIDS, Ébola + Juego y apuestas en línea + Anonimización, elusión de censura y cifrado + Sitios de citas en línea + Herramientas y plataformas de redes sociales en línea + Comunidades LGBTQ+ discutiendo cuestiones relacionadas (excluyendo pornografía) + Compartición de archivos incluyendo almacenamiento de archivos en la nube, torrentes y P2P + Herramientas y noticias de seguridad informática + Herramientas de comunicaciones individuales y grupales, incluyendo VoIP, mensajería y correo electrónico web + Compartición de vídeo, audio y fotos + Alojamiento web, blogueo y otras publicaciones en línea + Motores y portales de búsqueda + Juegos en línea y plataformas de juego (excluyendo sitios de juego por apuestas) + Entretenimiento incluyendo historia, literatura, música, películas, sátira y humor + Desarrollo económico general y pobreza + Sitios web manejados por gobiernos, incluyendo sitios militares + Servicios y productos comerciales + Contenido benigno o inocuo usado para control + Organizaciones intergubernamentales, incluyendo las Naciones Unidas + Sitios que no han sido aún categorizados + No vuelvas a preguntar + Habilitar notificaciones de progreso de pruebas + Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? + Cargando Enlace + Error + Instalación del enlace cancelada + Created by %s on %s\n\n%s + Enlace de Desinstalación + Revisar Actualizaciones + Previous revisions + You will be able to install this link again only from the original link sent by the creator. + Ver más + Probar sitios web automáticamente + Error + Pruebas OONI + OONI Run Links + Run finished. Tap to view results. + EXPIRED + UPDATED + Install New Link + Autor: + Probar configuración + Install updates automatically + Ejecutar pruebas automáticamente + Link installed + Install Link + Instalación del enlace cancelada + ACTUALIZACIONES + Test %s URLs + Probar URLs + Link Update + Link(s) updated + Link Update (%1$s of %2$s) + UPDATE AND FINISH (%1$s of %2$s) + UPDATE (%1$s of %2$s) + Actualizar + Ejecutar pruebas + Ejecutar Pruebas + Seleccione la prueba que desea ejecutar + Run %s test(s) + Seleccione las pruebas a ejecutar + Seleccionar todas las pruebas + Deseleccionar todas las pruebas + Cargando Enlace + Cargando actualizaciones de enlaces + Link updates ready + Revisar + %s inputs + Volver + refresh + Contraer + Expandir + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Enero + Febrero + Marzo + Abril + May + Junio + Julio + Agosto + Septiembre + Octubre + Noviembre + Diciembre + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Falló + OK + Anomalía + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Registros + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Probando + Manual Run + Auto Run + VPN + diff --git a/news-media-scan/fa/description.xlf b/news-media-scan/fa/description.xlf new file mode 100644 index 0000000..b871752 --- /dev/null +++ b/news-media-scan/fa/description.xlf @@ -0,0 +1,39 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + نیوز مِدیا اسکن + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + This is limited by Google to 80 characters + + + News Media Scan + نیوز مِدیا اسکن + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + شواهد سانسور اینترنت را جمع‌اوری کنید. سرعت و کارایی شبکه خود را اندازه‌گیری کنید. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + شبکه ارتباطی، تست سرعت، اندازه گیری، اینترنت، وای فای، کار با شبکه، اسکن، پهنای باند، محک زدن، دی ان اس،موبایل،ooni، پژوهش، ابزار + + +
+
\ No newline at end of file diff --git a/news-media-scan/fa/strings.json b/news-media-scan/fa/strings.json new file mode 100644 index 0000000..440ed35 --- /dev/null +++ b/news-media-scan/fa/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "نیوز مِدیا اسکن", + "Onboarding.WhatIsOONIProbe.Title": "کدام وب سایت های خبری نزدیک شما مسدود شده اند؟", + "Onboarding.WhatIsOONIProbe.Paragraph": "Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers.", + "Onboarding.ThingsToKnow.Bullet.1": "داده‌های OONI به صورت آزاد منتشر می‌شوند و شامل اطلاعات شبکه‌ی شماست.", + "Onboarding.ThingsToKnow.Bullet.2": "هرکس (مثلا دولت یا ISP) که فعالیت اینترنت شما را نظارت می‌کند، خواهد دید که شما News Media Scan را اجرا کرده‌اید.", + "Onboarding.ThingsToKnow.Bullet.3": "You will be testing news websites that might be banned in the country where you currently find yourself.", + "Onboarding.PopQuiz.1.Question": "اگر کسی فعالیت اینترنت من را نظارت کند، خواهید فهمید که News Media Scan را اجرا می‌کنم.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan ابزار حریم خصوصی نیست. هر کسی که فعالیت اینترنت شما را نظارت کند، خواهد فهمید که نرم افزار را اجرا می‌کنید.", + "Onboarding.PopQuiz.2.Question": "هر بار که News Media Scan را اجرا می‌کنم، داده‌های شبکه‌ای که جمع‌آوری می‌کنم به طور خودکار منتشر می‌شوند.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "برای افزایش شفافیت سانسور اینترنت، داده‌های شبکه‌ی تمامی کاربران News Media Scan به طور خودکار منتشر می‌شود (مگر آنکه در تنظیمات انصراف دهند).", + "Onboarding.AutomatedTesting.Paragraph": "برای بررسی سانسور اینترنت به طور روزانه، لطفا تست خودکار را فعال کنید تا News Media Scan قادر به اجرای دوره‌ای تست‌ها باشد.\n\nنگران نباشید، ما مصرف باتری را در نظر خواهیم گرفت.\n\nشما می‌توانید هر زمانی که بخواهید، تست خودکار را از تنظیمات غیرفعال کنید.", + "Onboarding.Crash.Paragraph": "به منظور بهبود عملکرد News Media Scan، زمانی که برنامه به درستی کار نمی‌کند نیاز به جمع‌آوری گزارش‌های خرابی به صورت ناشناس خواهیم داشت.\n\nآیا علاقه به مشارکت در ارسال گزارش‌های خرابی به تیم توسعه OONI دارید؟", + "Dashboard.Websites.Card.Description": "Checks for blocking of news media websites", + "Test.Websites.Fullname": "رسانه خبری", + "Settings.About.Label": "درباره‌ی News Media Scan", + "Settings.About.Content.Paragraph": "This app is the product of close cooperation between Deutsche Welle (DW) and OONI.\n\n_About DW:_ Unbiased information for free minds \u2013 that is the DW brand promise. As an independent media company, Germany\u2019s international news broadcaster informs people around the world. With programming in 32 languages, DW connects people across the globe via TV, radio, Internet and on social media. \n\nFurther information:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n_About OONI:_ Founded in 2012, the Open Observatory of Network Interference (OONI) is a non-profit free software project that aims to empower decentralized efforts in documenting internet censorship around the world. Thanks to their global community, [more than a billion network measurements](https://explorer.ooni.org/) have been published from more than 200 countries, shedding light on cases of internet censorship worldwide. \n\nBe part of the internet freedom movement by providing data from the networks you\u2019re using.", + "Settings.Proxy.Label": "پروکسی بک اند" +} \ No newline at end of file diff --git a/news-media-scan/fa/strings.xml b/news-media-scan/fa/strings.xml new file mode 100644 index 0000000..e350bca --- /dev/null +++ b/news-media-scan/fa/strings.xml @@ -0,0 +1,639 @@ + + + نیوز مِدیا اسکن + کدام وب سایت های خبری نزدیک شما مسدود شده اند؟ + Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers. + متوجه شدم + توجه توجه! + داده‌های OONI به صورت آزاد منتشر می‌شوند و شامل اطلاعات شبکه‌ی شماست. + هرکس (مثلا دولت یا ISP) که فعالیت اینترنت شما را نظارت می‌کند، خواهد دید که شما News Media Scan را اجرا کرده‌اید. + You will be testing news websites that might be banned in the country where you currently find yourself. + می‌فهمم + اطلاعات بیشتر + پرسش و آزمون + درست + غلط + برگرد + ادامه + سوال 1 از 2 + اگر کسی فعالیت اینترنت من را نظارت کند، خواهید فهمید که News Media Scan را اجرا می‌کنم. + هشدار + News Media Scan ابزار حریم خصوصی نیست. هر کسی که فعالیت اینترنت شما را نظارت کند، خواهد فهمید که نرم افزار را اجرا می‌کنید. + سوال 2 از 2 + هر بار که News Media Scan را اجرا می‌کنم، داده‌های شبکه‌ای که جمع‌آوری می‌کنم به طور خودکار منتشر می‌شوند. + هشدار + برای افزایش شفافیت سانسور اینترنت، داده‌های شبکه‌ی تمامی کاربران News Media Scan به طور خودکار منتشر می‌شود (مگر آنکه در تنظیمات انصراف دهند). + آزمایش خودکار + برای بررسی سانسور اینترنت به طور روزانه، لطفا تست خودکار را فعال کنید تا News Media Scan قادر به اجرای دوره‌ای تست‌ها باشد.\n\nنگران نباشید، ما مصرف باتری را در نظر خواهیم گرفت.\n\nشما می‌توانید هر زمانی که بخواهید، تست خودکار را از تنظیمات غیرفعال کنید. + گزارش خرابی + به منظور بهبود عملکرد News Media Scan، زمانی که برنامه به درستی کار نمی‌کند نیاز به جمع‌آوری گزارش‌های خرابی به صورت ناشناس خواهیم داشت.\n\nآیا علاقه به مشارکت در ارسال گزارش‌های خرابی به تیم توسعه OONI دارید؟ + بله + خیر + تنظیمات پیش فرض + ما اطلاعات زیر را جمع‌آوری و منتشر می‌کنیم: + کد کشور (مثلا IT برای ایتالیا) + اطلاعات شبکه (شامل شماره سیستم مستقل ASN) + زمان و تاریخ تست + ما همه‌ی تلاش خود را می‌‌کنیم تا آدرس IP ی شما یا هر اطلاعات قابل شناسایی شخصی بالقوه‌ی دیگر را منتشر نکنیم.\n\nدر [سیاست‌ داده‌ی OONI](https://ooni.org/about/data-policy/) بیشتر بخوانید. + با فشردن \"باشه\"، گزارش خرابی را برای کمک به بهبود OONI Probe ارسال خواهید کرد. + بزن بریم! + تغییر پیشفرض‌ها + پنل + اجرا + N/A + اجرا + آخرین تست: + تخمین: + انتخاب وبسایت‌ها + در حال اجرا: + زمان تخمینی باقی‌مانده: + %1$s ثانیه + در حال آماده‌سازی تست + محاسبه ETA + نمایش رویداد + بستن رویداد + در حال توقف تست... + در حال اتمام تست‌های در حال انتظار. لطفا صبر کنید... + پروکسی در حال استفاده + برای اطلاعات بیشتر کارت را بفشارید + ~%1$s + Checks for blocking of news media websites + با استفاده از[تست اتصال وب](https://ooni.org/nettest/web-connectivity/) OONI بررسی کنید که آیا وبسایت ها مسدود شده اند یا خیر.\n\n هر بار که بر روی اجرا می زنید، وبسایت‌های مختلفی از لیست‌های تست [جهانی](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) و [کشوری](https://github.com/citizenlab/test-lists/tree/master/lists) از Citizen Lab را تست می‌کنید.\n\nبرای تست سایت‌‌های انتخابی خودتان، بر روی گزینه‌ی انتخاب وبسایت‌ها بزنید و یا دسته‌بندی سایت‌های مورد تست را در تنظیمات این کارت، انتخاب کنید.\n\nاین تست اندازه گیری می کند که سایت‌ها با چه روشی از دستکاری DNS، مسدود شدن TCP/IP و یا به وسیله یک پراکسی شفاف HTTP مسدود شده اند.\n\nنتایج تست های شما بر روی [OONI Explorer](https://explorer.ooni.org/world/) و [OONI API](https://api.ooni.io/) منتشر خواهند شد. + با استفاده از[تست اتصال وب](https://ooni.org/nettest/web-connectivity/) OONI بررسی کنید که آیا وبسایت ها مسدود شده اند یا خیر.\n\nشما وبسایت‌هایی را تست خواهید کرد که در لیست‌های تست [جهانی](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) و [کشوری](https://github.com/citizenlab/test-lists/tree/master/lists) ی Citizen Lab قرار دارند.\n\nاین تست اندازه گیری می کند که سایت‌ها با چه روشی از دستکاری DNS، مسدود شدن TCP/IP و یا به وسیله یک پراکسی شفاف HTTP مسدود شده اند.\n\nنتایج تست های شما بر روی [OONI Explorer](https://explorer.ooni.org/) و [OONI API](https://api.ooni.io/) منتشر خواهند شد. + تست سرعت و کارایی شبکه شما + سرعت و کارایی شبکه خود را با استفاده از تست [NDT](https://ooni.org/nettest/ndt/) اندازه گیری کنید.\n\nکارایی پخش زنده ویدیویی را با استفاده از تست [DASH](https://ooni.org/nettest/dash/) اندازه گیری کنید.\n\nاین تست‌‌ها با توجه به سرعت شبکه‌ی شما، داده مصرف می‌کنند.\n\nنتایج تست های شما بر روی [OONI Explorer](https://explorer.ooni.org/world/) و [OONI API](https://api.ooni.io/) منتشر خواهند شد.\n\nسلب مسئولیت: این تست‌ها وابسته به سرورهای ثالث هستند. بنابراین ما نمی توانیم تضمین کنیم که آدرس IP شما جمع آوری نخواهد شد. + با اجرای تست در این کارت:\n\n- سرعت و کیفیت شبکه خود را اندازه‌گیری کنید (تست [NDT](https://ooni.org/nettest/ndt/))\n- کیفیت استریم ویدیو را اندازه‌گیری کنید (تست [DASH](https://ooni.org/nettest/dash/))\n- وجود [تکنولوژی middlebox](https://ooni.org/support/glossary/#middlebox) در شبکه خود را بررسی کنید (تست‌های [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) و [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/))\n\nاین تست‌ها بسته به سرعت شبکه شما از داده استفاده خواهد کرد.\n\nنتایج تست شما بر روی [OONI Explorer](https://explorer.ooni.org/) و [OONI API](https://api.ooni.io/) منتشر خواهد شد.\n\n**سلب مسئولیت:** تست‌های [NDT](https://ooni.org/nettest/ndt/) و [DASH](https://ooni.org/nettest/dash/) بر بستر سرورهای شخص ثالث تهیه‌شده توسط [Measurement Lab (M-Lab)](https://www.measurementlab.net/) انجام می‌شوند. در صورت اجرای این تست‌ها، M-Lab نشانی IP شما را (با اهداف تحقیقاتی) صرف نظر از تنظیمات OONI Probe جمع‌آوری و منتشر خواهد کرد. درباره‌ی مدیریت داده‌ها در M-Lab و [بیانیه حریم خصوصی](https://www.measurementlab.net/privacy/) آن بیشتر بخوانید. + شناسایی middlebox در شبکه شما + سرویس‌دهنده‌های اینترنت اغلب از وسیله های شبکه (جعبه های میانی) برای اهداف مختلف شبکه سازی (مانند ایجاد حافظه‌ی نهان) استفاده می‌کنند. گاهی اوقات این جعبه های میانی برای اجرای سانسور اینترنت و/یا نظارت مورد استفاده قرار می گیرند.\n\nبا استفاده از تست‌های [خط نامعتبر درخواست HTTP](https://ooni.org/nettest/http-invalid-request-line/) و [دستکاری بخش سرتیتر HTTP](https://ooni.org/nettest/http-header-field-manipulation/) ی OONI، جعبه های میانی را در شبکه‌ی خود بیابید.\n\nنتایج تست های شما بر روی [OONI Explorer](https://explorer.ooni.org/world/) و [OONI API](https://api.ooni.io/) منتشر خواهند شد. + تست مسدودیت پیام‌رسان‌ها + بررسی کنید که آیا [واتس‌اپ](https://ooni.org/nettest/whatsapp/)، [پیام‌رسان فیسبوک](https://ooni.org/nettest/facebook-messenger/)، [تلگرام](https://ooni.org/nettest/telegram/) و [سیگنال](https://ooni.org/nettest/signal) مسدود هستند و یا خیر.\n\nنتایج تست های شما بر روی [OONI Explorer](https://explorer.ooni.org/world/) و [OONI API](https://api.ooni.io/) منتشر خواهند شد. + مسدود بودن ابزارهای دور زدن سانسور را بیازمایید + بررسی کنید که آیا [Psiphon](https://ooni.org/nettest/psiphon/)، [Tor](https://ooni.org/nettest/tor/) و یا [RiseupVPN](https://ooni.org/nettest/riseupvpn/) مسدود هستند یا خیر.\n\nنتایج تست های شما در [OONI Explorer](https://explorer.ooni.org/) و [OONI API](https://api.ooni.io/) منتشر خواهند شد. + اجرای تست‌های آزمایشی جدید + این تست‌های آزمایشی جدید توسعه یافته توسط تیم OONI را اجرا کنید:\n%1$s\n\nنتایج شما بر روی [OONI Explorer](https://explorer.ooni.org/) و [OONI API](https://api.ooni.io/) منتشر خواهند شد. + تست‌های زیر فقط به عنوان بخشی از تست خودکار اجرا می‌شوند: + آزمایش‌ها غیرفعال شده + گیگابیت بر ثانیه + مگابیت بر ثانیه + کیلوبیت بر ثانیه + ms + N/A + نا شناخته + نتایج تست + نتایج تست + تست‌‌ها + شبکه ها + مصرف داده + فیلتر تست‌ها + همه تست‌ها + وب سایت (تار نما) + Middleboxes + کارایی + پيام رسانی سريع + ◾️ دور زدن سانسور + آزمایشی + تستی هنوز اجرا نشده. یکی را امتحان کنید! + %1$s مسدود شده + %1$s مسدود شده + %1$s تست شده + %1$s تست شده + شناسایی شده + شناسایی نشده + ناموفق + %1$s مسدود شده + %1$s مسدود شده + %1$s در دسترس + %1$s در دسترس + %1$s مسدود شده + %1$s مسدود شده + %1$s در دسترس + %1$s در دسترس + نتیجه‌ی ناقص + خطا + خطا در اندازه‌گیری + نتایج بارگذاری نشده‌اند + تاریخ و زمان + شبکه + کشور + مصرف داده + مجموع زمان اجرا + وای فای + داده موبایل + بدون اینترنت + ناموفق + تست شده + تست شده + بسته شده + بسته شده + پایگاه اینترنتی + وب سایت (تار نما) + در دسترس + در دسترس + تصویری + کیفیت + آپلود + دانلود + پینگ + شناسایی شده + شناسایی نشده + ناموفق + تست شده + تست شده + بسته شده + بسته شده + در دسترس + در دسترس + برنامه + برنامه‌ها + تست شده + تست شده + بسته شده + بسته شده + کار میکنه + کار میکنه + ابزار + ابزارها + زمان اجرا + روش‌شناسی + نمایش لاگ + داده‌‌ها + کپی آدرس Explorer + اشتراک گذاری آدرس جستجوگر + به حافظه کوتاه مدت کپی کن + در OONI Explorer نشان بده + ناموفق + می‌توانید این تست را دوباره انجام دهید + دوباره سعی کنید + درباره چگونگی عملکرد این تست در [اینجا](%1$s) بخوانید. + در دسترس + %1$s در دسترس است. + احتمالا مسدود + %1$s احتمالا به خاطر %2$s مسدود شده.\n\nنکته: امکان رخ دادن مثبت کاذب وجود دارد. اطلاعات بیشتر در [اینجا](https://ooni.org/support/faq/#what-are-false-positives). + دور زدن سانسور + **دستکاری DNS** + **مسدودیت بر اساس TCP/IP** + **مسدودیت HTTP (احتمالا صفحه‌ی مسدودیت ارائه شود)** + **مسدودیت HTTP (خطا در درخواست‌های HTTP)** + نرم افزار موبایل + موفق + ناموفق + واتس‌‌اپ وب + موفق + ناموفق + ثبت نام + موفق + ناموفق + کار میکنه + این تست با موفقیت به اندپوینت های واتس‌اپ، سرویس عضویت و رابط وب (web.whatsapp.com) متصل شد. + احتمالا مسدود + واتس‌اپ به نظر مسدود می‌‌رسد. + نرم افزار موبایل + موفق + ناموفق + تلگرام وب + موفق + ناموفق + کار میکنه + این تست با موفقیت به اندپوینت های واتس‌اپ و رابط وب (web.telegram.org) متصل شد. + احتمالا مسدود + تلگرام به نظر مسدود می‌رسد. + اتصالات TCP + موفق + ناموفق + جستجوهای DNS + موفق + ناموفق + کار میکنه + این تست با موفقیت به endpoint های فیسبوک متصل شد و آدرس‌های IP فیسبوک را حل کرد. + احتمالا مسدود + پیام‌رسان فیسبوک به نظر مسدود می‌رسد. + احتمالا مسدود + سیگنال به نظر مسدود می‌رسد. + کار میکنه + این تست با موفقیت به پایانه‌های سیگنال متصل شد. + نشانه‌ای از middlebox پیدا نشد + در هنگام ارتباط با سرورهای ما، هیچ ناهنجاری در شبکه شناسایی نشد. + دستکاری در شبکه + در هنگام تماس با سرورهای بازرسی متوجه شدیم که ترافیک شبکه دستکاری شده است.\n\nاین به معنی امکان وجود middlebox در شبکه شماست که می‌‌تواند مسئول سانسور و/یا نظارت باشد. + نشانه‌ای از middlebox پیدا نشد + در هنگام ارتباط با سرورهای ما، هیچ ناهنجاری در شبکه شناسایی نشد. + دستکاری در شبکه + در هنگام تماس با سرورهای بازرسی متوجه شدیم که شبکه دستکاری شده است.\n\nاین به معنی امکان وجود middlebox در شبکه شماست که می‌‌تواند مسئول سانسور و/یا نظارت باشد. + ارسال کردید + دریافت کردید + آپلود + دانلود + پینگ + سرور + نرخ بارگیری مجدد + خارج از روال + میانگین پینگ + پیش‌بینی حداکثر پینگ + MSS + اتمام زمان + شما می‌توانید تا کیفیت %1$s را بدون بافر کردن، پخش زنده کنید. + میانگین نرخ بیت + تاخیر پخش + احتمالا مسدود + کار میکنه + ظاهرا [Psiphon (سایفون)](https://psiphon.ca/) مسدود است. + ما با موفقیت توانستیم یک اتصال سایفون راه اندازی کنیم. این بدان معناست که [سایفون](https://psiphon.ca/) بایستی کار کند. + زمان راه‌اندازی + %1$s + احتمالا مسدود + کار میکنه + ظاهرا [تور](https://www.torproject.org/) مسدود است. + ما با موفقیت توانستیم به پل‌های پیش‌فرض تور و/یا فهرست‌های مرجع تور وصل شویم. این بدان معناست که [تور](https://www.torproject.org/) بایستی کار کند. + پل‌های پیش‌فرض + %1$s/%2$s در دسترس + فهرست‌های مرجع + %1$s/%2$s در دسترس + نام + آدرس + نوع + اتصال + دست‌دادن + احتمالا مسدود + کار میکنه + ظاهرا [RiseupVPN](https://riseup.net/vpn) مسدود است. + ما با موفقیت به سرور bootstrap RiseupVPN و درگاه‌های VPN وصل شدیم. این بدان معناست که [RiseupVPN](https://riseup.net/vpn بایستی کار کند. + سرور Bootstrap  + ارتباطات OpenVPN + اتصال با پل + بسته شده + %1$s مسدود شده + %1$s مسدود شده + موفق + این یک تست آزمایشی است. + خوراک + خوراک + باشه + لغو + نه، دیگر نپرس + حذف + خطا + تلاش دوباره + به نظر عالی میاد + نه، ممنون + الآن نه + به هر حال اجرا کن + VPN را غیرفعال کنید + همیشه اجرا کن + اجرای تست امکان‌پذیر نبود. لطفا ارتباط اینترنت خود را چک کنید. + بارگیری لیست آدرس اینترنتی امکان‌پذیر نبود. لطفا دوباره تلاش کنید. + لطفا پیش از آغاز تست جدید، صبر کنید تا تست‌های در حال انجام به پایان برسند. + اجازه‌ی اعلان ضروری است. لطفا در تنظیمات تلفن خود و سپس در اپ OONIProbe آن را فعال کنید. + به تنظیمات بروید + این صفحه در زمان اجرای تست قفل است. + برای بارگیری داده های خام اندازه گیری، باید به اینترنت متصل شوید. + نتایج بارگذاری نشده‌اند + بعضی از نتایج تست‌ها به سرورهای OONI بارگذاری نشده‌اند. اگر مایل به مشارکت در مجموع داده‌‌های OONI هستید، لطفا آن‌ها را بارگذاری کنید. + آپلود + بارگذاری %1$s ... + OONI Probe بدون بهینه‌سازی باتری قادر به اجرای خودکار نیست. آیا می‌خواهید دوباره تلاش کنید؟ + لطفا اتصال VPN خود را غیرفعال کنید. + اگر OONI Probe را در حالی که متصل به VPN هستید اجرا کنید، نتایج ممکن است برای کشور اشتباهی نمایش داده شوند. لطفا اتصال VPN خود را غیرفعال کنید. + برخی از اندازه‌گیری‌ها از طریق VPN انجام شد. + اگر اندازه‌گیری‌هایی را که هنگام فعال بودن VPN انجام شده‌اند بارگذاری کنید، ممکن است به نظر برسد که نتایج آزمایش از کشور اشتباهی آمده است. + بارگذاری با موفقیت انجام شد. + نمایش گزارش خرابی + دریافت به‌روزرسانی سانسور اینترنت + آیا به اجرای آزمون‌های OONI Probe در زمان رویدادهای برجسته‌ی سانسور تمایل دارید؟ اعلان‌ها را فعال کنید تا در زمانی که ما از سانسور اینترنت در نزدیکیتان مطلع شدیم، پیغام دریافت کنید! + برای بهبود دقت تست‌ها نیاز به اجازه‌ی GPS داریم. OONi تنها اطلاعات تقریبی مکان GPS شما را جمع‌آوری می‌کند. + آیا مایلید که تمام آزمایش‌های قبلی را پاک کنید؟ + آیا می‌خواهید این تست را حذف کنید؟ + لطفا حداقل یک تست را فعال کنید + لطفا تنها از اعداد در فیلد استفاده کنید + اجرای دوباره تست + این تست ناموفق بود. آیا دوباره اجرا شود؟ + شما در آستانه‌ی آزمایش دوباره‌ی %1$s وبسایت هستید. + اجرا + آیا مطمئن هستید؟ + آدرس‌های شما با ترک این صفحه، ذخیره نخواهند شد. آیا مطمئنید که می‌خواهید این صفحه را ترک کنید؟ + آیا بارگذاری دستی فعال شود؟ + با استفاده از این تنظیم می‌توانید اندازه‌گیری‌های منتشر نشده را دوباره به صورت دستی بارگذاری کنید. + فعال کن + نه، ممنون + آپلود ناموفق بود + ما در بارگذاری %1$s/%2$s اندازه‌گیری ناکام بودیم. گزارش این ناکامی با توسعه دهندگان OONI به اشتراک گذاشته شد. + فایل لاگ یافت نشد + هیچ URL معتبری یافت نشد + JSON خالی است + آیا می‌خواهید این آزمون را قطع کنید؟ + این کار آزمون فعلی را از این لحظه قطع خواهد کرد. + آیا مایل به اجرای خودکار تست‌ها هستید؟ + با فعالسازی تست خودکار، به طور منظم در آزمون‌های OONI مشارکت خواهید داشت. + لطفا به برنامه اجازه فعالیت در پس‌زمینه را بدهید. + بعدا یاداوری کن + در حافظه‌ی موقت کپی شد + بارگذاری نشدند + آپلود + برخی بارگذاری نشدند + بارگذاری همه + رسانه خبری + پيام رسانی سريع + Middleboxes + کارایی + ◾️ دور زدن سانسور + آزمایشی + تست خط درخواست نامعتبر HTTP + تست دستکاری فیلد هدر HTTP + تست اتصال به وب + آزمایش سرعت توسط سرویس NDT + تست استریم DASH + تست واتس‌اپ + تست تلگرام + تست پیام‌رسان فیسبوک + تست سایفون + تست تور + آزمون RiseupVPN + تست سیگنال + تنظیمات + زمانی که برای مدت این تست مشخص کرده‌اید خیلی کوتاه می‌باشد. + درباره‌ی News Media Scan + This app is the product of close cooperation between Deutsche Welle (DW) and OONI.\n\n_About DW:_ Unbiased information for free minds – that is the DW brand promise. As an independent media company, Germany’s international news broadcaster informs people around the world. With programming in 32 languages, DW connects people across the globe via TV, radio, Internet and on social media. \n\nFurther information:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n_About OONI:_ Founded in 2012, the Open Observatory of Network Interference (OONI) is a non-profit free software project that aims to empower decentralized efforts in documenting internet censorship around the world. Thanks to their global community, [more than a billion network measurements](https://explorer.ooni.org/) have been published from more than 200 countries, shedding light on cases of internet censorship worldwide. \n\nBe part of the internet freedom movement by providing data from the networks you’re using. + اطلاعات بیشتر + وبلاگ + گزارش‌ها + سیاست داده OONI + نوتیفیکیشن ها + فعال است + پایان تست را اعلام کن + خوراک خبری + آزمایش خودکار + اجرای خودکار آزمایش‌ها + تعداد تست‌های خودکار: %1$s. + آخرین تست خودکار: %1$s. + تنها از طریق WiFi + تنها در هنگام شارژ + با فعالسازی تست خودکار، تست‌های OONI Probe به طور خودکار چند بار در روز اجرا خواهند شد. نتایج تست شما به صورت خودکار در OONI Explorer منتشر خواهند شد: https://explorer.ooni.org/\n\nمهم: اگر VPN شما متصل باشد، OONI Probe تست‌ها را به صورت خودکار اجرا نخواهد کرد. لطفا برای اجرای تست‌های خودکار OONI Probe، اتصال VPN خود را خاموش کنید. اطلاعات بیشتر: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + به اشتراک گذاری + انتشار خودکار نتایج + بارگذاری دستی نتایج + شامل اطلاعات شبکه باشد + شامل موقعیت جغرافیایی تقریبی باشد + شامل آدرس IP من باشد + شامل کد کشور باشد + این اطلاعات (مثل IT برای ایتالیا) برای تشخیص کشوری که اطلاعات در آن جمع‌آوری شده ضروری می‌باشد. آیا از غیرفعال کردن این گزینه اطمینان دارید؟ + با انتشار نتایج شما به افزایش شفافیت نظارت بر شبکه و جامعه‌ی OONI کمک می‌‌کنید.\n\nاطلاعات شبکه (مثل Autonomous System Number) برای شناسایی سرویس‌دهنده‌ی اینترنت ضروری است. + گزینه‌های آزمون + آنچه از طریق تنظیمات تست بالا پیکربندی می‌کنید (مثلا غیرفعال کردن آزمایش WhatsApp) بر روی هم آزمایش‌های دستی و هم خودکار (در صورت فعال بودن آزمایش خودکار) اعمال می‌شود. + آزمون طولانی مدت + آزمون‌های طولانی مدت در پیش‌زمینه اجرا شوند؟ + حریم خصوصی + ارسال گزارش درباره‌ی متوقف شدن برنامه + پیشرفته + حالت تیره + ثبت اشکال زدایی‌ها + مشاهده گزارش‌های اخیر + تنظیمات زبان + انتخاب زبان + همواره از جعل دامنه استفاده کن + پروکسی بک اند + پروکسی + هیچ + Psiphon + پروکسی سفارشی + آدرس پروکسی سفارشی + پروتکل پروکسی شخصی + اتصال + نام سرور + پورت + اعتبارنامه‌ها (اختیاری) + نام کاربری + گذرواژه + از Psiphon (سایفون) بر روی پروکسی شخصی استفاده کنید + آیا قادر به اجرای کاوشگر OONI نیستید؟ [Psiphon](https://psiphon.ca/) را برای دورزدن مسدودسازی بلقوه‌ی کاوشگر OONI انتخاب کنید. از سوی دیگر، شما می توانید از یک پراکسی سفارشی استفاده کنید. + کرانمند‌سازی مدت آزمون + مدت تست + دسته‌بندی‌های وبسایت برای تست + %1$s دسته بندی فعال است + ویرایش + لغو انتخاب همه + انتخاب همه + ذخیره + تغییرات ذخیره نشده + شما تغییراتی در دسته‌بندی‌های فعال شده ایجاد کرده‌اید. آیا می‌خواهید آنها را ذخیره کنید؟ + ذخیره + رها كردن + انتخاب وبسایت‌ها برای تست + آدرس اینترنتی + هیچ آدرسی وارد نشده است + اجرا + افزودن وبسایت + بارگزاری از قالب + تعداد وبسایت‌های آزمایش شده (۰ یعنی همه) + تست واتس‌اپ + تست تلگرام + تست پیام‌رسان فیسبوک + تست سیگنال + اجرای تست خط درخواست نامعتبر HTTP + اجرای تست دستکاری فیلد هدر HTTP + اجرای تست سرعت NDT + انتخاب خودکار سرور NDT + آدرس سرور NDT + درگاه سرور NDT + اجرای تست استریم DASH + انتخاب خودکار سرور DASH + سرور DASH + درگاه سرور DASH + تست سایفون + تست تور + آزمون RiseupVPN + هشدار هنگام استفاده از VPN + ارسال ایمیل به پشتیبانی + لطفا مشکل خود را توضیح دهید: + لطفا یک ایمیل به bugs@openobservatory.org همراه با اطلاعات برنامه و نسخه‌ی iOS ارسال کنید. بر روی «کپی در حافظه‌ی موقت» در پایین بزنید تا آدرس ایمیل کپی شود. + زبان فعلی برنامه %1$s است + زبان + استفاده از حافظه + حافظه استفاده شده + حذف + پاک + شما در شرف حذف همه اندازه‌گیری‌های OONI از دستگاه خود هستید. در صورتی که آنها از قبل بارگذاری شدند، همچنان در [OONI Explorer](https://explorer.ooni.org) در دسترس خواهند بود. + اجرا به پایان رسید + توفق آزمون + سرورهای آینه را امتحان کنید + در حال بارگذاری... + یک خطا غیرمنتظره رخ داده است. لطفا صفحه را بارگذاری مجدد کنید. + شما در شرف اجرای تست OONI Probe هستید. + %1$s آدرس اینترنتی + نام تست + جزئیات تست + اجرا + قدیمی + برای اجرای این تست نیاز به نسخه‌ی جدیدتر OONI Probe دارید. + به روز رسانی + بستن + پارامتر نامعتبر است + لینک اجرای OONI یا ناقص است و یا نرم افزار شما قدیمی است. + شما نمونه‌ای تصادفی از وبسایت‌ها را تست خواهید کرد. + لطفا پیش از فشردن لینک OONI Run، صبر کنید تست فعلی به پایان برسد. + Read more > + Read less > + الکل و مواد مخدر + دین + پورنوگرافی + پوشش محرک + نقد سیاسی + مسائل حقوق بشری + محیط زیست + تروریسم و جنگ‌طلبی + نفرت پراکنی + رسانه خبری + آموزش جنسی + سلامت عمومی + شرط بندی + ابزارهای دور زدن + دوستیابی آنلاین + شبکه اجتماعی + دگرباشی + اشتراک فایل + ابزارهای هک + ابزارهای ارتباطی + اشتراک رسانه + میزبانی و وبلاگ‌نویسی + موتورهای جستجو + بازی + فرهنگ + اقتصاد + حکومت + فروشگاه آنلاین + مدیریت محتوا + سازمان‌های بین دولتی + محتوای متفرقه + استفاده یا فروش الکل و مواد مخدر + مسائل در پشتیبانی یا نقد دین + پورنوگرافی هاردکور و ملایم + پوشش محرک و نمایش زنان با حداقل لباس + دیدگاه‌های سیاسی منتقدانه + مسائل حقوق بشری + بحث در خصوص مسائل محیط زیستی + تروریسم، جنگ‌‌طلبی و جدایی‌طلبی خشن + پست شمردن گروه مشخصی بر اساس نژاد، جنسیت، تمایلات جنسی و یا سایر ویژگی‌ها + وبسایت‌های خبری اصلی، رسانه‌های خبری محلی و رسانه مستقل + مسائل سلامت جنسی شامل ضدبارداری‌ها، STDها، پیشگیری از تجاوز و سقط جنین + مسائل بهداشت عمومی، مانند COVID-19، اچ‌آی‌وی/ایدز، ابولا + قمار و شرط بندی آنلاین + گمنام‌سازی، دور زدن سانسور و رمزگذاری + سایت‌‌های دوستیابی آنلاین + ابزارها و پلتفرم‌های شبکه‌های اجتماعی آنلاین + انجمن‌های دگرباشان در مورد مسائل مربوطه (به غیر از پورنوگرافی) گفتگو میکنند. + اشتراک فایل شامل ذخیره‌‌ی ابری فایل، تورنت و P2P + ابزارها و اخبار امنیت رایانه + ابزارهای ارتباط فردی و جمعی شامل VoIP، پیام‌رسانی و ایمیل + اشتراک گذاری ویدئویی، صوتی و تصویری + میزبانی وب، وبلاگ‌نویسی و سایر انتشارات آنلاین + پرتال‌ها و موتورهای جستجو + بازی‌های آنلاین و پلتفرم‌های بازی (به جز سایت‌های شرط بندی) + سرگرمی شامل تاریخ، ادبیات، موسیقی، فیلم و طنز + توسعه اقتصادی عمومی و فقر + وبسایت‌های حکومتی، شامل نظامی + خدمات و محصولات تجاری + محتوای بی‌ضرر برای مدیریت + سازمان‌های بین دولتی شامل سازمان ملل + سایت‌‌هایی که هنوز دسته بندی نشده‌اند + Don’t ask again + Enable test progress notifications + Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? + Link Loading + خطا + Link installation cancelled + Created by %s on %s\n\n%s + Uninstall Link + Review Updates + بازنگری‌های قبلی + You will be able to install this link again only from the original link sent by the creator. + See More + Test websites automatically + خطا + OONI Tests + OONI Run Links + Run finished. Tap to view results. + منقضی شد + UPDATED + Install New Link + نویسنده: + تنظیمات آزمودن + Install updates automatically + اجرای خودکار آزمایش‌ها + Link installed + Install Link + Link installation cancelled + UPDATES + Test %s URLs + Test URLs + Link Update + Link(s) updated + Link Update (%1$s of %2$s) + UPDATE AND FINISH (%1$s of %2$s) + UPDATE (%1$s of %2$s) + به روز رسانی + Run tests + اجرای تست ها + Please select test to run + Run %s test(s) + Select the tests to run + Select all tests + Deselect all tests + Link Loading + Link updates loading + Link updates ready + مرور کنید. + %s inputs + برگشت + refresh + بستن + گسترش دادن + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + ژانویه + فوریه + مارچ + آپریل + مه + ژوئن + ژولای + آگوست + سپتامبر + اکتبر + نوامبر + دسامبر + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + ناموفق بود + قابل قبول + ناهنجاری + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + گزارش‌ها + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + در حال تست + Manual Run + Auto Run + وی‌پی‌ان + diff --git a/news-media-scan/fr/description.xlf b/news-media-scan/fr/description.xlf new file mode 100644 index 0000000..a58a8da --- /dev/null +++ b/news-media-scan/fr/description.xlf @@ -0,0 +1,42 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + News Media Scan + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Découvrez le blocage des sites de médias d’information dans votre région. + This is limited by Google to 80 characters + + + News Media Scan + News Media Scan + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Sites des médias bloqués ? + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + Recueillez des preuves de censure d’Internet. Mesurez la vitesse et les performances de votre réseau. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Découvrez si vous pouvez accéder aux sites d’information dont vous avez besoin ou s’ils sont bloqués. \n News Media Scan de DW vous offre la transparence dont vous avez besoin. Vous apporterez également une contribution précieuse à la communauté mondiale de la « liberté sur Internet » en aidant à découvrir la censure dans le monde. \n Cette appli est le fruit d’une étroite collaboration entre Deutsche Welle (DW) et OONI. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + réseau,test de vitesse,mesure,net,wi-fi,wifi,réseautage,analyser,bande passante,test,dns,mobile,ooni,recherche,outil + + +
+
\ No newline at end of file diff --git a/news-media-scan/fr/strings.json b/news-media-scan/fr/strings.json new file mode 100644 index 0000000..077d650 --- /dev/null +++ b/news-media-scan/fr/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "Des sites d'actualité sont-ils bloqués ?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Démarrez News Media Scan pour le savoir ! News Media Scan est la première appli qui vous offre de la transparence sur le paysage médiatique de la région dans laquelle vous vous trouvez. Vous apporterez également une précieuse contribution à la mesure de la censure à travers le monde. \n\nLa liste que vous voyez dans l'application est une liste publique, créée par la communauté GitHub et non par la DW. Elle représente un éventail objectif de fournisseurs de médias d'informations nationaux et internationaux.", + "Onboarding.ThingsToKnow.Bullet.1": "Attention !\n\nOONI publiera ouvertement les données de mesure que vous envoyez, ainsi que les informations relatives à votre réseau.", + "Onboarding.ThingsToKnow.Bullet.2": "Toute personne surveillant votre connexion internet pourra voir que vous utilisez News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "Vous testerez des sites d'actualité susceptibles d'être interdits dans le pays où vous vous trouvez. ", + "Onboarding.PopQuiz.1.Question": "Si quelqu’un surveille mon activité sur Internet, cette personne verra que j’exécute News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan n’est pas un outil de protection des données personnelles. Quiconque surveille votre activité sur Internet verra quel logiciel vous utilisez.", + "Onboarding.PopQuiz.2.Question": "Chaque fois que j’exécute News Media Scan, les données réseau que je recueille seront publiées automatiquement.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "Afin d’accroître la transparence de la censure d’Internet, les données réseau de tous les utilisateurs de News Media Scan sont publiées automatiquement (à moins que ces personnes décident de ne pas y participer dans les paramètres).", + "Onboarding.AutomatedTesting.Paragraph": "Pour mesurer la censure d’Internet tous les jours, veuillez activer les tests automatisés afin que News Media Scan puisse effectuer des tests régulièrement.\n\nNe vous inquiétez pas, nous ferons attention à l’utilisation de la pile.\n\nVous pouvez désactiver les tests automatisés dans les paramètres n’importe quand .", + "Onboarding.Crash.Paragraph": "Afin d’améliorer News Media Scan, nous souhaitons recueillir des relevés anonymes de plantage si l’appli ne fonctionne pas correctement. Acceptez-vous d’envoyer des rapports de plantage à l’équipe de développement d’OONI ?", + "Dashboard.Websites.Card.Description": "Contrôle du blocage des sites Web des médias d’information", + "Test.Websites.Fullname": "Sites Web des médias d’information", + "Settings.About.Label": "À propos de News Media Scan", + "Settings.About.Content.Paragraph": "Cette application est le résultat d'une étroite collaboration entre la Deutsche Welle (DW) et OONI.\n\nA propos de la DW: des informations libres pour des décisions libres – c'est la marque de fabrique de la Deutsche Welle (DW). En tant qu'entreprise de médias indépendante et internationale, la chaîne allemande informe les gens à travers le monde. Avec des offres de programmes en 32 langues, la DW atteint chaque jour des personnes dans le monde entier – par la télévision, la radio, internet et les réseaux sociaux.\n\nPlus de précisions: [À propos de DW (page en anglais)](https://corporate.dw.com/en/about-dw/s-30688) \n\nA propos d'OONI: créé en 2012, l'Open Observatory of Network Interference [(OONI)](https://explorer.ooni.org/) est un projet de logiciel libre à but non lucratif, qui vise à encourager les efforts décentralisés pour documenter la censure sur internet dans le monde entier.   \n\nParticipez au mouvement pour la liberté de l'internet en fournissant des données sur les réseaux que vous utilisez.", + "Settings.Proxy.Label": "Mandataire vers la dorsale" +} \ No newline at end of file diff --git a/news-media-scan/fr/strings.xml b/news-media-scan/fr/strings.xml new file mode 100644 index 0000000..a7fddbd --- /dev/null +++ b/news-media-scan/fr/strings.xml @@ -0,0 +1,639 @@ + + + News Media Scan + Des sites d\'actualité sont-ils bloqués ? + Démarrez News Media Scan pour le savoir ! News Media Scan est la première appli qui vous offre de la transparence sur le paysage médiatique de la région dans laquelle vous vous trouvez. Vous apporterez également une précieuse contribution à la mesure de la censure à travers le monde. \n\nLa liste que vous voyez dans l\'application est une liste publique, créée par la communauté GitHub et non par la DW. Elle représente un éventail objectif de fournisseurs de médias d\'informations nationaux et internationaux. + D’accord + À savoir ! + Attention !\n\nOONI publiera ouvertement les données de mesure que vous envoyez, ainsi que les informations relatives à votre réseau. + Toute personne surveillant votre connexion internet pourra voir que vous utilisez News Media Scan. + Vous testerez des sites d\'actualité susceptibles d\'être interdits dans le pays où vous vous trouvez. + Je comprends + En apprendre davantage + Jeu-questionnaire + Vrai + Faux + Retour + Poursuivre + Question 1 de 2 + Si quelqu’un surveille mon activité sur Internet, cette personne verra que j’exécute News Media Scan. + Avertissement + News Media Scan n’est pas un outil de protection des données personnelles. Quiconque surveille votre activité sur Internet verra quel logiciel vous utilisez. + Question 2 de 2 + Chaque fois que j’exécute News Media Scan, les données réseau que je recueille seront publiées automatiquement. + Avertissement + Afin d’accroître la transparence de la censure d’Internet, les données réseau de tous les utilisateurs de News Media Scan sont publiées automatiquement (à moins que ces personnes décident de ne pas y participer dans les paramètres). + Test automatisé + Pour mesurer la censure d’Internet tous les jours, veuillez activer les tests automatisés afin que News Media Scan puisse effectuer des tests régulièrement.\n\nNe vous inquiétez pas, nous ferons attention à l’utilisation de la pile.\n\nVous pouvez désactiver les tests automatisés dans les paramètres n’importe quand . + Signaler un plantage + Afin d’améliorer News Media Scan, nous souhaitons recueillir des relevés anonymes de plantage si l’appli ne fonctionne pas correctement. Acceptez-vous d’envoyer des rapports de plantage à l’équipe de développement d’OONI ? + Oui + Non + Paramètres par défaut + Nous recueillons et publions : + Le code de pays (p. ex. IT pour Italie) + Des renseignements sur le réseau (dont le numéro de système autonome) + L’estampille temporelle du test + Nous faisons de notre mieux pour ne publier ni votre adresse IP ni aucun autre renseignement qui pourrait vous identifier.\n\nApprenez-en davantage dans la [Politique sur les données de l’OONI](https://ooni.org/about/data-policy/) (page en anglais). + En touchant « Valider », vous partagerez les relevés de plantage afin de nous aider à améliorer OONI Probe. + Allons-y + Modifier les paramètres + Tableau de bord + Lancer + ND + Lancer + Dernier test : + Estimation : + Choisir des sites Web + En cours : + Temps restant estimé : + %1$s secondes + Préparation du test + Calcul de la fin prévue + Afficher le journal + Fermer le journal + Arrêt du test… + Achèvement des tests en attente, veuillez patienter… + Le mandataire est en fonction + Toucher la carte pour en savoir plus + ~%1$ss + Contrôle du blocage des sites Web des médias d’information + Vérifiez le blocage des sites Web grâce au [Test de connectivité Web](https://ooni.org/nettest/web-connectivity/) de l’OONI (page en anglais).\n\nChaque fois que vous touchez Lancer, vous testez différents sites Web provenant des listes de tests [mondiale](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) et [propre à un pays](https://github.com/citizenlab/test-lists/tree/master/lists) du « Citizen Lab » (site en anglais).\n\nPour tester les sites de votre choix, touchez le bouton « Choisir des sites Web » ou sélectionnez des catégories de sites dans les paramètres de cette carte. \n\nCe test mesure si les sites Web sont bloqués par une manipulation DNS, par un blocage TCP/IP ou par un mandataire HTTP transparent.\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/world/) et l’[API d’OONI](https://api.ooni.io/) (site en anglais). + Vérifiez le blocage des sites Web grâce au [Test de connectivité Web](https://ooni.org/nettest/web-connectivity/) de l’OONI (page en anglais).\n\nVous testerez les sites Web inclus dans les listes de tests [mondiale](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) et [propre à un pays](https://github.com/citizenlab/test-lists/tree/master/lists) du « Citizen Lab » (site en anglais).\n\nCe test mesure si les sites Web sont bloqués par une manipulation DNS, par un blocage TCP/IP ou par un mandataire HTTP transparent.\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/world/) et l’[API d’OONI](https://api.ooni.io/) (site en anglais). + Testez la vitesse et les performances de votre réseau + Mesurez la vitesse et les performances de votre réseau grâce au test [NDT](https://ooni.org/nettest/ndt/) (page en anglais).\n\nMesurez les performances de la diffusion en continu de vidéos grâce au test [DASH](https://ooni.org/nettest/dash/) (page en anglais).\n\nCes tests consomment des données selon la vitesse de votre réseau.\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/world/) et l’[API d’OONI](https://api.ooni.io/) (site en anglais).\n\nAvis : Ces tests reposent sur des serveurs tiers. Nous ne pouvons donc pas garantir que votre adresse IP ne sera pas recueillie. + En effectuant les tests de cette carte vous :\n\n– Mesurez la vitesse et les performances de votre réseau (test [NDT](https://ooni.org/nettest/ndt/)\n– Mesurez les performances de la diffusion en continu de vidéos (test [DASH](https://ooni.org/nettest/dash/))\n– Vérifierez la présence de [technologies de boîtiers intermédiaires]https://ooni.org/support/glossary/#middlebox) sur votre réseau (tests [HTTP Ligne de requête invalide](https://ooni.org/nettest/http-invalid-request-line/) et [HTTP Manipulation champ d’en-tête](https://ooni.org/nettest/http-header-field-manipulation/))\n\nCes tests consomment des données selon la vitesse de votre réseau.\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/world/) et l’[API d’OONI](https://api.ooni.io/).\n\n**Avis :** Les tests [NDT](https://ooni.org/nettest/ndt/) et [DASH](https://ooni.org/nettest/dash/) reposent sur des serveurs tiers fournis par [Measurement Lab (M-Lab)](https://www.measurementlab.net/). Si vous effectuez ces tests, M-Lab recueillera et publiera votre adresse IP (à des fins de recherche), indépendamment de vos paramètres OONI Probe. Apprenez-en davantage sur la gouvernance des données par M-Lab’s dans leur [déclaration sur la confidentialité](https://www.measurementlab.net/privacy/). + Détectez les boîtiers intermédiaires dans votre réseau + Les fournisseurs d’accès à Internet utilisent souvent des appareils réseau (des boîtiers intermédiaires) pour diverses tâches propres au réseau (telles que la mise en cache). Ces boîtiers intermédiaires sont parfois utilisés pour censurer ou surveiller Internet.\n\nTrouvez des boîtiers intermédiaires dans votre réseau grâce aux tests de l’OONI [HTTP Ligne de requête invalide](https://ooni.org/nettest/http-invalid-request-line/) et [HTTP Manipulation du champ d’en-tête](https://ooni.org/nettest/http-header-field-manipulation/) (site en anglais).\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/world/) et l’[API d’OONI](https://api.ooni.io/) (site en anglais). + Testez le blocage des applis de messagerie instantanée + Vérifiez si [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook  Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/) ou [Signal](https://ooni.org/nettest/signal) sont bloqués (site en anglais)..\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/world/) et [l’API d’OONI](https://api.ooni.io/) (site en anglais). + Testez le blocage des outils de contournement de la censure + Vérifiez si [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) ou [RiseupVPN](https://ooni.org/nettest/riseupvpn/) sont bloqués (site en anglais).\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/) et l’[API d’OONI](https://api.ooni.io/) (site en anglais). + Effectuer les nouveaux tests expérimentaux + Effectuer les nouveaux tests expérimentaux suivants conçus par l’équipe d’OONI :\n%1$s\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/) et l’[API d’OONI](https://api.ooni.io/) (site en anglais). + Les tests suivants ne seront exécutés que dans le cadre des tests automatisés : + Disabled Tests + Gbit/s + Mbit/s + kbit/s + ms + ND + Inconnu + Résultats des tests + Résultats des tests + Tests + Réseaux + Utilisation des données + Filtrer les tests + Tous les tests + Sites Web + Boîtiers intermédiaires + Performances + Messagerie instantanée + Contournement + Expérimental + Aucun test n’a encore été effectué. Essayez d’en lancer un ! + %1$s bloqué + %1$s bloqués + %1$s testé + %1$s testés + Détectés + Aucun n’a été détecté + Échec + %1$s bloquée + %1$s bloquées + %1$s accessible + %1$s accessibles + %1$s bloqué + %1$s bloqués + %1$s disponible + %1$s disponibles + Résultat incomplet + Erreur + Erreur de mesure + Les résultats n’ont pas été téléversés + Estampille temporelle + Réseau + Pays + Utilisation des données + Temps total d’exécution + Wi-Fi + Données mobiles + Pas d’Internet + Échec + Testé + Testés + Bloqué + Bloqués + Site Web + Sites Web + Accessible + Accessibles + Vidéo + Qualité + Téléversement + Téléchargement + Ping + Détectés + Aucun n’a été détecté + Échec + Testée + Testées + Bloquée + Bloquées + Accessible + Accessibles + Appli + Applis + Testé + Testés + Bloqué + Bloqués + Fonctionne + Fonctionnent + Outil + Outils + Temps d’exécution + Méthodologie + Visualiser le journal + Données + Copier l’URL de l’explorateur + Partager l’URL de l’explorateur + Copier dans le presse-papiers + Dans l’Explorateur OONI + Échec + Vous pouvez essayer de relancer ce test + Réessayer + Apprenez [ici](%1$s) comment ce test fonctionne. + Accessible + %1$s est accessible. + Probablement bloqué + %1$s est probablement bloqué par %2$s.\n\nNote : De faux positifs peuvent se produire. Apprenez-en davantage [ici](https://ooni.org/support/faq/#what-are-false-positives) (page en anglais). + Contournement de la censure + **Manipulation DNS** + **Blocage basé sur le TCP/IP** + **Blocage HTTP (une page de blocage pourrait être servie)** + **Blocage HTTP (échec des requêtes HTTP)**. + Appli mobile + Positif + Échec + WhatsApp Web + Positif + Échec + Inscription + Positif + Échec + Fonctionne + Ce test s’est connecté avec succès aux extrémités, au service d’inscription et à l’interface Web de WhatsApp (web.whatsapp.com). + Probablement bloquée + WhatsApp semble être bloquée. + Appli mobile + Positif + Échec + Telegram Web + Positif + Échec + Fonctionne + Ce test s’est connecté avec succès aux extrémités et à l’interface Web de Telegram (web.telegram.org). + Probablement bloquée + Telegram semble être bloquée. + Connexions TCP + Positif + Échec + Recherches DNS + Positif + Échec + Fonctionne + Ce test s’est connecté avec succès aux extrémités de Facebook et a été résolu avec des adresses IP de Facebook. + Probablement bloquée + Facebook Messenger semble être bloquée. + Probablement bloquée + Signal semble être bloquée. + Fonctionne + Ce test s’est connecté avec succès aux extrémités de Signal. + Aucun boîtier intermédiaire n’a été détecté + Aucune anomalie réseau n’a été détectée lors de la communication avec nos serveurs. + Manipulation du réseau + Le trafic réseau a été manipulé lors de la communication avec nos serveurs de contrôle.\n\nCela signifie qu’il pourrait y avoir un boîtier intermédiaire sur votre réseau, cause possible de censure ou de surveillance. + Aucun boîtier intermédiaire n’a été détecté + Aucune anomalie réseau n’a été détectée lors de la communication avec nos serveurs. + Manipulation du réseau + Le trafic réseau a été manipulé lors de la communication avec nos serveurs de contrôle.\n\nCela signifie qu’il pourrait y avoir un boîtier intermédiaire sur votre réseau, la cause possible de censure ou de surveillance. + Vous avez envoyé + Vous avez reçu + Téléversement + Téléchargement + Ping + Serveur + Taux de retransmission + Hors service + Ping moyen + Ping maximal estimé + MSS + Dépassements de temps + Vous pouvez diffuser en continu jusqu’à %1$s sans mise en mémoire tampon. + Débit binaire médian + Délai de diffusion + Probablement bloqué + Fonctionne + [Psiphon](https://psiphon.ca/) semble être bloqué. + Nous avons réussi à amorcer avec succès une connexion vers Psiphon. Cela signifie que [Psiphon](https://psiphon.ca/) devrait fonctionner. + Temps d’amorçage + %1$s s + Probablement bloqué + Fonctionne + [Tor](https://www.torproject.org/) semble être bloqué. + Nous avons réussi à nous connecter avec succès aux ponts Tor par défaut ou aux autorités d’annuaire de Tor. Cela signifie que [Tor](https://www.torproject.org/fr) que devrait fonctionner. + Ponts par défaut + %1$s/%2$s positif + Autorités d’annuaire + %1$s/%2$s positif + Nom + Adresse + Type + Connexion + Prise de contact + Probablement bloqué + Fonctionne + [RiseupVPN](https://riseup.net/vpn) semble être bloqué. + Nous avons réussi à nous connecter au serveur d’amorçage et aux passerelles RPV de RiseupVPN. Cela signifie que ­[RiseupVPN](https://riseup.net/vpn) devrait fonctionner. + Serveur d’amorçage + Connexions OpenVPN + Connexions pontées + Bloqués + %1$s bloqué + %1$s bloqués + Valider + Ce test est expérimental. + Flux + Flux + Valider + Annuler + Non, ne plus me demander + Supprimer + Erreur + Réessayer + C’est parfait + Non, merci + Pas maintenant + Lancer quand même + Désactiver le RPV + Toujours exécuter + Impossible d’effectuer le test. Veuillez vérifier votre connexion à Internet. + Impossible de télécharger la liste des URL. Veuillez réessayer. + Veuillez attendre la fin du test en cours avant de lancer un nouveau test. + Les autorisations de notification sont nécessaires. Veuillez les activer dans les paramètres de votre téléphone, puis les activer dans votre appli OONI Probe. + Aller dans les Paramètres + Cet écran est verrouillé pendant qu’un test est en cours. + Vous devez être connecté à Internet pour télécharger les données brutes de mesure. + Les résultats n’ont pas été téléversés + Certains de vos résultats de test n’ont pas été téléversés vers les serveurs de l’OONI. Si vous souhaitez contribuer à l’ensemble de données de l’OONI, veuillez les téléverser. + Téléversement + Téléversement de %1$s… + OONI Probe ne peut pas fonctionner automatiquement sans optimisation de la pile. Voulez-vous réessayer ? + Veuillez désactiver votre connexion RPV. + Si vous exécutez OONI Probe alors qu’un RPV (réseau privé virtuel) est activé, les résultats des tests pourraient sembler provenir du mauvais pays. Veuillez désactiver votre connexion RPV. + Certaines mesures ont été prises connecté à un RPV. + Si vous téléversez des mesures prises alors qu’un RPV est activé, les résultats du test pourraient sembler provenir du mauvais pays. + Téléversement réussi + Afficher le journal des échecs + Obtenez des mises à jour sur la censure d’Internet + Voulez-vous exécuter les tests d’OONI Probe pendant des événements de censure émergents ? Activez les notifications afin de recevoir un message si nous sommes informés de censure d’Internet près de vous. + Pour améliorer la précision des tests, nous avons besoin des autorisations Position. OONI ne recueillera qu’une position GPS approximative. + Voulez-vous supprimer tous les résultats de test ? + Voulez-vous supprimer ce test ? + Veuillez activer au moins un test + Veuillez ne saisir que des chiffres dans ce champ. + Relancer le test + Ce test a échoué. Relancer le test ? + Vous êtes sur le point de retester %1$s sites Web. + Lancer + Confirmez-vous ? + Vos URL ne seront pas enregistrées si vous quittez cet écran. Voulez-vous vraiment le quitter ? + Activer le téléversement manuel ? + Ce paramètre vous permet de retéléverser manuellement les mesures non publiées. + Activer + Non, merci + Échec de téléversement + Nous n’avons pas réussi à téléverser %1$s mesures sur %2$s. Le journal des échecs a été partagé avec les développeurs d’OONI. + Le fichier journal est introuvable + Aucune URL valide n’a été trouvée + Le JSON est vide + Voulez-vous interrompre ce test ? + Le test en cours sera interrompu à partir de maintenant. + Voulez-vous effectuer les tests automatiquement ? + En activant les tests automatisés, vous enverrez des mesures OONI sur une base régulière. + Veuillez autoriser l’appli à fonctionner en arrière-plan. + Me rappeler plus tard + Copié dans le presse-papiers + N’a pas été téléversé + Téléversement + Tout n’a pas été téléversé + Tout téléverser + Sites Web des médias d’information + Messagerie instantanée + Boîtiers intermédiaires + Performances + Contournement + Expérimental + Test HTTP Ligne de requête invalide + Test HTTP Manipulation champ d’en-tête + Test de connectivité Web + Test de vitesse NDT + Test de diffusion en continu DASH + Test de WhatsApp + Test de Telegram + Test de Facebook Messenger + Test de Psiphon + Test de Tor + Test de RiseupVPN + Test de Signal + Paramètres + La durée de test que vous avez définie est trop courte. + À propos de News Media Scan + Cette application est le résultat d\'une étroite collaboration entre la Deutsche Welle (DW) et OONI.\n\nA propos de la DW: des informations libres pour des décisions libres – c\'est la marque de fabrique de la Deutsche Welle (DW). En tant qu\'entreprise de médias indépendante et internationale, la chaîne allemande informe les gens à travers le monde. Avec des offres de programmes en 32 langues, la DW atteint chaque jour des personnes dans le monde entier – par la télévision, la radio, internet et les réseaux sociaux.\n\nPlus de précisions: [À propos de DW (page en anglais)](https://corporate.dw.com/en/about-dw/s-30688) \n\nA propos d\'OONI: créé en 2012, l\'Open Observatory of Network Interference [(OONI)](https://explorer.ooni.org/) est un projet de logiciel libre à but non lucratif, qui vise à encourager les efforts décentralisés pour documenter la censure sur internet dans le monde entier.   \n\nParticipez au mouvement pour la liberté de l\'internet en fournissant des données sur les réseaux que vous utilisez. + En apprendre davantage + Blogue + Relevés + OONI Politique sur les données + Notifications + Activées + Aviser à la fin du test + Fil d’actualité + Test automatisé + Lancer les tests automatiquement + Nombre de tests automatisés : %1$s. + Dernier test automatisé : %1$s. + Seulement par Wi-Fi + Seulement pendant la charge + En activant les tests automatiques, les tests d’OONI Probe auront lieu automatiquement plusieurs fois par jour. Les résultats de vos tests seront publiés automatiquement sur l’Explorateur OONI : https://explorer.ooni.org/ (site en anglais)\n\nImportant : Si vous utilisez un RPV et qu’il est activé, OONI Probe n’effectuera pas de test automatique. Afin que les tests automatisés d’OONI Probe aient lieu, veuillez désactiver votre RPV. Apprenez-en davantage : https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn (site en anglais) + Partage + Publier automatiquement les résultats + Téléversement manuel des résultats + Inclure les renseignements sur le réseau + Inclure la position géographique approximative + Inclure mon adresse IP + Inclure le code de pays + Ces renseignements (p. ex. IT pour Italie) sont nécessaires pour identifier le pays d’origine des mesures recueillies. Voulez-vous vraiment désactiver cette option ? + En publiant les résultats, vous augmentez la transparence des interférences réseau et soutenez la communauté de l’OONI. \n\nLe renseignement sur le réseau (c.-à-d. le numéro de système autonome) est nécessaire pour identifier les fournisseurs d’accès à Internet. + Options de test + Le paramétrage de tests ci-dessus (p. ex. désactiver le test de WhatsApp) s’appliquera aussi aux tests effectués manuellement, ainsi qu’aux tests effectués automatiquement (quand les tests automatisés sont activés). + Test long + Faire tourner les tests longs en avant-plan ? + Confidentialité + Envoyer des relevés de plantage + Avancés + Mode sombre + Journaux de débogage + Voir les journaux récents + Paramètres de langue + Sélectionner une langue + Toujours utiliser un domaine-écran + Mandataire vers la dorsale + Mandataire + Aucune + Psiphon + Mandataire personnalisé + URL du mandataire personnalisé + Protocole du mandataire personnalisé + Connexion + Nom d’hôte + Port + Authentifiants (facultatifs) + Nom d’utilisateur + Mot de passe + Utiliser Psiphon avec un mandataire personnalisé + Vous est-il impossible d’utiliser OONI Probe ? Essayez d’activer [Psiphon](https://psiphon.ca/) afin de contourner un blocage possible d’OONI Probe. Vous pouvez aussi utiliser un mandataire personnalisé. + Limiter la durée du test + Durée du test + Catégories de sites Web à tester + %1$s catégories sont activées + Modifier + Tout dessélectionner + Tout sélectionner + Enregistrer + Changements non enregistrés + Vous avez apporté des changements aux catégories activées. Voulez-vous les enregistrer ? + Enregistrer + Abandonner + Choisir les sites Web à tester + URL + Aucune URL n’a été saisie + Lancer + Ajouter le site Web + Charger d’un modèle + Nombre de sites Web testés (0 signifie tout) + Tester WhatsApp + Tester Telegram + Tester Facebook Messenger + Tester Signal + Exécutez le test HTTP Ligne de requête invalide + Exécutez le test HTTP Manipulation du champ d’en-tête + Exécutez le test de vitesse NDT + Sélection automatique du serveur NDT + Adresse du serveur NDT + Port du serveur NDT + Exécutez le test DASH de diffusion en continu + Sélection automatique du serveur DASH + Serveur DASH + Port du serveur DASH + Test de Psiphon + Test de Tor + Tester RiseupVPN + Avertir quand un RPV est utilisé + Envoyer un courriel à l’assistance + Veuillez décrire le problème que vous rencontrez : + Veuillez envoyer un courriel à bugs@openobservatory.org avec des renseignements sur la version de l’appli et d’iOS. Touchez « Copier dans le presse-papiers » ci-dessous pour copier votre adresse courriel. + La langue actuelle de l’appli est %1$s + Langue + Utilisation de l’espace de stockage + Espace de stockage utilisé + Supprimer + Effacer + Vous êtes sur le point de supprimer toutes les mesures d’OONI de votre appareil. Si vous les avez téléversées, elles seront encore accessibles sur l’[Explorateur OONI](https://explorer.ooni.org) + Le test est terminé. + Arrêter le test + Essayer un miroir + Chargement… + Une erreur inattendue s’est produite. Veuillez recharger cette page. + Vous êtes sur le point d’effectuer un test OONI Probe. + %1$s URL + Nom du test + Détails du test + Lancer + N’est pas à jour + Une version plus récente d’OONI Probe est nécessaire pour effectuer ce test. + Mettre à jour + Fermer + Un paramètre est invalide + Soit le lien OONI Run est malformé soit votre appli n’est pas à jour. + Vous testerez un échantillon aléatoire de sites Web. + Veuillez attendre la fin du test avant d’ouvrir un lien OONI Run. + Read more > + Read less > + Drogues et alcool + Religion + Pornographie + Tenues provocantes + Critiques politiques + Droits de la personne + Environnement + Terrorisme et militants + Discours haineux + Médias d’information + Éducation sexuelle + Santé publique + Jeux de hasard + Outils de contournement + Rencontre en ligne + Réseautage social + LGBTQ+ + Partage de fichiers + Outils de bidouillage + Outils de communication + Partage multimédia + Hébergement et blogage + Moteurs de recherche + Jeux + Culture + Économie + Gouvernement + Commerce électronique + Contenu de contrôle + Org. intergouvernementales + Contenu divers + Consommation et vente de drogues et d’alcool + Questions religieuses, à la fois favorables et défavorables + Pornographie dure et douce + Tenues provocantes et représentation de femmes en petites tenues + Points de vue politiques critiques + Questions relatives aux droits de la personne + Discussions sur les questions environnementales + Terrorisme, mouvements militants ou séparatistes violents + Dénigrement de groupes particuliers d’après la race, le sexe, la sexualité ou d’autres caractéristiques + Grands sites Web d’information, organes d’information régionaux et médias indépendants + Questions relatives à la santé sexuelle, dont la contraception, les ITS, l’avortement et la prévention du viol + Questions de santé publique telles que la COVID-19, le VIH/SIDA, la maladie à virus Ebola + Jeux d’argent et pari en ligne + Anonymisation, contournement de la censure et chiffrement + Sites de rencontre en ligne + Outils et plateformes de réseautage social en ligne + Communautés reliées à la cause LGBTQ+, qui discutent de questions connexes (sans pornographie) + Partage de fichiers, dont le stockage nuagique de fichiers, les torrents et le pair à pair + Outils de sécurité informatique et nouvelles connexes + Outils de communication individuelle et de groupe, dont la voix sur IP, les messageries et le courriel Web + Partage de contenu vidéo, audio et de photos + Hébergement Web, blogage et autres publications en ligne + Moteurs et portails de recherche + Jeux en ligne et plateformes de jeux (sauf les sites de jeux de hasard) + Divertissement : histoire, littérature, musique, cinéma, satire et humour. + Développement économique général et pauvreté + Sites Web gouvernementaux, dont les sites Web militaires + Services et produits commerciaux + Contenu bénin ou inoffensif utilisé pour le contrôle + Organisations intergouvernementales, dont les Nations Unies + Sites qui n’ont pas encore été catégorisés + Don’t ask again + Enable test progress notifications + Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? + Link Loading + Erreur + Link installation cancelled + Created by %s on %s\n\n%s + Uninstall Link + Review Updates + Previous revisions + You will be able to install this link again only from the original link sent by the creator. + See More + Test websites automatically + Erreur + OONI Tests + OONI Run Links + Run finished. Tap to view results. + EXPIRED + UPDATED + Install New Link + Auteur : + Tester les paramètres + Install updates automatically + Lancer les tests automatiquement + Link installed + Install Link + Link installation cancelled + UPDATES + Test %s URLs + Test URLs + Link Update + Link(s) updated + Link Update (%1$s of %2$s) + UPDATE AND FINISH (%1$s of %2$s) + UPDATE (%1$s of %2$s) + Mettre à jour + Run tests + Effectuer des tests + Please select test to run + Run %s test(s) + Select the tests to run + Select all tests + Deselect all tests + Link Loading + Link updates loading + Link updates ready + Révision + %s inputs + Retour + refresh + Réduire + Développer + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + janvier + février + mars + avril + mai + juin + juillet + août + septembre + octobre + novembre + décembre + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Échec + Valider + Anomalie + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Journaux + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Test + Manual Run + Auto Run + RPV + diff --git a/news-media-scan/ha/description.xlf b/news-media-scan/ha/description.xlf new file mode 100644 index 0000000..a02912d --- /dev/null +++ b/news-media-scan/ha/description.xlf @@ -0,0 +1,48 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + Madubin kafar yada Labarai + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Gano yadda ake toshe kafofin yada labarai a yankunanku + This is limited by Google to 80 characters + + + News Media Scan + Madubin kafar yada Labarai + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Gano yadda ake toshe kafofin yada labarai a yankunanku + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Bincika ko za ka iya shiga shafukan labarai da ka ke bukata ko kuma an toshe su – Madubin kafar yada labarai na DW zai ba ka zahirin abin da kake bukata. Haka kuma za ka ba da gudunmawa mai ma’ana ga duniyar “Yancin Internet“ ga al’umma ta hanyar taimakawa wajen bankado tauye labarai a sassan duniya. + +Wannan manhajar sakamako ne na aikin hadin gwiwa tsakanin Deutsche Welle (DW) da OONI + +A game da DW; Sahihan bayanai har zuci ba tare da nuna bambanci ba – shi ne tambarin DW.  A matsayin kafar yada labarai mai zaman kanta, kafar yada labarun duniya ta Jamus na fadakar da jama’a. + +A sassan duniya. Da shirye-shirye a cikin harsuna 32. DW na hada kan al’umma a fadin duniya ta kafar TV da Radio da Internet da kuma kafofin sada zumunta. + +A game da OONI: An samar da ita a 2012, kafar sa ido da nazari na gamaiyar kungiyoyin shiga tsakani kan lamuran da suka shafi al’umma. (OONI) manjaha ce kyauta da ke da nufin karfafa matakai dabam-dabam na yunkurin tattara bayanai kan tauye labarai ta Internet a sassan  duniya   + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + + +
+
\ No newline at end of file diff --git a/news-media-scan/ha/strings.json b/news-media-scan/ha/strings.json new file mode 100644 index 0000000..8c0dc6f --- /dev/null +++ b/news-media-scan/ha/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "Madubin kafar yada Labarai", + "Onboarding.WhatIsOONIProbe.Title": "Are news media sites blocked?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers.", + "Onboarding.ThingsToKnow.Bullet.1": "OONI will openly publish the measurement data you send, along with your network information.", + "Onboarding.ThingsToKnow.Bullet.2": "Anyone monitoring your Internet connection will be able to see you are running News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "You will be testing news websites that might be banned in the country where you currently find yourself.", + "Onboarding.PopQuiz.1.Question": "If someone is monitoring my internet activity, they will see that I am running News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running.", + "Onboarding.PopQuiz.2.Question": "Every time I run News Media Scan, the network data I collect will automatically get published.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings).", + "Onboarding.AutomatedTesting.Paragraph": "To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon\u2019t worry, we\u2019ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time.", + "Onboarding.Crash.Paragraph": "To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team?", + "Dashboard.Websites.Card.Description": "Checks for blocking of news media websites", + "Test.Websites.Fullname": "News Media Websites", + "Settings.About.Label": "About News Media Scan", + "Settings.About.Content.Paragraph": "This app is the product of close cooperation between Deutsche Welle (DW) and OONI.\n\n_About DW:_ Unbiased information for free minds \u2013 that is the DW brand promise. As an independent media company, Germany\u2019s international news broadcaster informs people around the world. With programming in 32 languages, DW connects people across the globe via TV, radio, Internet and on social media. \n\nFurther information:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n_About OONI:_ Founded in 2012, the Open Observatory of Network Interference (OONI) is a non-profit free software project that aims to empower decentralized efforts in documenting internet censorship around the world. Thanks to their global community, [more than a billion network measurements](https://explorer.ooni.org/) have been published from more than 200 countries, shedding light on cases of internet censorship worldwide. \n\nBe part of the internet freedom movement by providing data from the networks you\u2019re using.", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/hi/description.xlf b/news-media-scan/hi/description.xlf new file mode 100644 index 0000000..d436d11 --- /dev/null +++ b/news-media-scan/hi/description.xlf @@ -0,0 +1,49 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + न्यूज मीडिया स्कैन + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + आपके इलाके में ब्लॉक की जा रही न्यूज मीडिया साइटों का पता अब आप खुद लगाएं. + This is limited by Google to 80 characters + + + News Media Scan + न्यूज मीडिया स्कैन + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + आपके इलाके में ब्लॉक की जा रही न्यूज मीडिया साइटों का पता अब आप खुद लगाएं. + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + इंटरनेट सेंसरशिप के सबूत एकत्रित करें अपने नेटवर्क की गति और प्रदर्शन को मापें। + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + पता लगाएं कि क्या आप उन न्यूज साइटों तक पहुंच पा रहे हैं जिनकी आपको जरूरत है या क्या वे ब्लॉक हैं - डीडब्ल्यू का न्यूज मीडिया स्कैन आपको जरूरत के मुताबिक पारदर्शिता देता है. दुनिया भर में सेंसरशिप की जानकारी देने में मदद करके आप वैश्विक "इंटरनेट फ्रीडम" समुदाय को बहुमूल्य योगदान देंगे. + +यह ऐप डॉयचे वेले (DW) और OONI के बीच करीबी सहयोग का नतीजा है. + +DW के बारे में: स्वतंत्र सोच के लिए निष्पक्ष जानकारी - यही DW ब्रांड का वादा है. एक स्वतंत्र मीडिया कंपनी के रूप में जर्मनी का अंतरराष्ट्रीय समाचार प्रसारक दुनिया भर के लोगों को सूचना मुहैया कराता है. DW दुनिया भर के लोगों को, 32 भाषाओं में बनने वाले कार्यक्रमों के साथ टीवी, रेडियो, इंटरनेट और सोशल मीडिया के माध्यम से जोड़ता है. + +OONI के बारे में: 2012 में शुरु हुआ `ओपन ऑब्जर्वेटरी ऑफ नेटवर्क इंटरफेरेंस’ (OONI) एक गैर-लाभकारी मुफ्त सॉफ्टवेयर प्रोजेक्ट है जिसका उद्देश्य दुनिया भर में इंटरनेट सेंसरशिप को दर्ज करने में अलग अलग जगह हो रही कोशिशों को मजबूत करना है. + + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + नेटवर्क, स्पीड टेस्ट, मापन, नेट, वाईफाई, नेटवर्किंग, स्कैन, बैंडविड्थ, बेंच, डीएनएस, मोबाइल, ooni, रिसर्च, टूल + + +
+
\ No newline at end of file diff --git a/news-media-scan/hi/strings.json b/news-media-scan/hi/strings.json new file mode 100644 index 0000000..2ef4b26 --- /dev/null +++ b/news-media-scan/hi/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "न्यूज मीडिया स्कैन", + "Onboarding.WhatIsOONIProbe.Title": "Are news media sites blocked?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers.", + "Onboarding.ThingsToKnow.Bullet.1": "OONI will openly publish the measurement data you send, along with your network information.", + "Onboarding.ThingsToKnow.Bullet.2": "Anyone monitoring your Internet connection will be able to see you are running News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "You will be testing news websites that might be banned in the country where you currently find yourself.", + "Onboarding.PopQuiz.1.Question": "If someone is monitoring my internet activity, they will see that I am running News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running.", + "Onboarding.PopQuiz.2.Question": "Every time I run News Media Scan, the network data I collect will automatically get published.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings).", + "Onboarding.AutomatedTesting.Paragraph": "To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon\u2019t worry, we\u2019ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time.", + "Onboarding.Crash.Paragraph": "To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team?", + "Dashboard.Websites.Card.Description": "Checks for blocking of news media websites", + "Test.Websites.Fullname": "News Media Websites", + "Settings.About.Label": "About News Media Scan", + "Settings.About.Content.Paragraph": "This app is the product of close cooperation between Deutsche Welle (DW) and OONI.\n\n_About DW:_ Unbiased information for free minds \u2013 that is the DW brand promise. As an independent media company, Germany\u2019s international news broadcaster informs people around the world. With programming in 32 languages, DW connects people across the globe via TV, radio, Internet and on social media. \n\nFurther information:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n_About OONI:_ Founded in 2012, the Open Observatory of Network Interference (OONI) is a non-profit free software project that aims to empower decentralized efforts in documenting internet censorship around the world. Thanks to their global community, [more than a billion network measurements](https://explorer.ooni.org/) have been published from more than 200 countries, shedding light on cases of internet censorship worldwide. \n\nBe part of the internet freedom movement by providing data from the networks you\u2019re using.", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/hi/strings.xml b/news-media-scan/hi/strings.xml new file mode 100644 index 0000000..d29f661 --- /dev/null +++ b/news-media-scan/hi/strings.xml @@ -0,0 +1,639 @@ + + + न्यूज मीडिया स्कैन + Are news media sites blocked? + Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers. + समझ गया + सचेत! + OONI will openly publish the measurement data you send, along with your network information. + Anyone monitoring your Internet connection will be able to see you are running News Media Scan. + You will be testing news websites that might be banned in the country where you currently find yourself. + मैं समझता हूं + और अधिक जानें + पॉप प्रश्नोत्तरी + सच + ग़लत + वापस जाओ + जारी रहना + प्रश्न 1/2 + If someone is monitoring my internet activity, they will see that I am running News Media Scan. + चेतावनी + News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running. + प्रश्न 2/2 + Every time I run News Media Scan, the network data I collect will automatically get published. + चेतावनी + To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings). + स्वचालित परीक्षण + To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon’t worry, we’ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time. + दुर्घटना की जानकारी + To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team? + हाँ + नहीं + डिफ़ॉल्ट सेटिंग्स + हम इकट्ठा और प्रकाशित करते हैं: + देश कोड (उदाहरण के लिए इटली के लिए आईटी) + नेटवर्क जानकारी (स्वायत्त प्रणाली संख्या सहित) + परीक्षण का समय और तिथि + हम आपके आईपी पते या किसी अन्य जानकारी को प्रकाशित न करने की पूरी कोशिश करते हैं जिससे संभावित रूप से आपकी व्यक्तिगत पहचान हो सके।\n\n[OONI की डेटा नीति](https://ooni.org/about/data-policy/) के माध्यम से और जानें। + \"ठीक है\" पर टैप करके, आप OONI प्रोब को बेहतर बनाने में हमारी मदद करने के लिए दुर्घटना की जानकारी साझा करेंगे। + चलिए चलते + डिफ़ॉल्ट बदलें + डैशबोर्ड + चलाना + एन / ए + चलाना + अंतिम परीक्षण: + अनुमानित: + वेबसाइट चुनें + चल रहा है: + बचा हुआ अनुमानित समय: + %1$s सेकेंड + परीक्षण की तैयारी + ईटीए की गणना + लॉग दिखाओं + लॉग बंद करें + परीक्षण रोका जा रहा है… + वर्तमान में अपूर्ण परीक्षणों को पूर्ण किया जा रहा है, कृपया प्रतीक्षा करें… + प्रॉक्सी उपयोग में है + अधिक के लिए कार्ड टैप करें + ~%1$ss + Checks for blocking of news media websites + OONI के [वेब कनेक्टिविटी परीक्षण](https://ooni.org/nettest/web-connectivity/) का उपयोग करके जांचें कि क्या वेबसाइटों को अवरुद्ध किया गया है।\n\nहर बार जब आप रन पर टैप करते हैं, तो आप सिटीजन लैब की [दुनिया भर](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) की और [देश-विशिष्ट](https://github.com/citizenlab/test-lists/tree/master/lists) परीक्षण सूचियों से विभिन्न वेबसाइटों का परीक्षण करते हैं।\n\nअपनी पसंद की वेबसाइटों का परीक्षण करने के लिए, इस कार्ड की सेटिंग के माध्यम से वेबसाइट चुनें बटन पर टैप करें या साइटों की श्रेणियों का चयन करें।\n\nयह परीक्षण मापता है अगर वेबसाइटों को DNS छेड़छाड़, टीसीपी/आईपी ब्लॉकिंग या पारदर्शी HTTP प्रॉक्सी द्वारा अवरुद्ध किया गया है या नहीं।\n\nआपके परिणाम [OONI एक्सप्लोरर](https://explorer.ooni.org/world/) और [OONI API](https://api.ooni.io/) पर प्रकाशित किए जाएंगे। + OONI के [वेब कनेक्टिविटी परीक्षण](https://ooni.org/nettest/web-connectivity/) का उपयोग करके जांचें कि क्या वेबसाइटों को ब्लॉक किया गया है।\n\nआप सिटीजन लैब के [दुनिया भर के](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) और [देश-विशिष्ट](https://github.com/citizenlab/test-lists/tree/master/lists) परीक्षण सूचियां में शामिल वेबसाइटों का परीक्षण करेंगे। ।\n\nयह परीक्षण मापता है कि क्या वेबसाइटों को DNS से छेड़छाड़, TCP/IP ब्लॉकिंग या पारदर्शी HTTP प्रॉक्सी द्वारा अवरुद्ध किया गया है।\n\nआपके परिणाम [OONI एक्सप्लोरर](https://explorer.ooni.org/) और [OONI API] (https://api.ooni.io/) पर प्रकाशित किए जाएंगे। + अपने नेटवर्क की गति और प्रदर्शन का परीक्षण करें + [NDT](https://ooni.org/nettest/ndt/) परीक्षण का उपयोग कर अपने नेटवर्क की गति और प्रदर्शन को मापें।\n\n[DASH](https://ooni.org/nettest/dash/) परीक्षण का उपयोग कर वीडियो स्ट्रीमिंग के प्रदर्शन को मापें।\n\nये परीक्षण आपके नेटवर्क की गति के आधार पर डेटा की खपत करते हैं।\n\nआपके परिणाम [OONI एक्सप्लोरर](https://explorer.ooni.org/world/) और [OONI API](https://api.ooni.io/) पर प्रकाशित किए जाएंगे।\n\nअस्वीकरण: ये परीक्षण तीसरे पक्ष के सर्वर पर निर्भर करते हैं। इसलिए हम गारंटी नहीं दे सकते कि आपका आईपी पता एकत्र नहीं किया जाएगा। + इस कार्ड में परीक्षण चलाकर, आप करेंगे:\n\n- अपने नेटवर्क की गति और प्रदर्शन को मापें ([NDT] (https://ooni.org/nettest/ndt/) परीक्षण\n- माप वीडियो स्ट्रीमिंग प्रदर्शन ([DASH] (https://ooni.org/nettest/dash/) परीक्षण)\n- अपने नेटवर्क पर [मिडलबॉक्स टेक्नोलॉजीज] (https://ooni.org/support/glossary/#middlebox) की उपस्थिति की जाँच करें ([HTTP अमान्य अनुरोध रेखा](https://ooni.org/nettest/http-invalid-request-line/) और [HTTP हैडर फील्ड हेरफेर](https://ooni.org/nettest/http/header-field-manipulation/)परीक्षण)\n\nये परीक्षण आपके नेटवर्क की गति के आधार पर डेटा की खपत करते हैं।\n\nआपके परीक्षा परिणाम [OONI Explorer] (https://explorer.ooni.org/) और [OONI API] (https://api.ooni.io/) पर प्रकाशित किए जाएंगे।\n\n** अस्वीकरण: ** [NDT] (https://ooni.org/nettest/ndt/) और [DASH] (https://ooni.org/nettest/dash/) परीक्षण तृतीय-पक्ष सर्वर के खिलाफ किए जाते हैं [Measurement Lab(M-Lab)] (https://www.measurementlab.net/) द्वारा प्रदान किया गया। यदि आप इन परीक्षणों को चलाते हैं, तो M-Lab आपके OONI जांच सेटिंग्स के बावजूद, आपके आईपी पते (अनुसंधान उद्देश्यों के लिए) को इकट्ठा और प्रकाशित करेगा। अपने [गोपनीयता कथन] (https://www.measurementlab.net/privacy/) के माध्यम से M-Lab के डेटा शासन के बारे में अधिक जानें। + अपने नेटवर्क में मिडलबॉक्स खोजें + इंटरनेट सेवा प्रदाता अक्सर विभिन्न नेटवर्किंग उद्देश्यों (जैसे कैशिंग) के लिए नेटवर्क उपकरणों (मिडलबॉक्स) का उपयोग करते हैं। कभी-कभी इन मिडिलबॉक्स का उपयोग इंटरनेट सेंसरशिप और/या निगरानी को लागू करने के लिए किया जाता है।\n\nOONI की [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) और [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) परीक्षण का उपयोग करके अपने नेटवर्क में मिडिलबॉक्स खोजें।\n\nआपके परिणाम [OONI एक्सप्लोरर](https://explorer.ooni.org/world/) और [OONI API](https://api.ooni.io/) पर प्रकाशित किए जाएंगे। + त्वरित संदेश एप्लिकेशन को अवरुद्ध करने का परीक्षण करें + जांचें कि क्या [WhatsApp] (https://ooni.org/nettest/whatsapp/), [Facebook Messenger] (https://ooni.org/nettest/facebook-messenger/), [Telegram] (https://ooni.org/nettest/telegram/), और [Signal](https://ooni.org/nettest/signal) अवरुद्ध हैं।\n\nआपके परिणाम [OONI एक्सप्लोरर](https://explorer.ooni.org/world/) और [OONI API](https://api.ooni.io/) पर प्रकाशित किए जाएंगे। + सेंसरशिप परिधि उपकरणों के अवरोधन का परीक्षण करें + जांचें कि क्या [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) या [RiseupVPN](https://ooni.org/nettest/riseupvpn/) अवरुद्ध हैं।\n\nआपके परिणाम [OONI एक्सप्लोरर](https://explorer.ooni.org/) और [OONI API](https://api.ooni.io/) पर प्रकाशित किए जाएंगे। + नए प्रयोगात्मक परीक्षण चलाएं + OONI टीम द्वारा विकसित निम्नलिखित नए प्रयोगात्मक परीक्षण चलाएँ:\n%1$s\n\nआपके परिणाम [OONI Explorer](https://explorer.ooni.org/) और [OONI API](https://api.ooni.io/) पर प्रकाशित किए जाएंगे। + The following tests will only be run as part of automated testing: + Disabled Tests + Gbit/s + Mbit/s + kbit/s + ms + एन / ए + अज्ञात + परीक्षण के परिणाम + परीक्षण के परिणाम + टेस्ट + नेटवर्क + डेटा उपयोग + फ़िल्टर टेस्ट + सभी टेस्ट + वेबसाइटें + मध्य बक्से + प्रदर्शन + तात्कालिक संदेशन + तरक़ीब + प्रायोगिक + अभी तक कोई परीक्षण नहीं चला है। एक चलाने की कोशिश करो! + %1$s अवरुद्ध + %1$s अवरुद्ध + %1$s परीक्षण किया + %1$s परीक्षण किया + का पता चला + पता नहीं लगा + विफ़ल + %1$s अवरुद्ध + %1$s अवरुद्ध + %1$s सुलभ + %1$s सुलभ + %1$s अवरुद्ध + %1$s अवरुद्ध + %1$s उपलब्ध है + %1$s उपलब्ध है + अपूर्ण परिणाम + त्रुटि + माप में त्रुटि + परिणाम अपलोड नहीं किए गए + दिनांक समय + नेटवर्क + देश + डेटा उपयोग + कुल रनटाइम + वाईफ़ाई + मोबाइल डेटा + कोई इंटरनेट नहीं + विफ़ल + परीक्षण + परीक्षण + अवरुद्ध + अवरुद्ध + वेबसाइट + वेबसाइटें + सुलभ + सुलभ + वीडियो + गुणवत्ता + अपलोड करें + डाउनलोड + पिंग + का पता चला + पता नहीं लगा + विफ़ल + परीक्षण + परीक्षण + अवरुद्ध + अवरुद्ध + सुलभ + सुलभ + ऐप + एप्लिकेशन + परीक्षण + परीक्षण + अवरुद्ध + अवरुद्ध + काम कर रहे + काम कर रहे + साधन + उपकरण + रनटाइम + क्रियाविधि + लॉग देखें + डेटा + एक्सप्लोरर यूआरएल कॉपी करें + एक्सप्लोरर URL साझा करें + क्लिपबोर्ड पर कॉपी करें + OONI एक्सप्लोरर में दिखाएं + विफ़ल + आप इस परीक्षण को फिर से चलाने का प्रयास कर सकते हैं + पुनः प्रयास करें + जानें कि यह कैसे काम करता है [यहां](%1$s) + सुलभ + %1$s सुलभ है + शायद अवरुद्ध + %1$s संभवत: %2$s के माध्यम से अवरुद्ध है।\n\nनोट: झूठी सकारात्मकता हो सकती है। और जानें [यहाँ](https://ooni.org/support/faq/#what-are-false-positives)। + सेंसरशिप सर्कुलेशन + ** DNS छेड़छाड़ ** + **टीसीपी / आईपी आधारित अवरोधन** + ** HTTP ब्लॉकिंग (एक ब्लॉकपेज दिया जा सकता है) ** + ** HTTP अवरोधन (HTTP अनुरोध विफल) ** + मोबाइल एप्लिकेशन + ठीक है + विफ़ल + व्हाट्सएप वेब + ठीक है + विफ़ल + पंजीकरण + ठीक है + विफ़ल + काम कर रहे + यह परीक्षण सफलतापूर्वक व्हाट्सएप के एंडपॉइंट्स, पंजीकरण सेवा और वेब इंटरफेस (web.whatsapp.com) से जुड़ा हुआ है। + शायद अवरुद्ध + व्हाट्सएप अवरुद्ध प्रतीत होता है। + मोबाइल एप्लिकेशन + ठीक है + विफ़ल + टेलीग्राम वेब + ठीक है + विफ़ल + काम कर रहे + यह परीक्षण Telegram के एंडपॉइंट और वेब इंटरफेस (web.telegram.org) से सफलतापूर्वक जुड़ा है। + शायद अवरुद्ध + Telegram अवरुद्ध होने लगता है। + TCP कनेक्शन + ठीक है + विफ़ल + DNS लुकअप + ठीक है + विफ़ल + काम कर रहे + यह परीक्षण Facebook के एंडपॉइंट्स से सफलतापूर्वक जुड़ा और Facebook आईपी पते पर हल हुआ। + शायद अवरुद्ध + फेसबुक मैसेंजर अवरुद्ध प्रतीत होता है। + शायद अवरुद्ध + Signal अवरुद्ध प्रतीत होता है। + काम कर रहे + यह परीक्षण सफलतापूर्वक Signal के अंतिम बिंदुओं से जुड़ गया है। + कोई मध्य बॉक्स नहीं मिला + हमारे सर्वर के साथ संवाद करते समय कोई नेटवर्क विसंगति नहीं मिली थी। + नेटवर्क छेड़छाड़ + हमारे नियंत्रण सर्वर से संपर्क करते समय नेटवर्क ट्रैफ़िक में हेरफेर किया गया था।\n\nइसका मतलब है कि आपके नेटवर्क में एक middlebox हो सकता है, जो सेंसरशिप और / या निगरानी के लिए जिम्मेदार हो सकता है। + कोई मध्य बॉक्स नहीं मिला + हमारे सर्वर के साथ संवाद करते समय कोई नेटवर्क विसंगति नहीं मिली थी। + नेटवर्क छेड़छाड़ + हमारे नियंत्रण सर्वर से संपर्क करते समय नेटवर्क ट्रैफ़िक में हेरफेर किया गया था।\n\nइसका मतलब है कि आपके नेटवर्क में एक middlebox हो सकता है, जो सेंसरशिप और / या निगरानी के लिए जिम्मेदार हो सकता है। + आपने भेजा + आप ने प्राप्त किया + अपलोड करें + डाउनलोड + पिंग + सर्वर + रेट्रांसमिशन रेट + खराब + औसत पिंग + मैक्स पिंग अनुमान + एमएसएस + टाइमआउट + आप बफरिंग के बिना %1$s तक स्ट्रीम कर सकते हैं। + माध्य बिटरेट + प्लेआउट विलंब + शायद अवरुद्ध + काम कर रहे + [Psiphon] (https://psiphon.ca/) अवरुद्ध दिखाई देता है। + हम एक Psiphon कनेक्शन को सफलतापूर्वक बूटस्ट्रैप करने में सक्षम थे। इसका मतलब है कि [Psiphon] (https://psiphon.ca/) को काम करना चाहिए। + बूटस्ट्रैप का समय + %1$s s + शायद अवरुद्ध + काम कर रहे + [Tor] (https://www.torproject.org/) अवरुद्ध होना प्रतीत होता है। + हम डिफ़ॉल्ट टॉर ब्रिज और / या टॉर डायरेक्टरी अथॉरिटी से सफलतापूर्वक कनेक्ट करने में सक्षम थे। इसका मतलब है कि [टॉर] (https://www.torproject.org/) को काम करना चाहिए। + डिफ़ॉल्ट पुल + %1$s/%2$s ठीक है + निर्देशिका अधिकारियों + %1$s/%2$s ठीक है + नाम + पता + प्रकार + जोड़ें + हाथ मिलाना + शायद अवरुद्ध + काम कर रहे + [RiseupVPN](https://riseup.net/vpn) अवरुद्ध प्रतीत होता है। + हम RiseupVPN के बूटस्ट्रैप सर्वर और VPN गेटवे से सफलतापूर्वक कनेक्ट होने में सक्षम रहे। इसका मतलब है कि [RiseupVPN](https://riseup.net/vpn) को काम करना चाहिए। + बूटस्ट्रैप सर्वर + ओपनवीपीएन कनेक्शन्स + ब्रिज किए गए कनेक्शन्स + अवरुद्ध + %1$s अवरुद्ध + %1$s अवरुद्ध + ठीक है + यह एक प्रायोगिक परीक्षण है। + चारा + चारा + ठीक है + रद्द करें + नहीं, फिर मत पूछो + हटाना + त्रुटि + पुन: प्रयास करें + बढ़िया है + जी नहीं, धन्यवाद + अभी नहीं + जारी रखें + VPN बंद करें + Always Run + परीक्षण चलाने में असमर्थ। कृपया अपनी इंटरनेट कनेक्टिविटी की जांच करें। + यूआरएल सूची डाउनलोड करने में असमर्थ। कृपया पुन: प्रयास करें। + नया परीक्षण शुरू करने से पहले, कृपया वर्तमान चल रहे परीक्षणों के समाप्त होने की प्रतीक्षा करें। + अधिसूचना की अनुमति आवश्यक है। कृपया उन्हें अपने फ़ोन की सेटिंग में सक्षम करें और फिर उन्हें अपने OONI जांच ऐप में सक्षम करें। + सेटिंग्स पर जाएं + एक परीक्षण चल रहा है, जबकि यह स्क्रीन लॉक है। + कच्ची माप डेटा डाउनलोड करने के लिए इंटरनेट कनेक्शन की आवश्यकता है। + परिणाम अपलोड नहीं किए गए + आपके कुछ परीक्षा परिणाम OONI सर्वर पर अपलोड नहीं किए गए हैं। यदि आप OONI के डेटासेट में योगदान करना चाहते हैं, तो कृपया उन्हें अपलोड करें। + अपलोड करें + अपलोड कर रहे हें %1$s ... + OONI Probe cannot run automatically without battery optimization. Do you want to try again? + कृपया अपना VPN कनेक्शन बंद करें। + If you run OONI Probe with a VPN enabled, the test results may appear to come from the wrong country. Please disable your VPN connection. + Some measurements were taken over VPN. + If you upload measurements taken when VPN enabled, the test results may appear to come from the wrong country. + अपलोड सफल रहा। + विफलता लॉग प्रदर्शित करें + इंटरनेट सेंसरशिप पर नई जानकारी प्राप्त करें + क्या आप आकस्मिक सेंसरशिप घटनाओं के दौरान OONI प्रोब परीक्षण चलाने के इच्छुक हैं? जब हम आपके आस-पास इंटरनेट सेंसरशिप के बारे में सुनते हैं तो उसके बारे में सन्देश प्राप्त करने के लिए सूचनाएं सक्षम करें। + परीक्षणों की सटीकता में सुधार करने के लिए, हमें GPS अनुमतियों की आवश्यकता है। OONI केवल आपके GPS स्थिति का एक अनुमान एकत्र करेगा। + क्या आप सभी परीक्षण परिणामों को हटाना चाहते हैं? + क्या आप इस परीक्षा को मिटाना चाहते हैं? + कृपया कम से कम एक परीक्षण सक्षम करें + कृपया इस क्षेत्र में केवल अंक डालें। + परीक्षण फिर से चलाएं + यह परीक्षण विफल रहा है। परीक्षण फिर से चलाएं? + आप %1$s वेबसाइटों का फिर से परीक्षण करने वाले हैं। + चलाना + Are you sure? + जब आप यह स्क्रीन छोड़ते हैं तो आपके URL सहेजे नहीं जाएंगे। क्या आप वाकई इस स्क्रीन को छोड़ना चाहते हैं? + मैन्युअल अपलोड सक्षम करें? + यह सेटिंग आपको अप्रकाशित माप को मैन्युअल रूप से पुनः अपलोड करने की अनुमति देती है। + सक्षम करें + जी नहीं, धन्यवाद + अपलोड विफ़ल रहा। + हम %1$s / %2$s माप अपलोड करने में विफल रहे हैं। विफलता लॉग OONI डेवलपर्स के साथ साझा किया गया है। + लॉग फ़ाइल नहीं मिला + कोई मान्य यूआरएल नहीं मिले + जॆसन खाली + क्या आप इस परीक्षा को रोकना चाहते हैं? + यह इस क्षण से वर्तमान परीक्षण को बाधित कर देगा। + क्या आप स्वचालित रूप से परीक्षण चलाना चाहेंगे? + By enabling automated testing, you will contribute OONI measurements on a regular basis. + Please allow the app to run in the background. + बाद में याद दिलाएं + क्लिपबोर्ड में कॉपी किया गया + अपलोड नहीं किया गया + अपलोड करें + कुछ अपलोड नहीं किए गए + सभी अपलोड करें + News Media Websites + तात्कालिक संदेशन + मध्य बक्से + प्रदर्शन + तरक़ीब + प्रयोगात्मक + HTTP अवैध अनुरोध लाइन परीक्षण + HTTP हैडर फील्ड मैनिपुलेशन टेस्ट + वेब कनेक्टिविटी टेस्ट + एनडीटी स्पीड टेस्ट + डैश स्ट्रीमिंग टेस्ट + व्हाट्सएप टेस्ट + टेलीग्राम टेस्ट + फेसबुक मेसेंजर टेस्ट + Psiphon परीक्षा + Tor परीक्षा + RiseupVPN परीक्षण + Signal परीक्षण + सेटिंग्स + परीक्षण अवधि के लिए आपके द्वारा निर्धारित समय की मात्रा बहुत कम है। + About News Media Scan + This app is the product of close cooperation between Deutsche Welle (DW) and OONI.\n\n_About DW:_ Unbiased information for free minds – that is the DW brand promise. As an independent media company, Germany’s international news broadcaster informs people around the world. With programming in 32 languages, DW connects people across the globe via TV, radio, Internet and on social media. \n\nFurther information:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n_About OONI:_ Founded in 2012, the Open Observatory of Network Interference (OONI) is a non-profit free software project that aims to empower decentralized efforts in documenting internet censorship around the world. Thanks to their global community, [more than a billion network measurements](https://explorer.ooni.org/) have been published from more than 200 countries, shedding light on cases of internet censorship worldwide. \n\nBe part of the internet freedom movement by providing data from the networks you’re using. + और अधिक जानें + ब्लॉग + Reports + OONI डेटा नीति + सूचनाएं + सक्षम + परीक्षण पूरा होने पर अधिसूचित करें + समाचार फ़ीड + स्वचालित परीक्षण + परीक्षण स्वचालित रूप से चलाएँ + स्वचालित परीक्षणों की संख्या: %1$s। + अंतिम स्वचालित परीक्षण: %1$s। + केवल वाई-फाई पर + केवल चार्ज करते समय + By enabling automatic testing, OONI Probe tests will run automatically multiple times per day. Your test results will automatically get published on OONI Explorer: https://explorer.ooni.org/ \n\nImportant: If you have a VPN enabled, OONI Probe will not run tests automatically. Please turn off your VPN for automated OONI Probe testing. Learn more: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + सहभाजन + परिणाम स्वचालित रूप से प्रकाशित करें + मैनुअल रिजल्ट अपलोड + नेटवर्क जानकारी शामिल करें + अनुमानित भू-स्थान शामिल करें + मेरा आईपी पता शामिल करें + देश कोड शामिल करें + यह जानकारी (जैसे इटली के लिए आईटी) की पहचान करना आवश्यक है कि किस देश से माप एकत्र किए गए हैं। क्या आप वाकई इस विकल्प को अक्षम करना चाहते हैं? + परिणाम प्रकाशित करके, आप नेटवर्क हस्तक्षेप की पारदर्शिता बढ़ा रहे हैं और OONI समुदाय का समर्थन कर रहे हैं।\n\nइंटरनेट सेवा प्रदाताओं की पहचान के लिए नेटवर्क जानकारी (यानी ऑटोनोमस सिस्टम नंबर) की आवश्यकता होती है। + परीक्षण के विकल्प + What you configure through the above test settings (e.g. disabling the WhatsApp test) will apply to tests run manually, as well as to tests run automatically (when automated testing is enabled). + Long running test + Run long running tests in foreground? + एकांत + क्रैश रिपोर्ट भेजें + उन्नत + डार्क मोड + दोषमार्जन लॉग + See recent logs + भाषा + भाषा चुनें + हमेशा डोमेन फ्रंटिंग का उपयोग करें + Backend proxy + Proxy + कोई नहीं + Psiphon + कस्टम प्रॉक्सी + कस्टम प्रॉक्सी URL + कस्टम प्रॉक्सी प्रोटोकॉल + संबध + होस्ट नाम + पोर्ट + क्रेडेंशियल्स (वैकल्पिक) + यूज़रनाम + पासवर्ड + कस्टम प्रॉक्सी पर Psiphon का प्रयोग करें + क्या आप OONI प्रोब का उपयोग करने में असमर्थ हैं? संभावित OONI प्रोब ब्लॉकिंग को रोकने के लिए [Psiphon](https://psiphon.ca/) को सक्षम करने का प्रयास करें। वैकल्पिक रूप से, आप एक कस्टम प्रॉक्सी का उपयोग कर सकते हैं। + परीक्षण अवधि सीमित करें + परीक्षण अवधि + परीक्षण करने के लिए वेबसाइट श्रेणियां + %1$s श्रेणियां सक्षम + बदलें + सबको अचयनित करें + सब कुछ चुने। + बचाना + न सहेजे गए परिवर्तन + आपने सक्षम श्रेणियों में कुछ परिवर्तन किए हैं। क्या आप उन्हें रखना चाहेंगे? + बचाना + रद्द करें + परीक्षण करने के लिए वेबसाइटों का चयन करें + यूआरएल + कोई यूआरएल दर्ज नहीं हुआ + चलाना + वेबसाइट जोड़ें + Load from template + परीक्षण की गई वेबसाइटों की संख्या (0 का मतलब सभी) + टेस्ट व्हाट्सएप + टेलीग्राम का परीक्षण करें + फेसबुक मैसेंजर का परीक्षण करें + जाँच संकेत + HTTP अमान्य अनुरोध रेखा परीक्षण चलाएँ + HTTP शीर्ष लेख फ़ील्ड हेरफेर परीक्षण चलाएँ + NDT स्पीड टेस्ट चलाएं + स्वचालित NDT सर्वर चयन + NDT सर्वर का पता + NDT सर्वर पोर्ट + DASH स्ट्रीमिंग टेस्ट चलाएँ + स्वचालित DASH सर्वर चयन + DASH सर्वर + DASH server port + Psiphon का परीक्षण करें + टेस्ट Tor + RiseupVPN जांचे + Warn when VPN is in use + Send email to support + कृपया उस समस्या का वर्णन करें जिसका आप अनुभव कर रहे हैं: + कृपया iOS संस्करण और एप्लिकेशन की जानकारी के साथ bugs@openobservatory.org को एक ईमेल भेजें। हमारा ईमेल पता कॉपी करने के लिए \"क्लिपबोर्ड पर कॉपी करें\" पर टैप करें। + वर्तमान एप्लिकेशन भाषा %1$s है + भाषा + संग्रह प्रयोग + संग्रह का इस्तेमाल किया गया + हटाना + साफ़ करें + आप अपने डिवाइस से सभी OONI मापों को हटाने वाले हैं। अगर वे अपलोड किए जा चुके है, तोह वे [OONI एक्सप्लोरर](https://explorer.ooni.org) पर तब भी उपलब्ध रहेंगे। + समाप्त हो रहा है + परीक्षण बंद करें + दर्पण की कोशिश करो + लोड हो रहा है ... + एक अप्रत्याशित त्रुटि हुई। कृपया इस पृष्ठ को पुनः लोड करें। + आप एक OONI जांच परीक्षण चलाने वाले हैं। + %1$s URLs + परीक्षण का नाम + टेस्ट विवरण + चलाना + तारीख से बहार + इस परीक्षण को चलाने के लिए आपको OONI जांच का एक नया संस्करण चाहिए। + अद्यतन करें + बंद करें + अमान्य मापदंड + OONI रन लिंक या तो विकृत है या आपका ऐप पुराना है। + आप वेबसाइटों के यादृच्छिक नमूने का परीक्षण करेंगे। + कृपया OONI रन लिंक पर टैप करने से पहले परीक्षण समाप्त होने की प्रतीक्षा करें। + Read more > + Read less > + ड्रग्स और शराब + धर्म + कामोद्दीपक चित्र + उत्तेजक पोशाक + राजनीतिक आलोचना + मानवाधिकार के मुद्दे + वातावरण + आतंकवाद और मिलिटेंट + द्वेषपूर्ण भाषण + खबर मीडिया + यौन शिक्षा + सार्वजनिक स्वास्थ्य + जुआ + परिचलन उपकरण + इंटरनेट पर प्यार की बातें + सामाजिक नेटवर्किंग + LGBTQ+ + फ़ाइल साझा करना + हैकिंग उपकरण + संचार के साधन + मीडिया साझेदारी + होस्टिंग और ब्लॉगिंग + खोज यन्त्र + द्यूत + संस्कृति + अर्थशास्त्र + सरकार + v + नियंत्रण सामग्री + अंतरसरकारी संगठन + विविध सामग्री + दवाओं और शराब का उपयोग और बिक्री + धार्मिक मुद्दे, सहायक और आलोचनात्मक दोनों + हार्ड-कोर और सॉफ्ट-कोर पोर्नोग्राफ़ी + उत्तेजक पोशाक और न्यूनतम कपड़े पहनने वाली महिलाओं का चित्रण + महत्वपूर्ण राजनीतिक दृष्टिकोण + मानवाधिकार के मुद्दे + पर्यावरणीय मुद्दों पर चर्चा + आतंकवाद, हिंसक उग्रवादी या अलगाववादी आंदोलन + जाति, लिंग, कामुकता या अन्य विशेषताओं के आधार पर विशेष समूहों का असंतोष + प्रमुख समाचार वेबसाइट, क्षेत्रीय समाचार आउटलेट और स्वतंत्र मीडिया + गर्भनिरोधक, एसटीडी, बलात्कार की रोकथाम और गर्भपात सहित यौन स्वास्थ्य के मुद्दे + सार्वजनिक स्वास्थ्य संबंधी समस्याएं, जैसे कि COVID-19, HIV/AIDS, इबोला + ऑनलाइन जुआ और सट्टेबाजी + गुमनामी, सेंसरशिप परिधि और एन्क्रिप्शन + ऑनलाइन डेटिंग साइटें + ऑनलाइन सोशल नेटवर्किंग टूल और प्लेटफॉर्म + LGBTQ + संबंधित मुद्दों (अश्लील साहित्य को छोड़कर) पर चर्चा करने वाले समुदाय + क्लाउड-आधारित फ़ाइल संग्रहण, टोरेंट और पी 2 पी सहित फ़ाइल साझाकरण + कंप्यूटर सुरक्षा उपकरण और समाचार + वीओआईपी, संदेश और वेबमेल सहित व्यक्तिगत और समूह संचार उपकरण + वीडियो, ऑडियो और फोटो साझा करना + वेब होस्टिंग, ब्लॉगिंग और अन्य ऑनलाइन प्रकाशन + खोज इंजन और पोर्टल + ऑनलाइन गेम और गेमिंग प्लेटफॉर्म (जुआ साइटों को छोड़कर) + इतिहास, साहित्य, संगीत, फिल्म, व्यंग्य और हास्य सहित मनोरंजन + सामान्य आर्थिक विकास और गरीबी + सेना सहित सरकार द्वारा संचालित वेबसाइटें + वाणिज्यिक सेवाओं और उत्पादों + नियंत्रण के लिए प्रयुक्त सौम्य या अहानिकर सामग्री + संयुक्त राष्ट्र सहित अंतर सरकारी संगठन + वे साइटें जिन्हें अभी तक वर्गीकृत नहीं किया गया है + Don’t ask again + Enable test progress notifications + Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? + Link Loading + त्रुटि + Link installation cancelled + Created by %s on %s\n\n%s + Uninstall Link + Review Updates + Previous revisions + You will be able to install this link again only from the original link sent by the creator. + See More + Test websites automatically + त्रुटि + OONI Tests + OONI Run Links + Run finished. Tap to view results. + EXPIRED + UPDATED + Install New Link + लेखक: + Test Settings + Install updates automatically + परीक्षण स्वचालित रूप से चलाएँ + Link installed + Install Link + Link installation cancelled + UPDATES + Test %s URLs + Test URLs + Link Update + Link(s) updated + Link Update (%1$s of %2$s) + UPDATE AND FINISH (%1$s of %2$s) + UPDATE (%1$s of %2$s) + अद्यतन करें + Run tests + चलाने के परीक्षण + Please select test to run + Run %s test(s) + Select the tests to run + Select all tests + Deselect all tests + Link Loading + Link updates loading + Link updates ready + Review + %s inputs + पिछला + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + विफ़ल + ठीक है + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + लॉग्स + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + परिक्षण + Manual Run + Auto Run + वीपीएन + diff --git a/news-media-scan/hr/description.xlf b/news-media-scan/hr/description.xlf new file mode 100644 index 0000000..0f7d2a8 --- /dev/null +++ b/news-media-scan/hr/description.xlf @@ -0,0 +1,44 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + News Media Scan + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Koji portali vijesti su blokirani u Vašoj regiji? + This is limited by Google to 80 characters + + + News Media Scan + News Media Scan + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Koji portali vijesti su blokirani u Vašoj regiji? + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Utvrdite jesu li portali vijesti u Vašoj regiji dostupni ili blokirani. + +Aplikacija News Media Scan by DW nudi Vam za to potrebnu transparentnost. Osim toga time dajete važan doprinos globalnoj „Internet Freedom“-zajednici, tako što pomažete razotkriti cenzuru na cijelom svijetu. + +Ova aplikacija je nastala u prisnoj suradnji između Deutsche Wellea (DW) i OONI-ja. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + + +
+
\ No newline at end of file diff --git a/news-media-scan/hr/strings.json b/news-media-scan/hr/strings.json new file mode 100644 index 0000000..a51058d --- /dev/null +++ b/news-media-scan/hr/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "Are news media sites blocked?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers.", + "Onboarding.ThingsToKnow.Bullet.1": "OONI will openly publish the measurement data you send, along with your network information.", + "Onboarding.ThingsToKnow.Bullet.2": "Anyone monitoring your Internet connection will be able to see you are running News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "You will be testing news websites that might be banned in the country where you currently find yourself.", + "Onboarding.PopQuiz.1.Question": "If someone is monitoring my internet activity, they will see that I am running News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running.", + "Onboarding.PopQuiz.2.Question": "Every time I run News Media Scan, the network data I collect will automatically get published.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings).", + "Onboarding.AutomatedTesting.Paragraph": "To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon\u2019t worry, we\u2019ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time.", + "Onboarding.Crash.Paragraph": "To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team?", + "Dashboard.Websites.Card.Description": "Checks for blocking of news media websites", + "Test.Websites.Fullname": "News Media Websites", + "Settings.About.Label": "About News Media Scan", + "Settings.About.Content.Paragraph": "This app is the product of close cooperation between Deutsche Welle (DW) and OONI.\n\n_About DW:_ Unbiased information for free minds \u2013 that is the DW brand promise. As an independent media company, Germany\u2019s international news broadcaster informs people around the world. With programming in 32 languages, DW connects people across the globe via TV, radio, Internet and on social media. \n\nFurther information:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n_About OONI:_ Founded in 2012, the Open Observatory of Network Interference (OONI) is a non-profit free software project that aims to empower decentralized efforts in documenting internet censorship around the world. Thanks to their global community, [more than a billion network measurements](https://explorer.ooni.org/) have been published from more than 200 countries, shedding light on cases of internet censorship worldwide. \n\nBe part of the internet freedom movement by providing data from the networks you\u2019re using.", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/id/description.xlf b/news-media-scan/id/description.xlf new file mode 100644 index 0000000..bbb61ed --- /dev/null +++ b/news-media-scan/id/description.xlf @@ -0,0 +1,39 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + News Media Scan + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + This is limited by Google to 80 characters + + + News Media Scan + News Media Scan + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + Mengumpulkan bukti penyensoran Internet. Mengukur kecepatan dan kinerja koneksi Anda. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + jaringan,tes kecepatan, pengukuran,net,wifi,jaringan,pemindai,bandwidth,bench,dns,mobile,ooni,riset,alat + + +
+
\ No newline at end of file diff --git a/news-media-scan/id/strings.json b/news-media-scan/id/strings.json new file mode 100644 index 0000000..a51058d --- /dev/null +++ b/news-media-scan/id/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "Are news media sites blocked?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers.", + "Onboarding.ThingsToKnow.Bullet.1": "OONI will openly publish the measurement data you send, along with your network information.", + "Onboarding.ThingsToKnow.Bullet.2": "Anyone monitoring your Internet connection will be able to see you are running News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "You will be testing news websites that might be banned in the country where you currently find yourself.", + "Onboarding.PopQuiz.1.Question": "If someone is monitoring my internet activity, they will see that I am running News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running.", + "Onboarding.PopQuiz.2.Question": "Every time I run News Media Scan, the network data I collect will automatically get published.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings).", + "Onboarding.AutomatedTesting.Paragraph": "To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon\u2019t worry, we\u2019ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time.", + "Onboarding.Crash.Paragraph": "To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team?", + "Dashboard.Websites.Card.Description": "Checks for blocking of news media websites", + "Test.Websites.Fullname": "News Media Websites", + "Settings.About.Label": "About News Media Scan", + "Settings.About.Content.Paragraph": "This app is the product of close cooperation between Deutsche Welle (DW) and OONI.\n\n_About DW:_ Unbiased information for free minds \u2013 that is the DW brand promise. As an independent media company, Germany\u2019s international news broadcaster informs people around the world. With programming in 32 languages, DW connects people across the globe via TV, radio, Internet and on social media. \n\nFurther information:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n_About OONI:_ Founded in 2012, the Open Observatory of Network Interference (OONI) is a non-profit free software project that aims to empower decentralized efforts in documenting internet censorship around the world. Thanks to their global community, [more than a billion network measurements](https://explorer.ooni.org/) have been published from more than 200 countries, shedding light on cases of internet censorship worldwide. \n\nBe part of the internet freedom movement by providing data from the networks you\u2019re using.", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/id/strings.xml b/news-media-scan/id/strings.xml new file mode 100644 index 0000000..7e2aa1a --- /dev/null +++ b/news-media-scan/id/strings.xml @@ -0,0 +1,639 @@ + + + News Media Scan + Are news media sites blocked? + Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers. + Mengerti + Perhatian! + OONI will openly publish the measurement data you send, along with your network information. + Anyone monitoring your Internet connection will be able to see you are running News Media Scan. + You will be testing news websites that might be banned in the country where you currently find yourself. + Saya mengerti + Pelajari lebih lanjut + Kuis Dadakan + Benar + Salah + Kembali + Lanjut + Pertanyaan 1/2 + If someone is monitoring my internet activity, they will see that I am running News Media Scan. + Peringatan + News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running. + Pertanyaan 2/2 + Every time I run News Media Scan, the network data I collect will automatically get published. + Peringatan + To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings). + Pengetesan otomatis + To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon’t worry, we’ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time. + Pelaporan Kerusakan + To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team? + Ya + Tidak + Pengaturan Bawaan + Kami mengumpulkan dan memublikasikan: + Kode Negara (misalnya IT untuk Italia) + Informasi jaringan (termasuk Nomor Sistem Otonom) + Waktu & tanggal pengetesan + Kami melakukan yang terbaik untuk tidak memublikasikan alamat IP atau hal lain yang berpotensi sebagai informasi identitas pribadi Anda.\n\nPelajari lebih lanjut melalui [Kebijakan Data OONI](https://ooni.org/about/data-policy/). + Dengan mengetuk \"OKE\", Anda akan membagikan laporan kerusakan untuk membantu kami meningkatkan OONI Probe. + Ayo mulai! + Ubah bawaan + Dasbor + Jalankan + N/A + Jalankan + Tes terakhir: + Estimasi: + Pilih situs web + Menjalankan: + Estimasi waktu tersisa: + %1$s detik + Menyiapkan tes + Menghitung ETA + Tampilkan Log + Tutup Log + Menghentikan tes... + Menyelesaikan tes yang saat ini tertunda, silakan tunggu... + Proksi yang digunakan + Ketuk untuk lebih lanjut + ~%1$s + Checks for blocking of news media websites + Periksa apakah suatu situs web diblokir dengan [Tes Konektivitas Web](https://ooni.org/nettest/web-connectivity/) OONI.\n\nSetiap kali Anda mengetuk Jalankan, Anda mengetes situs web berbeda dari daftar tes [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) dan [khusus-negara](https://github.com/citizenlab/test-lists/tree/master/lists) Citizen Lab.\n\nUntuk mengetes situs pilihan Anda, ketuk tombol Pilih situs web atau pilih kategori situs melalui pengaturan kartu ini. \n\nTes ini mengukur apakah situs web diblokir melalui perusakan DNS, pemblokiran TCP/IP, atau proksi HTTP transparan.\n\nHasil Anda akan dipublikasikan di [OONI Explorer](https://explorer.ooni.org/world/) dan [OONI API](https://api.ooni.io/). + Periksa apakah suatu situs web diblokir dengan [Tes Konektivitas Web](https://ooni.org/nettest/web-connectivity/) OONI.\n\nAnda akan mengetes situs web yang termasuk dalam daftar tes [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) dan [khusus-negara](https://github.com/citizenlab/test-lists/tree/master/lists) Citizen Lab.\n\nTes ini mengukur apakah situs web diblokir melalui perusakan DNS, pemblokiran TCP/IP, atau proksi HTTP transparan.\n\nHasil Anda akan dipublikasikan di [OONI Explorer](https://explorer.ooni.org/) dan [OONI API](https://api.ooni.io/). + Tes kecepatan dan kinerja jaringan Anda. + Ukur kecepatan dan kinerja jaringan Anda menggunakan tes [NDT](https://ooni.org/nettest/ndt/).\n\nUkur kinerja aliran video menggunakan tes [DASH](https://ooni.org/nettest/dash/).\n\nPengetesan ini menggunakan data tergantung pada kecepatan jaringan Anda.\n\nHasil Anda akan dipublikasikan di [OONI Explorer](https://explorer.ooni.org/world/) dan [OONI API](https://api.ooni.io/).\n\nPenafian: Pengetesan ini bergantung pada peladen pihak ketiga. Oleh karena itu, kami tidak dapat menjamin bahwa alamat IP Anda tidak akan dikumpulkan. + Dengan menjalankan tes pada kartu ini, Anda akan:\n\n- Mengukur kecepatan dan kinerja jaringan Anda ( tes [NDT](https://ooni.org/nettest/ndt/))\n- Mengukur kinerja aliran video (tes [DASH](https://ooni.org/nettest/dash/))\n- Memeriksa keberadaan [teknologi middlebox](https://ooni.org/support/glossary/#middlebox) di jaringan Anda (tes [Jalur Permintaan HTTP Tidak Valid](https://ooni.org/nettest/http-invalid-request-line/) dan [Manipulasi Bidang Tajuk HTTP](https://ooni.org/nettest/http-header-field-manipulation/))\n\nPengetesan ini menggunakan data tergantung pada kecepatan jaringan Anda.\n\nHasil tes Anda akan dipublikasikan di [OONI Explorer](https://explorer.ooni.org/) dan [OONI API](https://api.ooni.io/).\n\n**Penafian:** Tes [NDT](https://ooni.org/nettest/ndt/) dan [DASH](https://ooni.org/nettest/dash/) dilakukan terhadap peladen pihak ketiga yang disediakan oleh [Measurement Lab (M-Lab)](https://www.measurementlab.net/). Jika Anda menjalankan pengujian ini, M-Lab akan mengumpulkan dan memublikasikan alamat IP Anda (untuk tujuan penelitian), terlepas dari pengaturan OONI Probe Anda. Pelajari lebih lanjut tentang tata kelola data M-Lab melalui [pernyataan privasinya](https://www.measurementlab.net/privacy/). + Deteksi middlebox di jaringan Anda. + Penyedia Jasa Internet seringkali menggunakan peralatan jaringan (middlebox) untuk berbagai keperluan jaringan (seperti caching). Terkadang middlebox ini digunakan untuk menerapkan sensor dan/atau pengawasan internet.\n\nTemukan middlebox di jaringan Anda menggunakan tes [Jalur Permintaan HTTP Tidak Valid](https://ooni.org/nettest/http-invalid-request-line/) dan [Manipulasi Bidang Tajuk HTTP](https://ooni.org/nettest/http-header-field-manipulation/) dari OONI.\n\nHasil Anda akan dipublikasikan di [OONI Explorer](https://explorer.ooni.org/world/) dan [OONI API](https://api.ooni.io/). + Tes pemblokiran aplikasi perpesanan instan + Periksa apakah [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), dan [Signal](https://ooni.org/nettest/signal) diblokir.\n\nHasil Anda akan dipublikasikan di [OONI Explorer](https://explorer.ooni.org/world/) dan [OONI API](https://api.ooni.io/). + Tes pemblokiran alat penghindaran sensor + Periksa apakah [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) atau [RiseupVPN](https://ooni.org/nettest/riseupvpn/) diblokir.\n\nHasil Anda akan dipublikasikan di [OONI Explorer](https://explorer.ooni.org/) dan [OONI API](https://api.ooni.io/). + Jalankan tes eksperimental baru + Jalankan tes eksperimental baru berikut yang dikembangkan oleh tim OONI:\n%1$s\n\nHasil Anda akan dipublikasikan di [OONI Explorer](https://explorer.ooni.org/) dan [OONI API](https://api.ooni.io/). + Pengetesan berikut hanya akan dijalankan sebagai bagian dari pengetesan otomatis: + Tes Dimatikan + Gbit/s + Mbit/s + kbit/s + ms + N/A + Tidak diketahui + Hasil Tes + Hasil Tes + Tes + Jaringan + Penggunaan Data + Tes Filter + Semua tes + Situs Web + Middlebox + Kinerja + Perpesanan Instan + Penghindaran + Eksperimental + Belum ada tes yang dijalankan. Coba jalankan satu! + %1$s diblokir + %1$s diblokir + %1$s dites + %1$s dites + Terdeteksi + Tidak terdeteksi + Gagal + %1$s diblokir + %1$s diblokir + %1$s terakses + %1$s terakses + %1$s diblokir + %1$s diblokir + %1$s tersedia + %1$s tersedia + Hasil tidak tuntas + Galat + Galat dalam Pengukuran + Hasil tidak diunggah + Tanggal & Waktu + Jaringan + Negara + Penggunaan Data + Total Waktu Berjalan + WiFi + Data Seluler + Tidak ada internet + Gagal + Sudah dites + Sudah dites + Diblokir + Diblokir + Situs Web + Situs Web + Terakses + Terakses + Video + Kualitas + Unggah + Unduh + Ping + Terdeteksi + Tidak terdeteksi + Gagal + Sudah dites + Sudah dites + Diblokir + Diblokir + Terakses + Terakses + Aplikasi + Aplikasi + Sudah dites + Sudah dites + Diblokir + Diblokir + Berfungsi + Berfungsi + Alat + Alat + Waktu proses + Metodologi + Lihat log + Data + Salin URL Explorer + Bagikan URL Explorer + Salin ke papan klip + Tampilkan di OONI Explorer + Gagal + Anda bisa mencoba menjalankan tes ini lagi + Coba Lagi + Pelajari cara kerja tes ini [di sini](%1$s). + Terakses + %1$s dapat terakses. + Kemungkinan diblokir + %1$s kemungkinan diblokir dengan %2$s.\n\nCatatan: Hasil positif palsu dapat terjadi. Pelajari lebih lanjut [di sini](https://ooni.org/support/faq/#what-are-false-positives). + Penghindaran sensor + **Perusakan DNS** + **Pemblokiran berbasis TCP/IP** + **Pemblokiran HTTP (halaman pemblokiran mungkin akan disajikan)** + Pemblokiran HTTP (permintaan HTTP gagal) + Aplikasi Seluler + Oke + Gagal + WhatsApp Web + Oke + Gagal + Pendaftaran + Oke + Gagal + Berfungsi + Tes ini berhasil terhubung dengan titik akhir WhatsApp, layanan pendaftaran, dan antarmuka web (web.whatsapp.com). + Kemungkinan diblokir + WhatsApp tampaknya diblokir. + Aplikasi Seluler + Oke + Gagal + Telegram Web + Oke + Gagal + Berfungsi + Tes ini berhasil terhubung dengan titik akhir Telegram dan antarmuka web (web.telegram.org). + Kemungkinan diblokir + Telegram tampaknya diblokir. + Koneksi TCP + Oke + Gagal + Pencarian DNS + Oke + Gagal + Berfungsi + Tes ini berhasil terhubung dengan titik akhir Facebook dan ditetapkan ke alamat IP Facebook. + Kemungkinan diblokir + Facebook Messenger tampaknya diblokir. + Kemungkinan diblokir + Signal tampaknya diblokir. + Berfungsi + Tes ini berhasil terhubung dengan titik akhir Signal + Tidak ada middlebox yang terdeteksi + Tidak ada anomali jaringan yang terdeteksi saat berkomunikasi dengan peladen kami. + Perusakan jaringan + Lalu-lintas jaringan telah dimanipulasi saat menghubungi peladen kontrol kami.\n\nIni berarti mungkin ada middlebox di jaringan Anda, yang mungkin bertanggung jawab atas sensor dan/atau pengawasan. + Tidak ada middlebox yang terdeteksi + Tidak ada anomali jaringan yang terdeteksi saat berkomunikasi dengan peladen kami. + Perusakan jaringan + Lalu-lintas jaringan telah dimanipulasi saat menghubungi peladen kontrol kami.\n\nIni berarti mungkin ada middlebox di jaringan Anda, yang mungkin bertanggung jawab atas sensor dan/atau pengawasan. + Anda Mengirim + Anda Menerima + Unggah + Unduh + Ping + Peladen + Penilaian transmisi ulang + Tidak Dapat Digunakan + Ping rata-rata + Estimasi Maksimal Ping + MSS + Timeouts + Anda dapat melakukan aliran hingga %1$s tanpa penyanggaan. + Median Kecepatan Bit + Jeda Pemutaran + Kemungkinan diblokir + Berfungsi + [Psiphon](https://psiphon.ca/) tampaknya diblokir. + Kami telah berhasil melakukan bootstrap pada koneksi Psiphon. Ini berarti [Psiphon](https://psiphon.ca/) seharusnya berfungsi. + Waktu Bootstrap + %1$s s + Diblok juga + Berfungsi + Sepertinya [Tor](https://www.torproject.org/) diblok. + Kami tidak berhasil terkoneksi dengan bridge Tor default dan/atau direktori otoritas Tor. Maka dari itu [Tor](https://www.torproject.org/) seharusnya berfungsi. + Bridge Bawaan + %1$s/%2$s OK + Otoritas Direktori + %1$s/%2$s OK + Nama + Alamat + Jenis + Sambung + Handshake + Diblok juga + Berfungsi + [RiseupVPN](https://riseup.net/vpn) tampaknya diblokir. + Kami berhasil terhubung ke peladen dan gerbang VPN dari RiseupVPN. Ini berarti bahwa [RiseupVPN](https://riseup.net/vpn) berfungsi. + Peladen bootstrap + Koneksi OpenVPN + Koneksi jembatan + Diblokir + %1$s diblokir + %1$s diblokir + Oke + Ini adalah tes eksperimental. + Umpan + Umpan + Oke + Batalkan + Tidak, jangan tanya lagi + Hapus + Galat + Coba Lagi + Kedengarannya bagus + Tidak, terima kasih + Tidak sekarang + Tetap jalankan + Nonaktifkan VPN + Selalu Jalankan + Tidak dapat menjalankan tes. Silakan periksa konektivitas internet Anda. + Tidak dapat mengunduh daftar URL. Silakan coba lagi. + Mohon tunggu pengetesan yang sedang berjalan hingga selesai, sebelum memulai pengetesan yang baru. + Izin notifikasi diperlukan. Silakan aktifkan izin tersebut di Pengaturan ponsel Anda, lalu aktikan di aplikasi OONI Probe Anda. + Pergi ke Pengaturan + Layar ini terkunci ketika tes sedang berjalan. + Anda perlu terhubung ke internet untuk mengunduh data pengukuran mentah. + Hasil tidak diunggah + Beberapa hasil tes anda belum diunggah ke peladen OONI. Jika anda ingin berkontribusi pada kumpulan data OONI, silahkan unggah hasil tersebut. + Unggah + Mengunggah %1$s ... + OONI Probe tidak dapat berjalan secara otomatis tanpa pengoptimalan baterai. Apakah Anda ingin mencoba lagi? + Silakan nonaktifkan koneksi VPN Anda. + Jika Anda menjalankan OONI Probe dengan VPN yang diaktifkan, hasil tes bisa jadi terlihat berasal dari negara yang salah. Silakan nonaktifkan koneksi VPN Anda. + Beberapa pengukuran diambil melalui VPN. + Jika Anda mengunggah pengukuran yang diambil saat VPN diaktifkan, hasil tes bisa jadi terlihat berasal dari negara yang salah. + Pengunggahan berhasil + Tampilkan log kegagalan + Dapatkan pembaruan tentang sensor internet + Tertarik menjalankan tes OONI Probe selama terjadinya sensor darurat? Aktifkan notifikasi untuk menerima pesan saat kami mendengar adanya sensor internet di dekat Anda. + Untuk meningkatkan keakuratan pengetesan, kami memerlukan izin GPS. OONI hanya akan mengumpulkan perkiraan posisi GPS Anda. + Anda ingin menghapus semua hasil tes? + Anda ingin menghapus tes ini? + Silakan aktifkan setidaknya satu tes + Silakan masukkan hanya angka di bidang ini + Tes ulang + Pengetesan ini gagal. Tes ulang? + Anda akan mengetes ulang %1$s situs web. + Jalankan + Anda yakin? + URL Anda tidak akan disimpan saat Anda meninggalkan layar ini. Anda yakin ingin meninggalkan layar ini? + Aktifkan Pengunggahan Manual? + Pengaturan ini memungkinkan Anda untuk mengunggah ulang pengukuran yang belum dipublikasikan secara manual. + Aktifkan + Tidak, terima kasih + Gagal mengunggah + Kami gagal mengunggah %1$s/%2$s pengukuran. Log kegagalan telah dibagikan dengan pengembang OONI. + Berkas log tidak ditemukan + Tidak ditemukan URL yang valid + JSON kosong + Apakah Anda ingin menghentikan pengetesan ini? + Ini akan menghentikan pengetesan yang sedang berlangsung mulai saat ini. + Apakah Anda ingin menjalankan tes secara otomatis? + Dengan mengaktifkan pengetesan otomatis, Anda akan berkontribusi pada pengukuran OONI secara berkala. + Silakan izinkan aplikasi untuk berjalan di latar belakang. + Ingatkan saya nanti + Disalin ke papan klip + Tidak terunggah + Unggah + Beberapa tidak terunggah + Unggah Semua + News Media Websites + Perpesanan Instan + Middlebox + Kinerja + Penghindaran + Eksperimental + Tes Jalur Permintaan HTTP Tidak Valid + Tes Manipulasi Bidang Header HTTP + Tes Konektivitas Web + Tes Kecepatan NDT + Tes Aliran DASH + Tes WhatsApp + Tes Telegram + Tes Facebook Messenger + Tes Psiphon + Tes Tor + Tes RiseupVPN + Tes Signal + Pengaturan + Jumlah waktu yang Anda tetapkan untuk durasi pengetesan terlalu rendah. + About News Media Scan + This app is the product of close cooperation between Deutsche Welle (DW) and OONI.\n\n_About DW:_ Unbiased information for free minds – that is the DW brand promise. As an independent media company, Germany’s international news broadcaster informs people around the world. With programming in 32 languages, DW connects people across the globe via TV, radio, Internet and on social media. \n\nFurther information:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n_About OONI:_ Founded in 2012, the Open Observatory of Network Interference (OONI) is a non-profit free software project that aims to empower decentralized efforts in documenting internet censorship around the world. Thanks to their global community, [more than a billion network measurements](https://explorer.ooni.org/) have been published from more than 200 countries, shedding light on cases of internet censorship worldwide. \n\nBe part of the internet freedom movement by providing data from the networks you’re using. + Pelajari lebih lanjut + Blog + Laporan + Kebijakan Data OONI + Notifikasi + Diaktifkan + Beri tahu setelah tes selesai + Umpan Berita + Pengetesan otomatis + Jalankan tes secara otomatis + Jumlah pengetesan otomatis: %1$s. + Pengetesan otomatis terakhir: %1$s. + Hanya melalui WiFi + Hanya ketika mengisi daya + Dengan mengaktifkan pengetesan otomatis, tes OONI Probe akan berjalan secara otomatis beberapa kali per hari. Hasil tes Anda akan secara otomatis dipublikasikan di OONI Explorer: https://explorer.ooni.org/ \n\nPenting: Jika Anda mengaktifkan VPN, OONI Probe tidak akan menjalankan tes secara otomatis. Silakan nonaktifkan VPN Anda untuk pengetesan OONI Probe secara otomatis. Pelajari lebih lanjut: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + Berbagi + Publikasikan Hasil Secara Otomatis + Unggah Hasil Manual + Sertakan Info Jaringan + Sertakan perkiraan geolokasi + Sertakan alamat IP saya + Sertakan Kode Negara + Informasi ini (misalnya IT untuk Italia) diperlukan untuk mengidentifikasi negara tempat pengukuran dilakukan. Anda yakin ingin menonaktifkan opsi ini? + Dengan memublikasikan hasil, Anda meningkatkan transparansi atas gangguan jaringan dan mendukung komunitas OONI.\n\nInformasi jaringan (yaitu, Nomor Sistem Otonom) dibutuhkan untuk mengidentifikasi Penyedia Jasa Internet. + Opsi tes + Apa yang Anda konfigurasikan melalui pengaturan pengetesan di atas (misalnya menonaktifkan tes WhatsApp) akan berlaku untuk pengetesan secara manual, serta untuk pengetesan secara otomatis (ketika pengetesan otomatis diaktifkan). + Tes jangka panjang + Jalankan tes jangka panjang di latar depan? + Privasi + Kirim laporan kerusakan + Lanjutan + Mode Gelap + Log Awakutu + Lihat log terbaru + Pengaturan Bahasa + Pilih Bahasa + Selalu gunakan domain fronting + Backend proxy + Proksi + Tidak ada + Psiphon + Proksi Ubah Suaian + URL Proksi Ubah Suaian + Protokol Proksi Ubah Suaian + Koneksi + Nama hos + Porta + Kredensial (opsional) + Nama pengguna + Kata sandi + Gunakan Psiphon melalui proksi ubah suaian + Apakah anda tidak dapat menggunakan OONI Probe? Coba aktifkan [Psiphon](https://psiphon.ca/) untuk menghindari potensi pemblokiran OONI Probe. Atau, Anda dapat menggunakan proksi ubah suaian. + Batas durasi tes + Durasi tes + Kategori situs web untuk dites + %1$s kategori diaktifkan + Sunting + Batal Pilih Semua + Pilih Semua + Simpan + Perubahan yang Belum Disimpan + Anda telah membuat beberapa perubahan pada kategori yang diaktifkan. Apakah Anda ingin menyimpannya? + Simpan + Buang + Pilih situs web untuk dites + URL + Tidak ada URL yang dimasukkan + Jalankan + Tambahkan situs web + Muat dari templat + Jumlah situs web yang telah dites (0 artinya semua) + Tes WhatsApp + Tes Telegram + Tes Facebook Messenger + Tes Signal + Jalankan Tes Jalur Permintaan HTTP Tidak Valid + Jalankan Tes Manipulasi Bidang Header HTTP + Jalankan Tes Kecepatan NDT + Pilihan peladen NDT otomatis + Alamat peladen NDT + Porta peladen NDT + Jalankan Tes Aliran DASH + Pilihan peladen DASH otomatis + Peladen DASH + Porta peladen DASH + Tes Psiphon + Tes Tor + Tes RiseupVPN + Peringatkan ketika VPN sedang dipakai + Kirim surel ke dukungan + Silakan deskripsikan masalah yang Anda alami: + Silakan kirim surel ke bugs@openobservatory.org dengan informasi versi aplikasi dan iOS. Ketuk \"Salin ke papan klip\" di bawah untuk menyalin alamat surel kami. + Bahasa aplikasi saat ini adalah %1$s + Bahasa + Penggunaan penyimpanan + Penyimpanan yang digunakan + Hapus + Bersihkan + Anda akan menghapus semua pengukuran OONI dari peranti Anda. Bila diunggah, pengukuran tersebut akan tetap tersedia di [OONI Explorer](https://explorer.ooni.org) + Selesai menjalankan + Hentikan tes + Coba mirror + Memuat... + Terjadi kesalahan tak terduga. Silakan muat ulang halaman ini. + Anda akan menjalankan tes OONI Probe. + %1$s URL + Nama tes + Detail Tes + Jalankan + Usang + Anda perlu versi terbaru OONI Probe untuk menjalankan tes ini. + Perbarui + Tutup + Parameter tidak valid + Tautan OONI Run rusak atau aplikasi Anda sudah usang. + Anda akan mengetes sampel situs web secara acak. + Mohon menunggu sampai tes selesai dijalankan sebelum mengetuk tautan OONI Run. + Baca lebih lanjut > + Baca lebih sedikit > + Narkoba & Alkohol + Agama + Pornografi + Pakaian Provokatif + Kritik Politik + Isu HAM + Lingkungan + Terorisme dan Militan + Ujaran Kebencian + Media Berita + Pendidikan Seksual + Kesehatan Publik + Perjudian + Alat penghindaran + Kencan Daring + Jejaring Sosial + LGBTQ+ + Pembagian Berkas + Alat Peretasan + Alat Komunikasi + Pembagian Media + Hosting dan Blogging + Mesin Pencari + Permainan + Budaya + Ekonomi + Pemerintah + Niaga Elektronik + Kontrol Muatan + Organisasi Antarpemerintah. + Konten lain-lain + Penggunaan serta penjualan narkoba dan alkohol + Isu Agama, baik yang mendukung maupun mengkritisi + Pornografi berat dan ringan + Pakaian provokatif dan gambaran wanita berpakaian minim + Pandangan politik kritis + Isu HAM + Diskusi tentang isu lingkungan + Terorisme, gerakan militan atau separatis yang melakukan kekerasan + Perendahan kelompok tertentu berdasarkan ras, jenis kelamin, seksualitas, atau karakteristik lainnya + Situs berita utama, media berita regional, dan media independen + Isu kesehatan seksual termasuk kontrasepsi, PMS, pencegahan pemerkosaan, dan aborsi + Isu kesehatan masyarakat, seperti COVID-19, HIV/AIDS, Ebola + Perjudian dan taruhan daring + Anonimisasi, penghindaran sensor dan enkripsi + Situs kencan daring + Alat dan platform jejaring sosial daring + Komunitas LGBTQ+ yang mendiskusikan isu terkait (kecuali pornografi) + Pembagian berkas termasuk penyimpanan berkas berbasis awan, torrent, dan P2P + Alat dan berita keamanan komputer + Alat komunikasi individu dan kelompok termasuk VoIP, perpesanan, dan webmail + Pembagian video, audio dan foto + Pengehosan web, blogging, dan publikasi daring lain. + Mesin pencari dan portal + Permainan daring dan platform permainan (tidak termasuk situs perjudian) + Hiburan termasuk sejarah, sastra, musik, film, satir dan humor + Pembangunan ekonomi umum dan kemiskinan + Situs web yang dikelola pemerintah, termasuk militer + Jasa dan produk komersial + Konten tidak berbahaya atau menyinggung yang digunakan untuk mengontrol + Organisasi antarpemerintah seperti Persatuan Bangsa-Bangsa + Situs yang belum dikategorikan + Jangan tanya lagi + Aktifkan notifikasi progres tes + Apakah Anda ingin mengaktifkan notifikasi mengenai progres tes OONI Probe dan menampilkan tes yang sedang berjalan di laci notifikasi? + Memuat Tautan + Galat + Pemasangan tautan dibatalkan + Dibuat oleh %s pada %s\n\n%s + Copot Tautan + Tinjau Pembaruan + Revisi sebelumnya + Anda dapat memasang kembali tautan ini hanya dari tautan asli yang dikirim oleh pembuatnya. + Lihat Lebih Lanjut + Tes situs web secara otomatis + Galat + Tes OONI + Tautan OONI Run + Tes selesai dijalankan. Ketuk untuk melihat hasilnya. + KEDALUWARSA + DIPERBARUI + Pasang Tautan Baru + Pembuat: + Pengaturan Tes + Pasang pembaruan secara otomatis + Jalankan tes secara otomatis + Tautan terpasang + Pasang Tautan + Pemasangan tautan dibatalkan + PEMBARUAN + Tes %s URL + Tes URL + Pembaruan Tautan + Tautan diperbarui + Pembaruan Tautan (%1$s dari %2$s) + PERBARUI DAN SELESAI (%1$s dari %2$s) + PERBARUI (%1$s dari %2$s) + Perbarui + Jalankan tes + Jalankan Tes + Silakan pilih tes untuk dijalankan + Jalankan %s tes + Pilih tes untuk dijalankan + Pilih semua tes + Batal pilih semua tes + Memuat Tautan + Memuat pembaruan tautan + Pembaruan tautan sudah siap + Tinjau + %s input + Kembali + refresh + Tutup + Buka + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Januari + Februari + Maret + April + Mei + Juni + Juli + Agustus + September + Oktober + November + Desember + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Gagal + Oke + Anomali + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Log + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Menguji + Manual Run + Auto Run + VPN + diff --git a/news-media-scan/pl/description.xlf b/news-media-scan/pl/description.xlf new file mode 100644 index 0000000..2bfa522 --- /dev/null +++ b/news-media-scan/pl/description.xlf @@ -0,0 +1,46 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + News Media Scan + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Odkryj blokowanie witryn mediów informacyjnych w twoim otoczeniu + This is limited by Google to 80 characters + + + News Media Scan + News Media Scan + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Odkryj blokowanie witryn mediów informacyjnych w twoim otoczeniu + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Dowiedz się, czy możesz dotrzeć do stron z wiadomościami, których potrzebujesz, czy też są one zablokowane. Aplikacja DW News Media Scan to narzędzie, którego potrzebujesz. Pomagając zwalczać cenzurę na całym świecie, stajesz się częścią globalnej społeczności działającej na rzecz wolności w internecie. + +Ta aplikacja to efekt współpracy Deutsche Welle (DW) i OONI. + +O DW: obiektywne informacje dla niezależnych umysłów - to gwarancja marki DW - niemieckiego nadawcy, docierającego do odbiorców w każdej szerokości geograficznej. + +Dzięki programom w 32 językach DW łączy ludzi na całym świecie za pośrednictwem telewizji, radia, internetu i mediów społecznościowych. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + + +
+
\ No newline at end of file diff --git a/news-media-scan/pl/strings.json b/news-media-scan/pl/strings.json new file mode 100644 index 0000000..f9819e0 --- /dev/null +++ b/news-media-scan/pl/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "Are news media sites blocked?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers.", + "Onboarding.ThingsToKnow.Bullet.1": "OONI will openly publish the measurement data you send, along with your network information.", + "Onboarding.ThingsToKnow.Bullet.2": "Anyone monitoring your Internet connection will be able to see you are running News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "You will be testing news websites that might be banned in the country where you currently find yourself.", + "Onboarding.PopQuiz.1.Question": "If someone is monitoring my internet activity, they will see that I am running News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running.", + "Onboarding.PopQuiz.2.Question": "Every time I run News Media Scan, the network data I collect will automatically get published.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings).", + "Onboarding.AutomatedTesting.Paragraph": "To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon\u2019t worry, we\u2019ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time.", + "Onboarding.Crash.Paragraph": "To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team?", + "Dashboard.Websites.Card.Description": "Checks for blocking of news media websites", + "Test.Websites.Fullname": "News Media Websites", + "Settings.About.Label": "About News Media Scan", + "Settings.About.Content.Paragraph": "Ta aplikacja to efekt współpracy Deutsche Welle (DW) i OONI.\n\nO DW: obiektywne informacje dla niezależnych umysłów - to gwarancja marki DW - niemieckiego nadawcy, docierającego do odbiorców w każdej szerokości geograficznej. \n\nDzięki programom w 32 językach DW łączy ludzi na całym świecie za pośrednictwem telewizji, radia, internetu i mediów społecznościowych.\n\nWięcej informacji: [o DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n[OONI](https://explorer.ooni.org/) (Open Observatory of Network Interference) - projekt non-profit powstał w 2012 roku, jest oparty na powszechnie dostępnym oprogramowaniu, którego celem jest wzmocnienie zdecentralizowanych wysiłków w dokumentowaniu cenzury internetu na całym świecie. \n\nDzięki jego globalnej społeczności opublikowano już ponad miliard pomiarów sieci z ponad 200 krajów, które dokumentują przypadki cenzury internetu na całym świecie.\n\nBądź częścią ruchu na rzecz wolności w internecie, udostępniając dane z sieci, z których korzystasz.", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/pl/strings.xml b/news-media-scan/pl/strings.xml new file mode 100644 index 0000000..3bb0171 --- /dev/null +++ b/news-media-scan/pl/strings.xml @@ -0,0 +1,639 @@ + + + News Media Scan + Are news media sites blocked? + Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers. + Got It + Heads-up! + OONI will openly publish the measurement data you send, along with your network information. + Anyone monitoring your Internet connection will be able to see you are running News Media Scan. + You will be testing news websites that might be banned in the country where you currently find yourself. + Tak, rozumiem + Dowiedz się więcej + Pop Quiz + Prawda + Fałsz + Powrót + Kontynuuj + Question 1/2 + If someone is monitoring my internet activity, they will see that I am running News Media Scan. + Ostrzeżenie + News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running. + Question 2/2 + Every time I run News Media Scan, the network data I collect will automatically get published. + Ostrzeżenie + To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings). + Automated testing + To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon’t worry, we’ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time. + Crash Reporting + To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team? + Tak + Nie + Ustawienia Domyślne + We collect and publish: + Country code (e.g. IT for Italy) + Network information (including Autonomous System Number) + Time & date of testing + We do our best not to publish your IP address or any other potentially personally identifiable information.\n\nLearn more through [OONI\'s Data Policy](https://ooni.org/about/data-policy/). + By tapping \"OK\", you will share crash reports to help us improve OONI Probe. + Let\'s go + Change defaults + Dashboard + Run + niedostępny + Run + Last test: + Estimated: + Choose websites + Running: + Pozostało czasu: + %1$s seconds + Preparing test + Calculating ETA + Pokaż log + Close Log + Stopping test… + Finishing the currently pending tests, please wait… + Proxy in use + Tap card for more + ~%1$ss + Checks for blocking of news media websites + Check whether websites are blocked using OONI\'s [Web Connectivity test](https://ooni.org/nettest/web-connectivity/).\n\nEvery time you tap Run, you test different websites from the Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists.\n\nTo test the sites of your choice, tap the Choose websites button or select categories of sites via the settings of this card. \n\nThis test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). + Check whether websites are blocked using OONI\'s [Web Connectivity test](https://ooni.org/nettest/web-connectivity/).\n\nYou will test the websites included in the Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists.\n\nThis test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). + Test your network speed and performance + Measure the speed and performance of your network using the [NDT](https://ooni.org/nettest/ndt/) test.\n\nMeasure video streaming performance using the [DASH](https://ooni.org/nettest/dash/) test.\n\nThese tests consume data depending on your network speed.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/).\n\nDisclaimer: These tests rely on third party servers. We therefore cannot guarantee that your IP address will not be collected. + By running the tests in this card, you will:\n\n- Measure the speed and performance of your network ([NDT](https://ooni.org/nettest/ndt/) test)\n- Measure video streaming performance ([DASH](https://ooni.org/nettest/dash/) test)\n- Check for the presence of [middlebox technologies](https://ooni.org/support/glossary/#middlebox) on your network ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests)\n\nThese tests consume data depending on your network speed.\n\nYour test results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/).\n\n**Disclaimer:** The [NDT](https://ooni.org/nettest/ndt/) and [DASH](https://ooni.org/nettest/dash/) tests are conducted against third-party servers provided by [Measurement Lab (M-Lab)](https://www.measurementlab.net/). If you run these tests, M-Lab will collect and publish your IP address (for research purposes), irrespective of your OONI Probe settings. Learn more about M-Lab’s data governance through its [privacy statement](https://www.measurementlab.net/privacy/). + Detect middleboxes in your network + Internet Service Providers often use network appliances (middleboxes) for various networking purposes (such as caching). Sometimes these middleboxes are used to implement internet censorship and/or surveillance.\n\nFind middleboxes in your network using OONI\'s [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). + Test the blocking of instant messaging apps + Check whether [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), and [Signal](https://ooni.org/nettest/signal) are blocked.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). + Test the blocking of censorship circumvention tools + Check whether [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) or [RiseupVPN](https://ooni.org/nettest/riseupvpn/) are blocked.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). + Run new experimental tests + Run the following new experimental tests developed by the OONI team:\n%1$s\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). + The following tests will only be run as part of automated testing: + Disabled Tests + Gbit/s + Mbit/s + kbit/s + ms + niedostępny + Nieznane + Test Results + Test Results + Tests + Sieci + Data Usage + Filter Tests + All Tests + Strony + Middleboxes + Wydajność + Instant Messaging + Omijanie blokad + Eksperymentalny + No tests have been run yet. Try running one! + %1$s blocked + %1$s blocked + %1$s tested + %1$s tested + Detected + Not detected + Nieudane + %1$s blocked + %1$s blocked + %1$s accessible + %1$s accessible + %1$s blocked + %1$s blocked + %1$s available + %1$s available + Incomplete Result + Błąd + Error in Measurement + Results not uploaded + Date & Time + Sieć + Państwo + Data Usage + Total Runtime + WiFi + Mobile Data + No internet + Nieudane + Tested + Tested + Blocked + Blocked + Strona domowa + Strony + Accessible + Accessible + Wideo + Quality + Wyślij + Pobierz + Ping + Detected + Not detected + Nieudane + Tested + Tested + Blocked + Blocked + Accessible + Accessible + Aplikacja + Aplikacje + Tested + Tested + Blocked + Blocked + Pracuję + Pracuję + Tool + Narzędzia + Runtime + Methodology + Pokaż logi + Data + Copy Explorer URL + Share Explorer URL + Kopiuj do schowka + Show in OONI Explorer + Nieudane + You can try to run this test again + Spróbuj ponownie + Learn how this test works [here](%1$s). + Accessible + %1$s is accessible. + Likely blocked + %1$s is likely blocked by means of %2$s.\n\nNote: False positives can occur. Learn more [here](https://ooni.org/support/faq/#what-are-false-positives). + Censorship Circumvention + **DNS tampering** + **TCP/IP based blocking** + **HTTP blocking (a blockpage might be served)** + **HTTP blocking (HTTP requests failed)** + Mobile App + OK + Nieudane + WhatsApp Web + OK + Nieudane + Registration + OK + Nieudane + Pracuję + This test successfully connected to WhatsApp\'s endpoints, registration service and web interface (web.whatsapp.com). + Likely blocked + WhatsApp appears to be blocked. + Mobile App + OK + Nieudane + Telegram Web + OK + Nieudane + Pracuję + This test successfully connected to Telegram\'s endpoints and web interface (web.telegram.org). + Likely blocked + Telegram appears to be blocked. + TCP connections + OK + Nieudane + DNS lookups + OK + Nieudane + Pracuję + This test successfully connected to Facebook\'s endpoints and resolved to Facebook IP addresses. + Likely blocked + Facebook Messenger appears to be blocked. + Likely blocked + Signal appears to be blocked. + Pracuję + This test successfully connected to Signal\'s endpoints. + No middleboxes detected + No network anomaly was detected when communicating with our servers. + Network tampering + Network traffic was manipulated when contacting our control servers.\n\nThis means that there may be a middlebox in your network, which could be responsible for censorship and/or surveillance. + No middleboxes detected + No network anomaly was detected when communicating with our servers. + Network tampering + Network traffic was manipulated when contacting our control servers.\n\nThis means that there may be a middlebox in your network, which could be responsible for censorship and/or surveillance. + You Sent + You Received + Wyślij + Pobierz + Ping + Serwer + Retransmission Rate + Out of Order + Average Ping + Max Ping Estimate + MSS + Timeouts + You can stream up to %1$s without buffering. + Median Bitrate + Playout Delay + Likely blocked + Pracuję + [Psiphon](https://psiphon.ca/) appears to be blocked. + We were able to successfully bootstrap a Psiphon connection. This means that [Psiphon](https://psiphon.ca/) should work. + Bootstrap Time + %1$s s + Likely blocked + Pracuję + [Tor](https://www.torproject.org/) appears to be blocked. + We were able to successfully connect to the default Tor bridges and/or Tor directory authorities. This means that [Tor](https://www.torproject.org/) should work. + Default Bridges + %1$s/%2$s OK + Directory Authorities + %1$s/%2$s OK + Nazwa + Adres + Typ + Połącz + Handshake + Likely blocked + Pracuję + [RiseupVPN](https://riseup.net/vpn) appears to be blocked. + We were able to successfully connect to RiseupVPN\'s bootstrap server and VPN gateways. This means that [RiseupVPN](https://riseup.net/vpn) should work. + Bootstrap server + OpenVPN connections + Bridged connections + Blocked + %1$s blocked + %1$s blocked + OK + This is an experimental test. + Feed + Feed + OK + Anuluj + No, don\'t ask again + Usuń + Błąd + Ponów + Sounds great + Nie, dzięki + Not now + Run anyways + Disable VPN + Always Run + Unable to run the test. Please check your internet connectivity. + Unable to download URL list. Please try again. + Please wait for the current running tests to finish, before starting a new test. + Notification permissions are required. Please enable them in the Settings of your phone and then enable them in your OONI Probe app. + Go to the Settings + This screen is locked while a test is running. + You need to be connected to the internet to download the raw measurement data. + Results not uploaded + Some of your test results have not been uploaded to OONI servers. If you\'d like to contribute to OONI\'s dataset, please upload them. + Wyślij + Uploading %1$s ... + OONI Probe cannot run automatically without battery optimization. Do you want to try again? + Please disable your VPN connection. + If you run OONI Probe with a VPN enabled, the test results may appear to come from the wrong country. Please disable your VPN connection. + Some measurements were taken over VPN. + If you upload measurements taken when VPN enabled, the test results may appear to come from the wrong country. + Upload successful + Display failure log + Get updates on internet censorship + Interested in running OONI Probe tests during emergent censorship events? Enable notifications to receive a message when we hear of internet censorship near you. + To improve the accuracy of tests, we need GPS permissions. OONI will only collect an approximation of your GPS position. + Do you want to delete all test results? + Do you want to delete this test? + Please enable at least one test + Please insert only digits in this field. + Re-run test + This test has failed. Re-run the test? + You are about to re-test %1$s websites. + Run + Jesteś pewien? + Your URLs will not be saved when you leave this screen. Are you sure you want to leave this screen? + Enable Manual Upload? + This setting allows you to manually re-upload unpublished measurements. + Włącz + Nie, dzięki + Wysyłanie nieudane. + We have failed to upload %1$s/%2$s measurements. The failure log has been shared with OONI developers. + Log file not found + No valid URLs found + JSON empty + Do you want to interrupt this test? + This will interrupt the current test from this moment. + Would you like to run tests automatically? + By enabling automated testing, you will contribute OONI measurements on a regular basis. + Please allow the app to run in the background. + Przypomnij później + Skopiowano do schowka + Not uploaded + Wyślij + Some not uploaded + Upload All + News Media Websites + Instant Messaging + Middleboxes + Wydajność + Omijanie blokad + Eksperymentalny + HTTP Invalid Request Line Test + HTTP Header Field Manipulation Test + Web Connectivity Test + NDT Speed Test + DASH Streaming Test + WhatsApp Test + Telegram Test + Facebook Messenger Test + Psiphon Test + Tor Test + RiseupVPN Test + Signal Test + Ustawienia + The amount of time you have set for the test duration is too low. + About News Media Scan + Ta aplikacja to efekt współpracy Deutsche Welle (DW) i OONI.\n\nO DW: obiektywne informacje dla niezależnych umysłów - to gwarancja marki DW - niemieckiego nadawcy, docierającego do odbiorców w każdej szerokości geograficznej. \n\nDzięki programom w 32 językach DW łączy ludzi na całym świecie za pośrednictwem telewizji, radia, internetu i mediów społecznościowych.\n\nWięcej informacji: [o DW](https://corporate.dw.com/en/about-dw/s-30688) \n\n[OONI](https://explorer.ooni.org/) (Open Observatory of Network Interference) - projekt non-profit powstał w 2012 roku, jest oparty na powszechnie dostępnym oprogramowaniu, którego celem jest wzmocnienie zdecentralizowanych wysiłków w dokumentowaniu cenzury internetu na całym świecie. \n\nDzięki jego globalnej społeczności opublikowano już ponad miliard pomiarów sieci z ponad 200 krajów, które dokumentują przypadki cenzury internetu na całym świecie.\n\nBądź częścią ruchu na rzecz wolności w internecie, udostępniając dane z sieci, z których korzystasz. + Dowiedz się więcej + Blog + Raporty + OONI Data Policy + Powiadomienia + Aktywny + Notify upon test completion + News Feed + Automated testing + Run tests automatically + Number of automated tests: %1$s. + Last automated test: %1$s. + Only on WiFi + Only while charging + By enabling automatic testing, OONI Probe tests will run automatically multiple times per day. Your test results will automatically get published on OONI Explorer: https://explorer.ooni.org/ \n\nImportant: If you have a VPN enabled, OONI Probe will not run tests automatically. Please turn off your VPN for automated OONI Probe testing. Learn more: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + Udostępnianie + Automatically Publish Results + Manual Result Upload + Include Network Info + Include approximate geo-location + Include my IP address + Include Country Code + This information (e.g. IT for Italy) is required to identify which country the measurements are collected from. Are you sure you want to disable this option? + By publishing results, you are increasing transparency of network interference and supporting the OONI community. \n\nNetwork information (i.e. Autonomous System Number) is required for identifying Internet Service Providers. + Test options + What you configure through the above test settings (e.g. disabling the WhatsApp test) will apply to tests run manually, as well as to tests run automatically (when automated testing is enabled). + Long running test + Run long running tests in foreground? + Prywatność + Send crash reports + Zaawansowane + Dark Mode + Debug logs + See recent logs + Language Setting + Wybierz język + Always use domain fronting + Backend proxy + Proxy + Brak + Psiphon + Custom Proxy + Custom Proxy URL + Custom proxy protocol + Połączenie + Nazwa hosta + Port + Credentials (optional) + Użytkownik + Hasło + Use Psiphon over custom proxy + Are you unable to use OONI Probe? Try enabling [Psiphon](https://psiphon.ca/) to circumvent potential OONI Probe blocking. Alternatively, you can use a custom proxy. + Limit test duration + Test duration + Website categories to test + %1$s categories enabled + Edytuj + Deselect All + Zaznacz wszystko + Zapisz + Unsaved Changes + You made some changes to the enabled categories. Would you like to save them? + Zapisz + Odrzuć + Choose websites to test + URL + No URLs entered + Run + Add website + Load from template + Number of tested websites (0 means all) + Test WhatsApp + Test Telegram + Test Facebook Messenger + Test Signal + Run the HTTP Invalid Request Line Test + Run the HTTP Header Field Manipulation Test + Run the NDT Speed Test + Automatic NDT server selection + NDT server address + NDT server port + Run the DASH Streaming Test + Automatic DASH server selection + DASH server + DASH server port + Test Psiphon + Test Tor + Test RiseupVPN + Warn when VPN is in use + Send email to support + Please describe the problem you are experiencing: + Please send an email to bugs@openobservatory.org with information on the app and iOS version. Tap \"Copy to clipboard\" below to copy our email address. + Current app language is %1$s + Język + Storage usage + Storage used + Usuń + Wyczyść + You are about to delete all OONI measurements from your device. If uploaded, they will still be available on [OONI Explorer](https://explorer.ooni.org) + Finished running + Stop test + Try mirror + ładowanie... + An unexpected error occurred. Please reload this page. + You are about to run an OONI Probe test. + %1$s URLs + Test Name + Test Details + Run + Out of date + You need a newer version of OONI Probe to run this test. + Aktualizacja + Zamknij + Invalid parameter + The OONI Run link is either malformed or your app is out of date. + You will test a random sample of websites. + Please wait for the test to finish running before tapping on an OONI Run link. + Read more > + Read less > + Drugs & Alcohol + Religion + Pornography + Provocative Attire + Political Criticism + Human Rights Issues + Environment + Terrorism and Militants + Hate Speech + News Media + Sex Education + Public Health + Gambling + Circumvention tools + Online Dating + Social Networking + LGBTQ+ + File-sharing + Hacking Tools + Communication Tools + Media sharing + Hosting and Blogging + Wyszukiwarki + Gaming + Culture + Economics + Government + E-commerce + Control content + Intergovernmental Orgs. + Miscellaneous content + Use and sale of drugs and alcohol + Religious issues, both supportive and critical + Hard-core and soft-core pornography + Provocative attire and portrayal of women wearing minimal clothing + Critical political viewpoints + Human rights issues + Discussions on environmental issues + Terrorism, violent militant or separatist movements + Disparaging of particular groups based on race, sex, sexuality or other characteristics + Major news websites, regional news outlets and independent media + Sexual health issues including contraception, STD\'s, rape prevention and abortion + Public health issues, such as COVID-19, HIV/AIDS, Ebola + Online gambling and betting + Anonymization, censorship circumvention and encryption + Online dating sites + Online social networking tools and platforms + LGBTQ+ communities discussing related issues (excluding pornography) + File sharing including cloud-based file storage, torrents and P2P + Computer security tools and news + Individual and group communication tools including VoIP, messaging and webmail + Video, audio and photo sharing + Web hosting, blogging and other online publishing + Search engines and portals + Online games and gaming platforms (excluding gambling sites) + Entertainment including history, literature, music, film, satire and humour + General economic development and poverty + Government-run websites, including military + Commercial services and products + Benign or innocuous content used for control + Intergovernmental organizations including The United Nations + Sites that haven\'t been categorized yet + Don’t ask again + Enable test progress notifications + Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? + Link Loading + Błąd + Link installation cancelled + Created by %s on %s\n\n%s + Uninstall Link + Review Updates + Previous revisions + You will be able to install this link again only from the original link sent by the creator. + See More + Test websites automatically + Błąd + OONI Tests + OONI Run Links + Run finished. Tap to view results. + EXPIRED + UPDATED + Install New Link + Autor: + Testuj ustawienia + Install updates automatically + Run tests automatically + Link installed + Install Link + Link installation cancelled + UPDATES + Test %s URLs + Test URLs + Link Update + Link(s) updated + Link Update (%1$s of %2$s) + UPDATE AND FINISH (%1$s of %2$s) + UPDATE (%1$s of %2$s) + Aktualizacja + Run tests + Run Tests + Please select test to run + Run %s test(s) + Select the tests to run + Select all tests + Deselect all tests + Link Loading + Link updates loading + Link updates ready + Przegląd + %s inputs + Wstecz + refresh + Zwiń + Rozwiń + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + styczeń + luty + marzec + kwiecień + maj + czerwiec + lipiec + sierpień + wrzesień + październik + listopad + grudzień + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Nieudane + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Dziennik + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testuję + Manual Run + Auto Run + VPN + diff --git a/news-media-scan/pt_BR/description.xlf b/news-media-scan/pt_BR/description.xlf new file mode 100644 index 0000000..c1528ef --- /dev/null +++ b/news-media-scan/pt_BR/description.xlf @@ -0,0 +1,42 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + Verificação mídia de notícias + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Descubra o bloqueio de sites de mídia de notícias em sua área. + This is limited by Google to 80 characters + + + News Media Scan + Verificação mídia de notícias + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Descubra o bloqueio de sites de mídia de notícias em sua área. + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + Colete evidências de censura na internet. Meça a velocidade e a performance da sua rede. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Descubra se você pode acessar os sites de notícias que você precisa ou se eles estão bloqueados \n - News Media Scan by DW fornece a transparência que você precisa. Você também estará fazendo uma contribuição valiosa para a comunidade global "Internet Freedom", ajudando a descobrir a censura em todo o mundo. \n Este aplicativo é o produto da estreita cooperação entre a Deutsche Welle (DW) e a OONI. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + network, rede, teste de velocidade,medição,net,wi-fi,networking, escanear,largura de banda,bench,dns,móvel,ooni,pesquisa,ferramenta + + +
+
\ No newline at end of file diff --git a/news-media-scan/pt_BR/strings.json b/news-media-scan/pt_BR/strings.json new file mode 100644 index 0000000..9393a68 --- /dev/null +++ b/news-media-scan/pt_BR/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "Verificação mídia de notícias", + "Onboarding.WhatIsOONIProbe.Title": "Os sites de mídia de notícias estão bloqueados?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Execute o News Media Scan para descobrir! News Media Scan é o aplicativo #1 para lhe dar transparência sobre o cenário de notícias em qualquer país que você se encontra atualmente. Além disso, ao usar o aplicativo, você está fazendo uma contribuição importante para a medição da censura em todo o mundo. A lista que você vê no aplicativo é uma lista pública, com curadoria da comunidade no GitHub e não com curadoria da DW. Representa uma gama objetiva de provedores de mídia de notícias internacionais e nacionais.", + "Onboarding.ThingsToKnow.Bullet.1": "A OONI publicará abertamente os dados de medição que você enviar, juntamente com as informações da sua rede.", + "Onboarding.ThingsToKnow.Bullet.2": "Qualquer pessoa que monitore sua conexão com a Internet poderá ver que você está executando o News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "Você estará testando sites de notícias que podem ser banidos no país onde você se encontra atualmente.", + "Onboarding.PopQuiz.1.Question": "Se alguém estiver monitorando minha atividade na Internet, verá que estou executando o News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan não é uma ferramenta de privacidade. Qualquer pessoa que monitore sua atividade na internet verá qual software você está executando.", + "Onboarding.PopQuiz.2.Question": "Sempre que executar o News Media Scan, os dados de rede que coleto serão publicados automaticamente.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "Para aumentar a transparência da censura na Internet, os dados de rede de todos os usuários do News Media Scan são publicados automaticamente (a menos que eles optem por não participar nas configurações).", + "Onboarding.AutomatedTesting.Paragraph": "Para medir a censura na internet todos os dias, ative os testes automatizados para que o News Media Scan possa executar testes periodicamente. Não se preocupe, estaremos atentos ao uso da bateria. Você pode desativar o teste automatizado nas configurações a qualquer momento.", + "Onboarding.Crash.Paragraph": "Para melhorar o News Media Scan, gostaríamos de coletar relatórios de falhas anônimos quando o aplicativo não funciona corretamente. Gostaria de aceitar o envio de relatórios de falhas para a equipe de desenvolvimento da OONI?", + "Dashboard.Websites.Card.Description": "Verifica o bloqueio de sites de mídia de notícias", + "Test.Websites.Fullname": "Sites de Mídia de Notícias", + "Settings.About.Label": "Sobre o News Media Scan", + "Settings.About.Content.Paragraph": "Este aplicativo é o produto da estreita cooperação entre a Deutsche Welle (DW) e a OONI. _About DW:_ Informação imparcial para mentes livres – essa é a promessa da marca DW. Como uma empresa de mídia independente, a emissora de notícias internacional da Alemanha informa as pessoas em todo o mundo. Com programação em 32 idiomas, a DW conecta pessoas em todo o mundo via TV, rádio, internet e nas redes sociais. Mais informações:[ Sobre a DW](https://corporate.dw.com/en/about-dw/s-30688) _About OONI:_ Fundado em 2012, o Open Observatory of Network Interference (OONI) é um projeto de software livre sem fins lucrativos que visa capacitar esforços descentralizados na documentação da censura na internet em todo o mundo. Graças à sua comunidade global, [mais de um bilhão de medições de rede](https://explorer.ooni.org/) foram publicadas de mais de 200 países, lançando luz sobre casos de censura na internet em todo o mundo. Faça parte do movimento de liberdade da internet fornecendo dados das redes que você está usando.", + "Settings.Proxy.Label": "Proxy de back-end" +} \ No newline at end of file diff --git a/news-media-scan/pt_BR/strings.xml b/news-media-scan/pt_BR/strings.xml new file mode 100644 index 0000000..b70bee3 --- /dev/null +++ b/news-media-scan/pt_BR/strings.xml @@ -0,0 +1,639 @@ + + + Verificação mídia de notícias + Os sites de mídia de notícias estão bloqueados? + Execute o News Media Scan para descobrir! News Media Scan é o aplicativo #1 para lhe dar transparência sobre o cenário de notícias em qualquer país que você se encontra atualmente. Além disso, ao usar o aplicativo, você está fazendo uma contribuição importante para a medição da censura em todo o mundo. A lista que você vê no aplicativo é uma lista pública, com curadoria da comunidade no GitHub e não com curadoria da DW. Representa uma gama objetiva de provedores de mídia de notícias internacionais e nacionais. + Entendi + Atenção! + A OONI publicará abertamente os dados de medição que você enviar, juntamente com as informações da sua rede. + Qualquer pessoa que monitore sua conexão com a Internet poderá ver que você está executando o News Media Scan. + Você estará testando sites de notícias que podem ser banidos no país onde você se encontra atualmente. + Compreendo + Saber mais + Questionário Pop + Verdadeiro + Falso + Voltar + Continuar + Questão 1/2 + Se alguém estiver monitorando minha atividade na Internet, verá que estou executando o News Media Scan. + Atenção + News Media Scan não é uma ferramenta de privacidade. Qualquer pessoa que monitore sua atividade na internet verá qual software você está executando. + Questão 2/2 + Sempre que executar o News Media Scan, os dados de rede que coleto serão publicados automaticamente. + Atenção + Para aumentar a transparência da censura na Internet, os dados de rede de todos os usuários do News Media Scan são publicados automaticamente (a menos que eles optem por não participar nas configurações). + Teste automatizado + Para medir a censura na internet todos os dias, ative os testes automatizados para que o News Media Scan possa executar testes periodicamente. Não se preocupe, estaremos atentos ao uso da bateria. Você pode desativar o teste automatizado nas configurações a qualquer momento. + Relatar falhas + Para melhorar o News Media Scan, gostaríamos de coletar relatórios de falhas anônimos quando o aplicativo não funciona corretamente. Gostaria de aceitar o envio de relatórios de falhas para a equipe de desenvolvimento da OONI? + Sim + Não + Configurações-Padrão + Nós coletamos e publicamos: + Código do país (por exemplo, IT para Italy) + Informações de rede (incluindo o Número do Sistema Autônomo) + Hora e data do teste + Fazemos o possível para não publicar seu endereço IP ou qualquer outra informação que identifique você pessoalmente.\n\nAprenda mais através da [política de dados da OONI](https://ooni.org/about/data-policy/). + Ao tocar em \"OK\", você compartilhará relatórios de falhas para nos ajudar a melhorar o OONI Probe. + Vamos lá + Alterar padrões + P. Comando + Rodar + N/A + Rodar + Último teste: + Estimado: + Escolha sites + Rodando: + Tempo restante estimado: + %1$s segundos + Preparando o teste + Calculando ETA + Exibir registro + Fechar registro + Parando o teste… + Concluindo os testes atualmente pendentes, por favor aguarde... + Proxy em uso + Clique para ver outras opções + ~%1$ss + Verifica o bloqueio de sites de mídia de notícias + Verifique se os websites estão bloqueados usando o [Teste de Conectividade Web](https://ooni.org/nettest/web-connectivity/) da OONI.\n\nToda vez que você clica em Executar, você testa diferentes websites das listas de testes [globais](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e [específicas de cada país](https://github.com/citizenlab/test-lists/tree/master/lists) do Citizen Lab.\n\nPara testar os sites de sua escolha, toque no botão Escolher sites ou selecione categorias de sites através das configurações deste cartão.\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados em [Explorador OONI](https://explorer.ooni.org/world/) e [API OONI](https://api.ooni.io/). + Verifique se os websites estão bloqueados usando o [teste de conectividade Web da OONI](https://ooni.org/nettest/web-connectivity/).\n\nVocê testará os websites incluídos no Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e listas de teste [específicas por país](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/). + Teste a velocidade e o desempenho de sua rede + Meça a velocidade e o desempenho da sua rede usando o teste [NDT](https://ooni.org/nettest/ndt/).\n\nMeça o desempenho da streaming de vídeo usando o [DASH](https://ooni.org/nettest/dash/).\n\nEsses testes consomem dados dependendo da velocidade da sua rede.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/).\n\nIsenção de responsabilidade: Esses testes dependem de servidores de terceiros. Portanto, não podemos garantir que seu endereço IP não seja coletado. + Ao executar os testes neste cartão, você\n\n- Medirá a velocidade e o desempenho da sua rede ([Teste de NDT](https://ooni.org/nettest/ndt/))\n- Avaliará o desempenho do streaming de vídeo ([Teste de DASH](https://ooni.org/nettest/dash/))\n- Verificará a presença de [tecnologias de caixa intermediária](https://ooni.org/support/glossary/#middlebox) na sua rede ([Linha de solicitação inválida de HTTP](https://ooni.org/nettest/http-invalid-request-line/) e [Teste de manipulação de campo de cabeçalho HTTP](https://ooni.org/nettest/http-header-field-manipulation/))\n\nEsses testes consomem dados de acordo com a velocidade da sua rede.\n\nOs resultados dos seus testes serão publicados no [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/).\n\n**Isenção de responsabilidade:** Os testes de [NDT](https://ooni.org/nettest/ndt/) e [DASH](https://ooni.org/nettest/dash/) são realizados com servidores de terceiros, fornecidos pela [Measurement Lab (M-Lab)](https://www.measurementlab.net/). Se você executar esses testes, o M-Lab coletará e publicará seu endereço IP (para fins de pesquisa), independentemente das configurações do seu OONI Probe. Saiba mais sobre a governança de dados da M-Lab através de sua [declaração de privacidade](https://www.measurementlab.net/privacy/). + Detectar caixas intermediárias na sua rede + Os provedores de serviços de Internet geralmente utilizam aparelhos de rede (caixas intermediárias) para vários fins de rede (como o armazenamento em cache). Algumas vezes, essas caixas intermediárias são usadas para implementar censura e/ou vigilância na Internet.\n\nEncontre caixas intermediárias em sua rede usando a OONI [HTTP Linha de Solicitação Inválida](https://ooni.org/nettest/http-invalid-request-line/) e testes [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e no [OONI API](https://api.ooni.io/). + Teste o bloqueio de aplicativos de mensagens instantâneas + Verifique se [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), e [Signal](https://ooni.org/nettest/signal) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/world/) e no [OONI API](https://api.ooni.io/). + Testar o bloqueio de ferramentas de evasão à censura + Verifique se [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) ou [RiseupVPN](https://ooni.org/nettest/riseupvpn/) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/). + Executar novos testes experimentais + Execute os seguintes novos testes experimentais desenvolvidos pela equipe OONI:\n%1$s\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e [OONI API](https://api.ooni.io/). + Os testes a seguir serão executados apenas como parte de testes automatizados: + Testes Desabilitados + Gbit/s + Mbit/s + kbit/s + ms + N/A + Desconhecido + Resultado dos testes + Resultado dos testes + Testes + Redes + Uso de dados + Filtrar Testes + Todos os Testes + Websites + Caixas intermediárias + Desempenho + Mensagem Instantânea + Contornar a censura + Experimental + Nenhum teste foi executado ainda. Tente executar um! + %1$s bloqueado + %1$s bloqueados + %1$s testado + %1$s testado + Detectado + Não detectado + Falhou + %1$s bloqueado + %1$s bloqueados + %1$s acessível + %1$s acessíveis + %1$s bloqueado + %1$s bloqueados + %1$s disponível + %1$s disponíveis + Resultado incompleto + Erro + Erro na medição + Resultados não enviados + Data e hora + Rede + País + Uso de dados + Tempo Total de Execução + Wi-Fi + Dados Móveis + Sem internet + Falhou + Testado + Testado + Bloqueado + Bloqueados + Website + Websites + Acessível + Acessível + Vídeo + Qualidade + Carregar + Baixar + Ping + Detectado + Não detectada + Falhou + Testado + Testado + Bloqueado + Bloqueados + Acessível + Acessível + Aplicativo + Aplicativos + Testado + Testadas + Bloqueadas + Bloqueado + Funcionando + Funcionando + Ferramenta + Ferramentas + Tempo de Execução + Metodologia + Ver log + Dados + Copiar a URL do Explorer + Compartilhar a URL do Explorer + Copiar para área de transferência + Mostrar no OONI Explorer + Falhou + Você pode tentar executar este teste novamente + Tentar Novamente + Saiba como este teste funciona [aqui](%1$s). + Acessível + %1$s está acessível. + Provavelmente bloqueados + %1$s provavelmente está bloqueado por meio de %2$s.\n\nNota: Resultados positivos falsos podem ocorrer. Saiba mais [aqui](https://ooni.org/support/faq/#what-are-false-positives). + Driblagem de Censura + **Adulteração de DNS** + **Bloqueio baseado em TCP/IP** + **Bloqueio de HTTP (uma página de bloqueio pode ser exibida)** + **Bloqueio de HTTP (solicitações de HTTP falharam)** + Aplicativo Móvel + OK + Falhou + WhatsApp Web + OK + Falhou + Registro + OK + Falhou + Funcionando + Este teste foi conectado com sucesso às URLs do WhatsApp, serviço de registro e interface web (web.whatsapp.com). + Provavelmente bloqueado + WhatsApp parece estar bloqueado. + Aplicativo Móvel + OK + Falhou + Telegram Web + OK + Falhou + Funcionando + Este teste foi conectado com sucesso às URLs do Telegram e à interface web (web.telegram.org). + Provavelmente bloqueado + Telegram parece estar bloqueado. + Conexões TCP + OK + Falhou + Pesquisas de DNS + OK + Falhou + Funcionando + Este teste foi conectado com sucesso às URLs do Facebook e processado para endereços IP do Facebook. + Provavelmente bloqueado + Facebook Messenger parece estar bloqueado. + Provavelmente bloqueados + O sinal parece estar bloqueado. + Funcionando + Este teste foi conectado com sucesso aos endpoints do Signal. + Nenhuma caixa intermediária detectada + Nenhuma anomalia de rede foi detectada durante a comunicação com nossos servidores. + Adulteração de rede + O tráfego de rede foi manipulado ao entrar em contato com nossos servidores de controle.\n\nIsso significa que pode haver uma caixa intermediária na sua rede, que pode ser responsável pela censura e/ou vigilância. + Nenhuma caixa intermediária detectada + Nenhuma anomalia de rede foi detectada durante a comunicação com nossos servidores. + Adulteração de rede + O tráfego de rede foi manipulado ao entrar em contato com nossos servidores de controle.\n\nIsso significa que pode haver uma caixa intermediária na sua rede, que pode ser responsável pela censura e/ou vigilância. + Você enviou + Você Recebeu + Carregar + Download + Ping + Servidor + Taxa de retransmissão + Fora de Ordem + Ping Médio + Estimativa Máxima de Ping + MSS + Tempo excedido + Você pode transmitir até %1$s sem usar a memória temporária. + Taxa média de bits + Atraso de Playout + Provavelmente bloqueado + Funcionando + [Tor](https://www.torproject.org/) parece estar bloqueado. + Conseguimos reiniciar uma conexão Psiphon com êxito. Isso significa que [Psiphon](https://psiphon.ca/) deveria funcionar. + Hora de reiniciar + %1$s s + Provavelmente bloqueado + Funcionando + [Tor](https://www.torproject.org/) parece estar bloqueado. + Conseguimos nos conectar às pontes Tor padrão e/ou às autoridades do diretório Tor. Isso significa que [Tor](https://www.torproject.org/) deveria funcionar. + Pontes padrão + %1$s/%2$s OK + Autoridades de diretório + %1$s/%2$s OK + Nome + Endereço + Tipo + Conectar + Handshake + Provavelmente bloqueados + Funcionando + [RiseupVPN](https://riseup.net/vpn) parece estar bloqueado. + Conseguimos nos conectar com sucesso ao servidor de bootstrap do RiseupVPN e aos gateways VPN. Isso significa que [RiseupVPN](https://riseup.net/vpn) deveria funcionar. + Servidor de bootstrap + Conexões OpenVPN + Conexões em ponte + Bloqueado + %1$s bloqueados + %1$s bloqueados + OK + Este é um teste experimental. + Alimentar + Alimentar + OK + Cancelar + Não, não pergunte novamente + Apagar + Erro + Tentar novamente + Parece ótimo + Não, agradeço + Agora não + Execute mesmo assim + Desativar VPN + Sempre executar + Não foi possível executar o teste. Por favor, verifique sua conexão com a Internet. + Não foi possível baixar a lista de URL\'s. Por favor, tente novamente. + Aguarde a conclusão dos testes em execução antes de iniciar um novo teste. + Permissões de notificação são necessárias. Por favor, habilite-as nas Configurações do seu telefone e, em seguida, habilite-as em seu aplicativo OONI Probe. + Abrir Configurações + Esta tela é bloqueada enquanto um teste é executado. + Você precisa se conectar à Internet para baixar os dados brutos de medição. + Resultados não enviados + Alguns dos seus resultados de teste não foram enviados para servidores da OONI. Se você quiser contribuir com o banco de dados da OONI, carregue-os. + Carregar + Fazendo upload de %1$s ... + OONI Probe não pode ser executado automaticamente sem a otimização da bateria. Você quer tentar novamente? + Por favor, desative sua conexão VPN. + Se você executar OONI Probe com uma VPN habilitada, os resultados do teste podem parecer que vêm do país errado. Por favor, desabilite sua conexão VPN. + Algumas medições foram feitas sobre VPN. + Se você carregar as medições feitas com a VPN habilitada, os resultados do teste podem parecer vir do país errado. + Carregamento bem-sucedido + Exibir log de falhas + Receba atualizações sobre censura na internet + Interessado em executar os testes OONI Probe durante eventos emergentes de censura? Ative as notificações para receber uma mensagem quando soubermos de censura na Internet perto de você. + Para melhorar a precisão dos testes, necessitamos de permissões de GPS. OONI coletará somente a sua posição GPS aproximada. + Deseja apagar todos os resultados do teste? + Você deseja apagar este teste? + Por favor, habilite pelo menos um teste + Por favor, insira apenas dígitos neste campo. + Repetir o teste + Este teste falhou. Você deseja fazer um outro teste? + Você está prestes a testar novamente os sites %1$s. + Executar + Você tem certeza? + Suas URLs não serão salvas quando você sair desta tela. Tem certeza de que deseja sair desta tela? + Ativar carregamento manual? + Essa configuração permite que você carregue manualmente as medidas não publicadas. + Habilitar + Não, agradeço + Falha ao enviar + Falha ao carregar %1$s/%2$s medidas. O log de falhas foi compartilhado com as pessoas que desenvolvem o OONI. + Arquivo de log não encontrado + Nenhuma URL válida encontrada + JSON vazio + Você quer interromper este teste? + Isso interromperá o atual teste imediatamente. + Você gostaria de executar testes automaticamente? + Ao permitir testes automatizados, você contribuirá com as medições OONI regularmente. + Por favor, permita que o aplicativo seja executado em segundo plano. + Lembre-me depois + Copiado para a área de transferência + Não Carregado + Carregar + Alguns items não carregaram + Carregar Todos + Sites de Mídia de Notícias + Mensagem Instantânea + Caixas intermediárias + Desempenho + Contornar a censura + Experimental + Teste \"HTTP Invalid Request Line Test\" + Teste \"HTTP Header Field Manipulation\" + Teste de Conexão da Web + Teste de Velocidade NDT + Teste de Transmissão DASH + Teste do WhatsApp + Teste do Telegram + Teste do Facebook Messenger + Teste do Psiphon + Teste do Tor + Teste RiseupVPN + Teste do Signal + Configurações + A quantidade de tempo que você definiu para a duração do teste é muito baixa. + Sobre o News Media Scan + Este aplicativo é o produto da estreita cooperação entre a Deutsche Welle (DW) e a OONI. _About DW:_ Informação imparcial para mentes livres – essa é a promessa da marca DW. Como uma empresa de mídia independente, a emissora de notícias internacional da Alemanha informa as pessoas em todo o mundo. Com programação em 32 idiomas, a DW conecta pessoas em todo o mundo via TV, rádio, internet e nas redes sociais. Mais informações:[ Sobre a DW](https://corporate.dw.com/en/about-dw/s-30688) _About OONI:_ Fundado em 2012, o Open Observatory of Network Interference (OONI) é um projeto de software livre sem fins lucrativos que visa capacitar esforços descentralizados na documentação da censura na internet em todo o mundo. Graças à sua comunidade global, [mais de um bilhão de medições de rede](https://explorer.ooni.org/) foram publicadas de mais de 200 países, lançando luz sobre casos de censura na internet em todo o mundo. Faça parte do movimento de liberdade da internet fornecendo dados das redes que você está usando. + Saber mais + Blog + Relatórios + Política de dados da OONI + Notificaçőes + Ativado + Notificar após a conclusão do teste + Notícias + Teste automatizado + Executar testes automaticamente + Número de testes automatizados: %1$s. + Último teste automatizado: %1$s. + Somente com Wi-Fi + Somente durante o carregamento + Ao permitir testes automáticos, os testes OONI Probe serão executados automaticamente várias vezes por dia. Os resultados de seus testes serão publicados automaticamente no OONI Explorer: https://explorer.ooni.org/ \n\nImportante: Se você tiver uma VPN habilitada, a OONI Probe não executará testes automaticamente. Por favor, desligue sua VPN para testes automatizados da OONI Probe. Saiba mais: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + Compartilhando + Publicar os resultados automaticamente + Carregamento manual dos resultados + Incluir informações de rede + Incluir localização geográfica aproximada + Incluir meu endereço IP + Inclua o código do país + Essas informações (por exemplo, IT para Italy) são necessárias para identificar de quais países as medidas são coletadas. Tem certeza de que deseja desativar essa opção? + Ao publicar os resultados, você aumenta a transparência sobre a interferência da rede e dá suporte à comunidade da OONI.\n\nAs informações de rede (ou seja, o número do sistema autônomo) são necessárias para identificar os provedores de serviços de Internet. + Opções de teste + O que você configura através das opções de teste acima (por ex. desativar o teste WhatsApp) será aplicado aos testes executados manualmente, bem como aos testes executados automaticamente (quando os testes automatizados são ativados). + Teste de longa duração + Realizar testes de longa duração em primeiro plano? + Privacidade + Enviar relatórios de erros + Avançado + Modo escuro + Registros de depuração + Ver logs recentes + Configuração de idioma + Selecionar idioma + Sempre usar \"domain fronting\" + Proxy de back-end + Proxy + Nenhum + Psiphon + Proxy personalizado + URL de proxy personalizado + Protocolo de proxy personalizado + Conexão + Nome do hospedeiro + Porta + Credenciais (opcional) + Usuário + Senha + Usar Psiphon em vez de proxy personalizado + Não está conseguindo usar o OONI Probe? Tente habilitar [Psiphon](https://psiphon.ca/) para contornar o bloqueio potencial da Sonda OONI. Como alternativa, você pode usar um proxy personalizado. + Limitar a duração do teste + Duração do teste + Categorias de sites para testar + %1$s categorias habilitadas + Editar + Desmarcar todos + Selecionar todos + Salvar + As modificações não foram salvas + Você fez algumas modificações nas categorias habilitadas. Você gostaria de salvá-las? + Salvar + Descartar + Escolha sites para testar + URL + Nenhuma URL inserida + Rodar + Adicionar website + Carregar de modelo + Número de sites testados (0 significa todos) + Teste do WhatsApp + Teste do Telegram + Teste do Facebook Messenger + Testar o Signal + Executar o teste \"HTTP Invalid Request Line\" + Executar o teste \"HTTP Header Field Manipulation\" + Execute o teste de velocidade NDT + Seleção automática do servidor NDT + Endereço do servidor NDT + Porta do servidor NDT + Executar o Teste de Transmissão DASH + Seleção automática do servidor DASH + Servidor DASH + Porta do servidor DASH + Teste Psiphon + Teste Tor + Testar o RiseupVPN + Avise quando a VPN estiver em uso + Enviar e-mail para suporte + Descreva o problema que você está enfrentando: + Por favor, envie um e-mail para bugs@openobservatory.org com informações sobre o aplicativo e a versão do iOS. Toque em \"Copiar para área de transferência,\" abaixo, para copiar nosso endereço de e-mail. + O idioma atual da aplicação é %1$s + Idioma + Uso de armazenamento + Armazenamento usado + Apagar + Limpar + Você está prestes a excluir todas as medições OONI do seu dispositivo. Se carregados, eles ainda estarão disponíveis em [OONI Explorer](https://explorer.ooni.org) + Execução concluída + Parar o teste + Tentar espelho + Carregando... + Um erro inesperado ocorreu. Por favor, recarregue esta página. + Você está prestes a executar um teste OONI Probe. + %1$s URL\'s + Nome de teste + Detalhes do teste + Executat + Desatualizado + Você precisa de uma versão mais recente do OONI Probe para executar este teste. + Atualizar + Fechar + Parâmetro inválido + O link OONI Run está malformado ou seu aplicativo está desatualizado. + Você testará uma amostra aleatória de sites. + Por favor, aguarde a execução do teste terminar antes de clicar em um link OONI Run. + Leia mais > + Ler menos > + Drogas e Álcool + Religião + Pornografia + Traje Provocante + Crítica Política + Questões de direitos humanos + Meio Ambiente + Terrorismo e Militantes + Discurso de ódio + Meios de comunicação + Educação sexual + Saúde pública + Jogos de azar + Ferramentas para driblar censura + Namoro virtual + Rede social + LGBTQ+ + Compartilhamento de arquivos + Ferramentas de Hacking + Ferramentas de comunicação + Compartilhamento de mídia + Hospedagem e Blog + Ferramentas de busca + Jogos + Cultura + Economia + Governo + Comércio eletrônico + Controle de conteúdo + Organizações Intergovernamentais. + Conteúdo diversos + Uso e venda de drogas e álcool + Questões religiosas, tanto de apoio como críticas + Pornografia leve e pesada + Trajes provocativos e retratos de mulheres usando poucas peças de roupa + Pontos de vista políticos críticos + Questões de direitos humanos + Discussões sobre questões ambientais + Terrorismo, movimentos violentos militantes ou separatistas + Desprezo de grupos específicos com base em raça, sexo, sexualidade ou outras características + Principais sites de notícias, agências de notícias regionais e mídia independente + Questões de saúde sexual, incluindo contracepção, DSTs, prevenção de estupro e aborto + Questões de saúde pública, tais como COVID-19, HIV/AIDS, Ebola + Jogos e apostas online + Anonimização, driblagem de censura e criptografia + Sites de namoro online + Ferramentas e plataformas de redes sociais online + Comunidades LGBTQ+ discutindo questões relacionadas (excluindo pornografia) + Compartilhamento de arquivos, incluindo armazenamento de arquivos em servidores em nuvens, torrents e P2P + Ferramentas de segurança da informática e notícias + Ferramentas de comunicação individuais e em grupo, incluindo VoIP, mensagens e webmail + Vídeo, áudio e compartilhamento de fotos + Hospedagem na web, blogs e outras publicações online + Ferramentas de busca e portais + Jogos online e plataformas de jogos (excluindo sites de jogos de azar) + Entretenimento, incluindo história, literatura, música, cinema, sátira e humor + Desenvolvimento econômico geral e pobreza + Sites administrados pelo governo, inclusive militares + Serviços e produtos comerciais + Conteúdo benigno ou inócuo usado para controle + Organizações intergovernamentais, incluindo as Nações Unidas + Sites que ainda não foram categorizados + Não pergunte novamente + Ativar notificações de progresso do teste + Gostaria de ativar as notificações sobre o progresso do teste do OONI Probe e exibir os testes em execução na gaveta de notificações? + Carregamento de link + Erro + Instalação do link cancelada + Criado por %s em %s\n\n%s + Link de desinstalação + Revisar atualizações + Revisões anteriores + Você poderá instalar este link novamente apenas a partir do link original enviado pelo criador. + Ver mais + Testar sites automaticamente + Erro + Testes OONI + Links de execução OONI + Execução concluída. Toque para ver os resultados. + EXPIRADO + ATUALIZADO + Instale o novo link + Autor: + Testar configurações + Instalar atualizações automaticamente + Executar testes automaticamente + Link instalado + Link de instalação + Instalação do link cancelada + ATUALIZAÇÕES + Teste %s URLs + URLs de teste + Atualização de link + Link(s) atualizado(s) + Atualização de link (%1$s de %2$s) + ATUALIZAR E CONCLUIR (%1$s de %2$s) + ATUALIZAÇÃO (%1$s de %2$s) + Atualizar + Executar testes + Executar testes + Selecione o teste para executar + Executar %s teste(s) + Selecione os testes a serem executados + Selecione todos os testes + Desmarcar todos os testes + Carregamento de link + Carregamento de atualizações de link + Atualizações de link prontas + Revisar + %s Entradas + Voltar + refresh + Colapso + Expandir + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Janeiro + Fevereiro + Março + Abril + Maio + Junho + Julho + Agosto + Setembro + Outubro + Novembro + Dezembro + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Falha + OK + Anomalia + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testando + Manual Run + Auto Run + VPN + diff --git a/news-media-scan/ro/description.xlf b/news-media-scan/ro/description.xlf new file mode 100644 index 0000000..03c8ad3 --- /dev/null +++ b/news-media-scan/ro/description.xlf @@ -0,0 +1,48 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + News Media Scan + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Descoperă siteurile de informații blocate în regiunea ta. + This is limited by Google to 80 characters + + + News Media Scan + News Media Scan + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Descoperă siteurile de informații blocate în regiunea ta. + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + Colectați dovezi de cenzură pe internet. Măsurați viteza și performanța rețelei dvs. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Descoperă dacă poți accesa siteurile de știri de care ai nevoie sau dacă sunt blocate – News Media Scan de la DW îți oferă transparența de care ai nevoie. Vei contribui astfel semnificativ și la comunitatea globală “Internet Freedom”, ajutând la identificarea cenzurii în lume. + +Acest app este produsul unei cooperări strânse între Deutsche Welle (DW) și OONI. + +Despre DW: Informații imparțiale pentru minți libere – aceasta este promisiunea DW. Ca o companie media independentă, postul public international al Germaniei informează oamenii din lumea întreagă. Cu programe în 32 de limbi, DW conectează oamenii din toată lumea prin TV, radio, Internet și social media. + +Despre OONI: Înființat în 2012, Open Observatory of Network Interference (OONI) este un proiect free software non-profit project care are obiectivul de a ajuta eforturile locale de documentare a cenzurii în lume. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + rețea,test de viteză,măsurare,net,WiFi,de rețea,scanare,lățime de bandă,banc,dns,mobil,ooni,cercetare,instrument + + +
+
\ No newline at end of file diff --git a/news-media-scan/ro/strings.json b/news-media-scan/ro/strings.json new file mode 100644 index 0000000..1d1dc53 --- /dev/null +++ b/news-media-scan/ro/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "Are news media sites blocked?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers.", + "Onboarding.ThingsToKnow.Bullet.1": "OONI will openly publish the measurement data you send, along with your network information.", + "Onboarding.ThingsToKnow.Bullet.2": "Anyone monitoring your Internet connection will be able to see you are running News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "You will be testing news websites that might be banned in the country where you currently find yourself.", + "Onboarding.PopQuiz.1.Question": "If someone is monitoring my internet activity, they will see that I am running News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running.", + "Onboarding.PopQuiz.2.Question": "Every time I run News Media Scan, the network data I collect will automatically get published.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings).", + "Onboarding.AutomatedTesting.Paragraph": "To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon\u2019t worry, we\u2019ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time.", + "Onboarding.Crash.Paragraph": "To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team?", + "Dashboard.Websites.Card.Description": "Checks for blocking of news media websites", + "Test.Websites.Fullname": "News Media Websites", + "Settings.About.Label": "About News Media Scan", + "Settings.About.Content.Paragraph": "Acest app este produsul unei cooperări strânse între i Deutsche Welle (DW) și OONI.\n\nDespre DW: Informații imparțiale pentru minți libere – aceasta este promisiunea DW. Ca o companie media independentă, postul public international al Germaniei informează oamenii din lumea întreagă. Cu programe în 32 de limbi, DW conectează oamenii din toată lumea prin TV, radio, Internet și social media.\n\nInformații suplimentare: [Despre DW](https://corporate.dw.com/en/about-dw/s-30688)\n\nDespre OONI: Înființat în 2012, Open Observatory of Network Interference [(OONI)](https://explorer.ooni.org/) este un proiect free software non-profit project care are obiectivul de a ajuta eforturile locale de documentare a cenzurii în lume. Mulțumită comunității sale globale, peste un miliard de 200 de țări, făcând lumină în cazurile de cenzurare a internetului la nivel mondial.\n\nFiți parte din mișcarea internetului liber furnizând date despre rețelele pe care le folosiți.", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/ro/strings.xml b/news-media-scan/ro/strings.xml new file mode 100644 index 0000000..014bc09 --- /dev/null +++ b/news-media-scan/ro/strings.xml @@ -0,0 +1,639 @@ + + + News Media Scan + Are news media sites blocked? + Run News Media Scan to find out! News Media Scan is the #1 app to give you transparency about the news landscape in whatever country you currently find yourself. Additionally, by using the app, you are making an important contribution to the measurement of censorship around the world.\n\nThe list you see in the app is a public, community-curated list on GitHub and not curated by DW. It represents an objective range of international and national news media providers. + Am înțeles + Atenție! + OONI will openly publish the measurement data you send, along with your network information. + Anyone monitoring your Internet connection will be able to see you are running News Media Scan. + You will be testing news websites that might be banned in the country where you currently find yourself. + Înțeleg + Află mai mult + Test rapid + Adevărat + Fals + Înapoi + Continuă + Întrebarea 1/2 + If someone is monitoring my internet activity, they will see that I am running News Media Scan. + Avertizare + News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running. + Întrebarea 2/2 + Every time I run News Media Scan, the network data I collect will automatically get published. + Avertizare + To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings). + Automated testing + To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon’t worry, we’ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time. + Crash Reporting + To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team? + Da + Nu + Setări implicite + Colectăm și publicăm: + Codul țării (de exemplu IT pentru Italia) + Informații despre rețea (inclusiv numărul de sistem autonom - ASN) + Ora și data testării + We do our best not to publish your IP address or any other potentially personally identifiable information.\n\nLearn more through [OONI\'s Data Policy](https://ooni.org/about/data-policy/). + By tapping \"OK\", you will share crash reports to help us improve OONI Probe. + Să începe + Modific valori implicite + Tablou bord + Executare + N/A + Executare + Ultimul test: + Estimare: + Alegeți site-urile web + Se execută: + Timp estimat rămas: + %1$s secunde + Pregătirea testului + Calcularea timpului de acțiune estimat + Arată jurnalul + Închidere jurnal + Stopping test… + Finishing the currently pending tests, please wait… + Proxy in use + Atingeți cardul pentru detalii + ~%1$ss + Checks for blocking of news media websites + Check whether websites are blocked using OONI\'s [Web Connectivity test](https://ooni.org/nettest/web-connectivity/).\n\nEvery time you tap Run, you test different websites from the Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists.\n\nTo test the sites of your choice, tap the Choose websites button or select categories of sites via the settings of this card. \n\nThis test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). + Check whether websites are blocked using OONI\'s [Web Connectivity test](https://ooni.org/nettest/web-connectivity/).\n\nYou will test the websites included in the Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists.\n\nThis test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). + Testarea vitezei și performanței rețelei + Measure the speed and performance of your network using the [NDT](https://ooni.org/nettest/ndt/) test.\n\nMeasure video streaming performance using the [DASH](https://ooni.org/nettest/dash/) test.\n\nThese tests consume data depending on your network speed.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/).\n\nDisclaimer: These tests rely on third party servers. We therefore cannot guarantee that your IP address will not be collected. + Prin rularea testelor din acest card, veți:\n\n- măsura viteza și performanța rețelei (testul [NDT](https://ooni.org/nettest/ndt/))\n- măsura performanța pentru streaming video (testul [DASH](https://ooni.org/nettest/dash/))\n- verifica prezența [tehnologiilor middlebox](https://ooni.org/support/glossary/#middlebox) din rețeaua dvs. (testele [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) și [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/))\n\nAceste teste consumă date în funcție de viteza rețelei.\n\nRezultatele testului dvs. vor fi publicate pe [OONI Explorer](https://explorer.ooni.org/) și [OONI API](https://api.ooni.io/).\n\n**Disclaimer:** Testele [NDT](https://ooni.org/nettest/ndt/) și [DASH](https://ooni.org/nettest/dash/) sunt efectuate pe servere terțe furnizate de [Measurement Lab (M-Lab)](https://www.measurementlab.net/). Dacă efectuați aceste teste, M-Lab va colecta și publica adresa dvs. IP (în scopuri de cercetare), indiferent de setările dvs. OONI Sonda. Aflați mai multe despre guvernanța datelor M-Lab prin intermediul [declarației de confidențialitate](https://www.measurementlab.net/privacy/). + Detectează middleboxes din rețeaua dvs. + Internet Service Providers often use network appliances (middleboxes) for various networking purposes (such as caching). Sometimes these middleboxes are used to implement internet censorship and/or surveillance.\n\nFind middleboxes in your network using OONI\'s [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). + Testarea blocării aplicațiilor de mesagerie instantanee + Check whether [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), and [Signal](https://ooni.org/nettest/signal) are blocked.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). + Testarea blocării instrumentelor de eludare a cenzurii + Check whether [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) or [RiseupVPN](https://ooni.org/nettest/riseupvpn/) are blocked.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). + Run new experimental tests + Run the following new experimental tests developed by the OONI team:\n%1$s\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). + The following tests will only be run as part of automated testing: + Disabled Tests + Gbit/s + Mbit/s + kbit/s + ms + N/A + Necunoscut + Rezultatele testului + Rezultatele testului + Teste + Rețele + Utilizarea de date + Teste de filtrare + Toate testele + Site-uri + Middleboxes + Performanță + Mesagerie instant + Eludarea + Experimental + Nu s-au efectuat încă teste. Încercați să rulați unul! + %1$s blocat + %1$s blocat + %1$s testat + %1$s testat + Detectat + Nedetectat + Acţiunea a eşuat + %1$s blocat + %1$s blocat + %1$s accesibil + %1$s accesibil + %1$s blocat + %1$s blocat + %1$s disponibil + %1$s disponibil + Rezultat incomplet + Eroare + Eroare la măsurare + Rezultatele neîncărcate + Data și ora + Reţea + Ţară + Utilizarea de date + Timp total de execuție + WiFi + Date mobile + Fără Internet + Acţiunea a eşuat + Testat + Testat + Blocat + Blocat + Site web + Site-uri + Accesibil + Accesibil + Video + Calitate + Încarcă + Descărcare + Ping + Detectat + Nedetectat + Acţiunea a eşuat + Testat + Testat + Blocat + Blocat + Accesibil + Accesibil + Aplicație + Aplicații + Testat + Testat + Blocat + Blocat + Funcționează + Funcționează + Instrumen + Unelte + Runtime + Metodologi + Vezi jurnalul + Date + Copiați URL-ul Explorer + Share Explorer URL + Copiază în clipboard + Afișează în OONI Explorer + Acţiunea a eşuat + Puteți încerca să rulați din nou acest test + Încearcă din nou + Learn how this test works [here](%1$s). + Accesibil + %1$s este accesibil. + Probabil blocat + %1$s este probabil blocat prin intermediul %2$s.\n\nNotă: Pot apărea falsuri pozitive. Aflați mai multe [aici](https://ooni.org/support/faq/#what-are-false-positives). + Circumvenția de cenzură + **Modificări DNS** + **Blocarea bazată pe TCP / IP** + **Blocarea HTTP (s-ar putea să fie servit un blocaj)** + **Blocarea HTTP (solicitările HTTP au eșuat)** + Aplicație mobilă + &OK + Acţiunea a eşuat + WhatsApp Web + &OK + Acţiunea a eşuat + Înregistrare + &OK + Acţiunea a eşuat + Funcționează + Acest test s-a conectat cu succes la punctele finale ale serviciului WhatsApp, serviciul de înregistrare și interfața web (web.whatsapp.com). + Probabil blocat + WhatsApp pare blocat. + Aplicație mobilă + &OK + Acţiunea a eşuat + Telegram Web + &OK + Acţiunea a eşuat + Funcționează + Acest test s-a conectat cu succes la obiectivele și interfața web a Telegram (web.telegram.org). + Probabil blocat + Telegram pare blocat. + Conexiuni TCP + &OK + Acţiunea a eşuat + Cercetări DNS + &OK + Acţiunea a eşuat + Funcționează + Acest test s-a conectat cu succes la obiectivele Facebook și a rezolvat adresele IP Facebook. + Probabil blocat + Facebook Messenger pare blocat. + Probabil blocat + Signal appears to be blocked. + Funcționează + This test successfully connected to Signal\'s endpoints. + Nu au fost detectate middleboxes + Nu a fost detectată nicio anomalie de rețea la comunicarea cu serverele noastre. + Modificări ale rețelei + Traficul de rețea a fost manipulat la contactarea serverelor noastre de control.\n\nAceasta înseamnă că poate exista un middlebox în rețeaua dvs., care ar putea fi responsabilă pentru cenzură și / sau supraveghere. + Nu au fost detectate middleboxes + Nu a fost detectată nicio anomalie de rețea la comunicarea cu serverele noastre. + Modificări ale rețelei + Traficul de rețea a fost manipulat la contactarea serverelor noastre de control.\n\nAceasta înseamnă că poate exista un middlebox în rețeaua dvs., care ar putea fi responsabilă pentru cenzură și / sau supraveghere. + Ați trimis + Ați primit + Încarcă + Descărcare + Ping + _Server + Rata de retransmisie + Scos din uz + Ping mediu + Ping Max estimat + MSS + Expirări + Puteți transmite fluxuri la %1$s fără buffering. + Rată de biți medie + Întârziere la redare + Probabil blocat + Funcționează + [Psiphon](https://psiphon.ca/) pare blocat. + Am reușit să lansăm cu succes o conexiune Psiphon. Aceasta înseamnă că[Psiphon](https://psiphon.ca/) ar trebui să funcționeze. + Ora de bootstrap + %1$s s + Probabil blocat + Funcționează + [Tor](https://www.torproject.org/) pare blocat. + Ne-am putut conecta cu succes la podurile Tor implicite și / sau la directorul Tor. Aceasta înseamnă că [Tor](https://www.torproject.org/) ar trebui să funcționeze. + Punți implicite + %1$s/%2$s OK + Autorități director + %1$s/%2$s OK + Nume + Adresa + Tipul + Conectare + Handshake + Probabil blocat + Funcționează + [RiseupVPN](https://riseup.net/vpn) appears to be blocked. + We were able to successfully connect to RiseupVPN\'s bootstrap server and VPN gateways. This means that [RiseupVPN](https://riseup.net/vpn) should work. + Bootstrap server + OpenVPN connections + Bridged connections + Blocat + %1$s blocat + %1$s blocat + OK + This is an experimental test. + Alimentare + Alimentare + &OK + Anulare + No, don\'t ask again + Ștergere + Eroare + Încearcă din nou + Sounds great + Nu, mulțumesc + Not now + Run anyways + Disable VPN + Always Run + Imposibil de efectuat testul. Verificați conectivitatea la internet. + Imposibil de descărcat lista URL. Vă rugăm să încercați din nou. + Please wait for the current running tests to finish, before starting a new test. + Permisele de notificare sunt necesare. Vă rugăm să le activați în Setările telefonului dvs. și apoi să le activați în aplicația dvs. OONI Sonda. + Accesați Setările + Acest ecran este blocat în timpul rulării unui test. + Trebuie să fiți conectat la internet pentru a descărca datele de măsurare brute. + Rezultatele neîncărcate + Unele dintre rezultatele testului dvs. nu au fost încărcate pe serverele OONI. Dacă doriți să contribuiți la setul de date OONI, vă rugăm să le încărcați. + Încarcă + Se încarcă %1$s ... + OONI Probe cannot run automatically without battery optimization. Do you want to try again? + Please disable your VPN connection. + If you run OONI Probe with a VPN enabled, the test results may appear to come from the wrong country. Please disable your VPN connection. + Some measurements were taken over VPN. + If you upload measurements taken when VPN enabled, the test results may appear to come from the wrong country. + Încărcare realizată cu succes + Afișare jurnal de erori + Get updates on internet censorship + Interested in running OONI Probe tests during emergent censorship events? Enable notifications to receive a message when we hear of internet censorship near you. + Pentru a îmbunătăți acuratețea testelor, avem nevoie de permisiuni GPS. OONI va colecta doar o aproximare a poziției GPS. + Doriți să ștergeți toate rezultatele testelor? + Doriți să ștergeți acest test? + Vă rugăm să activați cel puțin un test + Vă rugăm să introduceți doar cifre în acest câmp. + Reexecutați testul + Acest test a eșuat. Reexecutați testul? + Sunteți pe cale să testați site-urile %1$s. + Executare + Ești sigur(ă)? + URL-urile dvs. nu vor fi salvate când părăsiți acest ecran. Sigur doriți să părăsiți acest ecran? + Activați încărcarea manuală? + Această setare vă permite să reîncărcați manual măsurători nepublicate. + Activează: + Nu, mulțumesc + Incărcare eșuată + Nu am reușit să încărcăm măsurările %1$s / %2$s. Jurnalul de erori a fost partajat cu dezvoltatorii OONI. + Fișierul jurnal nu a fost găsit + Nu s-au găsit adrese URL valide + JSON gol + Do you want to interrupt this test? + This will interrupt the current test from this moment. + Would you like to run tests automatically? + By enabling automated testing, you will contribute OONI measurements on a regular basis. + Please allow the app to run in the background. + Remind me later + Copiat în clipboard + Nu s-a încărcat + Încarcă + Unele nu s-au încărcat + Încărcarei toate + News Media Websites + Mesagerie instant + Middleboxes + Performanță + Eludarea + Experimental + Test HTTP Invalid Request Line + Test HTTP Header Field Manipulation + Test de conectivitate web + Test de viteză NDT + Test DASH Streaming + Test WhatsApp + Test Telegram + Test Facebook Messenger + Test Psiphon + Test Tor + RiseupVPN Test + Signal Test + Setări + Perioada de timp setată pentru durata testului este prea mică. + About News Media Scan + Acest app este produsul unei cooperări strânse între i Deutsche Welle (DW) și OONI.\n\nDespre DW: Informații imparțiale pentru minți libere – aceasta este promisiunea DW. Ca o companie media independentă, postul public international al Germaniei informează oamenii din lumea întreagă. Cu programe în 32 de limbi, DW conectează oamenii din toată lumea prin TV, radio, Internet și social media.\n\nInformații suplimentare: [Despre DW](https://corporate.dw.com/en/about-dw/s-30688)\n\nDespre OONI: Înființat în 2012, Open Observatory of Network Interference [(OONI)](https://explorer.ooni.org/) este un proiect free software non-profit project care are obiectivul de a ajuta eforturile locale de documentare a cenzurii în lume. Mulțumită comunității sale globale, peste un miliard de 200 de țări, făcând lumină în cazurile de cenzurare a internetului la nivel mondial.\n\nFiți parte din mișcarea internetului liber furnizând date despre rețelele pe care le folosiți. + Află mai mult + Blog + Sesizări + Politica de date OONI + Notificări + Activat + Informare la finalizarea testului + Fluxuri de știri + Automated testing + Run tests automatically + Number of automated tests: %1$s. + Last automated test: %1$s. + Only on WiFi + Only while charging + By enabling automatic testing, OONI Probe tests will run automatically multiple times per day. Your test results will automatically get published on OONI Explorer: https://explorer.ooni.org/ \n\nImportant: If you have a VPN enabled, OONI Probe will not run tests automatically. Please turn off your VPN for automated OONI Probe testing. Learn more: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + Partajare + Publicare automată a rezultatelor + Încărcarea manuală a rezultatelor + Includereți informații despre rețea + Includere geo-locație aproximativă + Includerea adresei mele IP + Includerea codului țării + Aceste informații (de exemplu, IT pentru Italia) sunt necesare pentru a identifica din ce țară sunt colectate măsurătorile. Sigur doriți să dezactivați această opțiune? + Prin publicarea rezultatelor, sporiți transparența interferenței rețelei și sprijiniți comunitatea OONI. \n\nInformațiile de rețea (adică numărul de sistem autonom) sunt necesare pentru identificarea furnizorilor de servicii Internet. + Opțiuni de testare + What you configure through the above test settings (e.g. disabling the WhatsApp test) will apply to tests run manually, as well as to tests run automatically (when automated testing is enabled). + Long running test + Run long running tests in foreground? + Confidențialitate + Trimitere rapoarte de avarie + Avansat + Dark Mode + Jurnale de depanare + See recent logs + Language Setting + Selectați limba + Utilizați întotdeauna fronting de domeniu + Backend proxy + Proxy + Nimic + Psiphon + Custom Proxy + Custom Proxy URL + Custom proxy protocol + Conexiune + Nume server + Port + Credentials (optional) + Utilizator + Parola + Use Psiphon over custom proxy + Are you unable to use OONI Probe? Try enabling [Psiphon](https://psiphon.ca/) to circumvent potential OONI Probe blocking. Alternatively, you can use a custom proxy. + Limitarea duratei testului + Durata testului + Categorii de site-uri web de testat + %1$s categorii activate + Editare + Deselect All + Selectare totală + Salvare + Unsaved Changes + You made some changes to the enabled categories. Would you like to save them? + Salvare + Renunţă + Alegeți site-uri web de testat + URL + Nu au fost introduse URL-uri + Executare + Adăugare website + Load from template + Numărul de site-uri web testate (0 înseamnă toate) + Testa WhatsApp + Testare Telegram + Testare Facebook Messenger + Test Signal + Rulați testul HTTP Invalid Request Line + Rulați testul HTTP Header Field Manipulation + Executarea testului de viteză NDT + Selectarea automată a serverului NDT + Adresa serverului NDT + Portul serverului NDT + Rulați testul DASH Streaming + Selectarea automată a serverului DASH + Server DASH + Portul serverului DASH + Testare Psiphon + Testare Tor + Test RiseupVPN + Warn when VPN is in use + Trimitere e-mail pentru asistență + Please describe the problem you are experiencing: + Vă rugăm să trimiteți un e-mail la bugs@openobservatory.org cu informații despre aplicație și versiunea iOS. Atingeți „Copiere în clipboard” de mai jos pentru a copia adresa noastră de e-mail. + Limba actuală a aplicației este %1$s + Limbă + Storage usage + Storage used + Ștergere + Clear + You are about to delete all OONI measurements from your device. If uploaded, they will still be available on [OONI Explorer](https://explorer.ooni.org) + Execuție finaliza + Stop test + Încercați mirror + Se încarcă... + A apărut o eroare neașteptată. Vă rugăm să reîncărcați această pagină. + Sunteți pe cale să rulați un test OONI Sonda. + %1$s URL-uri + Nume test + Detalii test + Executare + Expirat + Pentru a rula acest test, aveți nevoie de o versiune mai nouă a OONI Probe. + Actualizare + În&chidere + Parametru invalid + Link-ul OONI Run este format defectuos sau aplicația nu este actualizată. + Veți testa un eșantion aleatoriu de site-uri web. + Așteptați ca testul să termine execuția înainte de a alege un link OONI Run. + Read more > + Read less > + Droguri și alcool + Religie + Pornografie + Ținută provocatoare + Critică politică + Probleme privind drepturile omului + Mediu înconjurător + Terorism și militanți + Discursul despre ură + Știri media + Educație sexuală + Sănătate Publică + Jocuri de noroc + Instrumente de eluda + Întâlnire online + Rețele sociale + LGBTQ+ + Distribuire fișiere + Instrumente de hacking + Instrumente de comunicare + Partajare media + Găzduire și Blogging + Motoare de căutare + Jocuri + Cultură + Economie + Guvern + E-commerce + Controlați conținutul + Organizații interguvernamentale. + Conținut divers + Utilizarea și vânzarea de droguri și alcool + Probleme religioase, atât de susținere, cât și critice + Pornografie hard-core și soft-core + Ținută provocatoare și portretizarea femeilor care poartă îmbrăcăminte minimă + Puncte de vedere politice critice + Probleme legate de drepturile omului + Discuții pe teme de mediu + Terorism, mișcări militare violente sau separatiste + Dispersarea unor grupuri particulare bazate pe rasă, sex, sexualitate sau alte caracteristici + Principalele site-uri de știri, puncte de știri regionale și mass-media independente + Probleme de sănătate sexuală, inclusiv contracepție, BTS, prevenirea violului și avort + Public health issues, such as COVID-19, HIV/AIDS, Ebola + Jocuri de noroc și pariuri online + Anonimizare, eludarea cenzurii și criptare + Site-uri de întâlniri online + Instrumente și platforme de rețea socială online + Comunități LGBTQ + care discută probleme conexe (exclusiv pornografia) + Partajare de fișiere, inclusiv stocare de fișiere bazate pe cloud, torrente și P2P + Instrumente și știri pentru securitatea computerului + Instrumente de comunicare individuale și de grup, inclusiv VoIP, mesagerie și webmail + Partajare video, audio și foto + Găzduire web, blogging și alte publicații online + Motoare de căutare și portaluri + Jocuri online și platforme de jocuri (exclusiv site-urile de jocuri de noroc) + Divertisment, inclusiv istorie, literatură, muzică, film, satiră și umor + Dezvoltare economică generală și sărăcie + Site-uri guvernamentale, inclusiv militare + Servicii și produse comerciale + Conținut benign sau inofensiv utilizat pentru control + Organizații interguvernamentale, inclusiv Națiunile Unite + Site-uri care nu au fost încă clasificate + Don’t ask again + Enable test progress notifications + Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? + Link Loading + Eroare + Link installation cancelled + Created by %s on %s\n\n%s + Uninstall Link + Review Updates + Previous revisions + You will be able to install this link again only from the original link sent by the creator. + See More + Test websites automatically + Eroare + OONI Tests + OONI Run Links + Run finished. Tap to view results. + EXPIRED + UPDATED + Install New Link + Autor: + Setările pentru testări + Install updates automatically + Run tests automatically + Link installed + Install Link + Link installation cancelled + UPDATES + Test %s URLs + Test URLs + Link Update + Link(s) updated + Link Update (%1$s of %2$s) + UPDATE AND FINISH (%1$s of %2$s) + UPDATE (%1$s of %2$s) + Actualizare + Run tests + Run Tests + Please select test to run + Run %s test(s) + Select the tests to run + Select all tests + Deselect all tests + Link Loading + Link updates loading + Link updates ready + Revizuire + %s inputs + Înapoi + refresh + Restrânge + Extinde + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Ianuarie + Februarie + Martie + Aprilie + Mai + Iunie + Iulie + August + Septembrie + Octombrie + Noiembrie + Decembrie + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Acţiunea a eşuat + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Jurnale + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testare + Manual Run + Auto Run + VPN + diff --git a/news-media-scan/ru/description.xlf b/news-media-scan/ru/description.xlf new file mode 100644 index 0000000..c3d4441 --- /dev/null +++ b/news-media-scan/ru/description.xlf @@ -0,0 +1,42 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + News Media Scan + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Найди заблокированные новостные сайты в cвоем регионе. + This is limited by Google to 80 characters + + + News Media Scan + News Media Scan + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Найди заблокированные новостные сайты в cвоем регионе. + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + Собирайте доказательства интернет-цензуры. Измеряйте скорость и производительность вашей сети. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Выясни, доступны ли тебе нужные новостные сайты или они заблокированы – приложение News Media Scan от DW позволит составить четкую картину происходящего. Помогая выявлять акты цензуры по всему миру, ты внесешь ценный вклад в работу глобального сообщества, выступающего за свободу интернета. \n Это приложение – результат тесного сотрудничества немецкой медиакомпании Deutsche Welle (DW) и проекта Open Observatory of Network Interference (OONI), помогающего отслеживать интернет-цензуру во всем мире. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + сеть, проверка скорости, измерения, интернет, wifi, сетевое соединение, сканирование, полоса пропускания, dns, мобильные устройства, ooni, исследования, приложение, инструмент + + +
+
\ No newline at end of file diff --git a/news-media-scan/ru/strings.json b/news-media-scan/ru/strings.json new file mode 100644 index 0000000..8730794 --- /dev/null +++ b/news-media-scan/ru/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "Новостной сайт заблокирован?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Запусти News Media Scan и узнай! News Media Scan – приложение номер один, которое дает тебе четкое представление о новостном ландшафте, в какой бы стране ты ни находился. Кроме того, используя это приложение, ты вносишь вклад в измерение уровня цензуры по всему миру.\n\nСписок, который ты увидишь в News Media Scan, находится в общественном доступе. Он составляется не DW, а пользователями сервиса для разработки IT-проектов GitHub и представляет собой объективную подборку международных и национальных новостных медиакомпаний.", + "Onboarding.ThingsToKnow.Bullet.1": "OONI опубликует полученные от тебя результаты измерений уровня цензуры, включая информацию о твоей сети.", + "Onboarding.ThingsToKnow.Bullet.2": "Любой, кто мониторит твое интернет-соединение, сможет увидеть, что ты пользуешься News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "Ты будешь тестировать новостные сайты, которые могут быть заблокированы в той стране, где ты в данный момент находишься.", + "Onboarding.PopQuiz.1.Question": "Если кто-то следит за моей активностью в интернете, они увидят, что я использую News Media Scan. ", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan – это не инструмент для обеспечения приватности. Любой человек, следящий за вашей активностью в интернете, увидит что вы используете OONI. ", + "Onboarding.PopQuiz.2.Question": "Каждый раз, когда я использую News Media Scan, информация о сети, которую я собираю, автоматически публикуется в открытый доступ.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "Чтобы увеличить прозрачность интернет-цензуры, информация о сети всех пользователей News Media Scan автоматически публикуется в открытый доступ (если пользователи не отключили публикацию в настройках).", + "Onboarding.AutomatedTesting.Paragraph": "Для того, чтобы ежедневно измерять уровень цензуры в интернете, активируй функцию автоматического сканирования. Это позволит приложению News Media Scan проводить мониторинг через определенные промежутки времени.\n\nНе беспокойся, мы позаботились об экономичном использовании аккумулятора.\n\nФункцию автоматического сканирования можно отключить в настройках в любое время.", + "Onboarding.Crash.Paragraph": "Чтобы улучшить работу News Media Scan, мы хотели бы собирать анонимные отчеты об ошибках приложения, когда оно ломается. \n\nХотели бы вы делиться отчетами об ошибках с командой разработчиков OONI? ", + "Dashboard.Websites.Card.Description": "Проверяет заблокированы ли новостные и медиа сайты ", + "Test.Websites.Fullname": "Новостные и медиа сайты", + "Settings.About.Label": "О News Media Scan ", + "Settings.About.Content.Paragraph": "Это приложение – результат тесного сотрудничества Deutsche Welle (DW) и OONI. \n\nО DW: непредвзятая информация для свободных умов – таково обещание бренда DW. Будучи независимым СМИ, немецкая международная медиакомпания DW предоставляет доступ к информации людям по всему миру. Контент от DW для телевидения, радио, интернета и социальных сетей на 32 языках объединяет людей на планете.\n\nПодробнее о DW можно прочитать [здесь](https://corporate.dw.com/en/about-dw/s-30688)\n\nОб OONI: Open Observatory of Network Interference – основанный в 2012 году некоммерческий проект для создания программного обеспечения, который ставит своей целью поддержать рассредоточенные усилия по документированию актов цензуры в интернете по всему миру. \n\nБлагодаря глобальному сообществу OONI более миллиарда результатов измерений было опубликовано в более чем 200 странах. Это помогло пролить свет на случаи цензуры в интернете по всему миру.\n\nСтань частью движения за свободный интернет, делясь информацией из своего сегмента глобальной Сети.", + "Settings.Proxy.Label": "Прокси" +} \ No newline at end of file diff --git a/news-media-scan/ru/strings.xml b/news-media-scan/ru/strings.xml new file mode 100644 index 0000000..cf805ed --- /dev/null +++ b/news-media-scan/ru/strings.xml @@ -0,0 +1,639 @@ + + + News Media Scan + Новостной сайт заблокирован? + Запусти News Media Scan и узнай! News Media Scan – приложение номер один, которое дает тебе четкое представление о новостном ландшафте, в какой бы стране ты ни находился. Кроме того, используя это приложение, ты вносишь вклад в измерение уровня цензуры по всему миру.\n\nСписок, который ты увидишь в News Media Scan, находится в общественном доступе. Он составляется не DW, а пользователями сервиса для разработки IT-проектов GitHub и представляет собой объективную подборку международных и национальных новостных медиакомпаний. + ОК + Обратите внимание! + OONI опубликует полученные от тебя результаты измерений уровня цензуры, включая информацию о твоей сети. + Любой, кто мониторит твое интернет-соединение, сможет увидеть, что ты пользуешься News Media Scan. + Ты будешь тестировать новостные сайты, которые могут быть заблокированы в той стране, где ты в данный момент находишься. + Я понимаю + Подробнее + Тест + Да + Нет + Назад + Продолжить + Вопрос 1/2 + Если кто-то следит за моей активностью в интернете, они увидят, что я использую News Media Scan. + Предупреждение + News Media Scan – это не инструмент для обеспечения приватности. Любой человек, следящий за вашей активностью в интернете, увидит что вы используете OONI. + Вопрос 2/2 + Каждый раз, когда я использую News Media Scan, информация о сети, которую я собираю, автоматически публикуется в открытый доступ. + Предупреждение + Чтобы увеличить прозрачность интернет-цензуры, информация о сети всех пользователей News Media Scan автоматически публикуется в открытый доступ (если пользователи не отключили публикацию в настройках). + Автоматическое тестирование + Для того, чтобы ежедневно измерять уровень цензуры в интернете, активируй функцию автоматического сканирования. Это позволит приложению News Media Scan проводить мониторинг через определенные промежутки времени.\n\nНе беспокойся, мы позаботились об экономичном использовании аккумулятора.\n\nФункцию автоматического сканирования можно отключить в настройках в любое время. + Отчет об ошибке + Чтобы улучшить работу News Media Scan, мы хотели бы собирать анонимные отчеты об ошибках приложения, когда оно ломается. \n\nХотели бы вы делиться отчетами об ошибках с командой разработчиков OONI? + Да + Нет + Настройки по умолчанию + Мы собираем и публикуем: + Код страны (например, IT для Италии) + Сетевую информацию (включая номер автономной системы) + Время и дату тестирования + Мы всегда работаем над тем, чтобы ваш IP-адрес или другие персональные данные не были опубликованы.\n\nУзнайте подробнее в [политике по обработке данных OONI](https://ooni.org/about/data-policy/). + Нажав «ОК», вы делитесь отчетом об ошибке, и помогаете улучшить OONI Probe. + Начнем + Изменить настройки + Главное меню + Старт + Н/П + Старт + Последний тест: + Примерно: + Выберите сайты + Процесс: + Осталось примерно: + %1$s сек + Подготовка к тесту + Вычисляем предполагаемое время + Показать журнал + Закрыть журнал + Останавливаем тест... + Заканчиваем текущее тесты, пожалуйста подождите.... + Используется прокси + Нажмите, чтобы получить больше информации + ~%1$sс + Проверяет заблокированы ли новостные и медиа сайты + Проверьте блокировки сайтов используя OONI [Web Connectivity тест](https://ooni.org/nettest/web-connectivity/).\n\nКаждый раз нажимая \"Старт\", вы проверяете набор сайтов из списков тестирования Citizen Lab [глобально](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) и [по конкретным странам](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nЧтобы протестировать выбранные сайты, нажмите кнопку «Выбрать» или выберите нужные категории сайтов через настройки на этой карточке.\n\nЭтот тест проверяет заблокирован ли сайт через вмешательство в DNS, блокировки TCP/IP или через прозрачный HTTP-прокси.\n\nРезультаты будут опубликованы в [OONI Explorer](https://explorer.ooni.org/world/) и [OONI API](https://api.ooni.io/). + Проверьте блокировку сайтов используя OONI [Web Connectivity тест](https://ooni.org/nettest/web-connectivity/).\n\nТест использует списки сайтов от Citizen Lab: [глобальный](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) и [по странам](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nТест покажет, заблокированы ли эти сайты путем вмешательства в DNS, блокировки TCP/IP или через HTTP-прокси.\n\nПолученные результаты будут опубликованы в [OONI Explorer](https://explorer.ooni.org/) и [OONI API](https://api.ooni.io/). + Измерить скорость и производительность сети + Скорость и производительность сети можно измерить с помощью [NDT](https://ooni.io/nettest/ndt/).\n\nСкорость видеопотока — с помощью [DASH](https://ooni.io/nettest/dash/).\n\nЭти тесты обрабатывают данные и зависят от скорости вашей сети.\n\nРезультаты будут опубликованы в [OONI Explorer](https://explorer.ooni.io/world/) и [OONI API](https://api.ooni.io/).\n\nВнимание: в этих тестах используются серверы третьих сторон. Мы не можем гарантировать конфиденциальность вашего IP-адреса. + Запустив тесты в этой карточке, вы сможете:\n\n- Измерить скорость и производительность сети ([NDT](https://ooni.org/nettest/ndt/) тест)\n- Измерить производительность потоковой передачи видео ([DASH](https://ooni.org/nettest/dash/) тест)\n- Проверить наличие [middlebox-технологий](https://ooni.org/support/glossary/#middlebox) в вашей сети ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) и [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) тесты)\n\nЭти тесты обрабатывают данные в зависимости от скорости вашей сети.\n\nРезультаты тестов будут опубликованы на сайте [OONI Explorer](https://explorer.ooni.org/) и [OONI API](https://api.ooni.io/).\n\n**Дисклеймер:** [NDT](https://ooni.org/nettest/ndt/) и [DASH](https://ooni.org/nettest/dash/) тесты проводятся на сторонних серверах, предоставленных [Measurement Lab (M-Lab)](https://www.measurementlab.net). Если вы запускаете эти тесты, M-Lab соберет и опубликует ваш IP-адрес (в исследовательских целях), независимо от ваших настроек OONI Probe. Узнайте больше об управлении данными компании M-Lab в их [политике конфиденциальности](https://www.measurementlab.net/privacy/). + Определение устройства middlebox в вашей сети + Интернет-провайдеры часто используют сетевые устройства (middlebox) в решении различных сетевых задач (например, для кеширования). Бывает, что middleboxes применяются для интернет-цензуры и/или слежки.\n\nПроверьте, присутствуют ли middleboxes в вашей сети используя OONI тесты [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) и [HTTP Header Field Manipulation](https://ooni.io/nettest/http-header-field-manipulation/).\n\nРезультаты будут опубликованы в [OONI Explorer](https://explorer.ooni.io/world/) и [OONI API](https://api.ooni.io/). + Протестировать блокировку мессенджеров + Проверить заблокированы ли [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), и [Signal](https://ooni.org/nettest/signal).\n\nРезультаты будут опубликованы в [OONI Explorer](https://explorer.ooni.org/world/) и [OONI API](https://api.ooni.io/). + Протестировать блокировку инструментов обхода цензуры + Проверьте заблокирован ли [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) или [RiseupVPN](https://ooni.org/nettest/riseupvpn/).\n\nРезультаты будут опубликованы в [OONI Explorer](https://explorer.ooni.org/) и [OONI API](https://api.ooni.io/). + Запустить новые экспериментальные тесты + Попробуйте запустить новые экспериментальные тесты созданные командой OONI:\n%1$s\n\nРезультаты будут опубликованы в [OONI Explorer](https://explorer.ooni.org/) и [OONI API](https://api.ooni.io/). + Следующие тесты будут выполняться только в рамках автоматизированного тестирования: + Отключенные тесты + Гбит/с + Мбит/с + кбит/с + мс + Н/П + Неизвестно + Результаты тестов + Результаты тестов + Тесты + Сети + Трафик + Фильтровать тесты + Все тесты + Сайты + Middleboxes + Производительность + Мессенджеры + Обход блокировки + Экспериментальный режим + Тесты еще не проводились. Попробуйте запустить первый! + Заблокирован: %1$s + Заблокированы: %1$s + Протестирован: %1$s + Протестированы: %1$s + Определено + Не определено + Ошибка + Заблокирован: %1$s + Заблокированы: %1$s + Доступен: %1$s + Доступно: %1$s + Заблокировано: %1$s + Заблокировано: %1$s + Доступно: %1$s + Доступно: %1$s + Неполный результат + Ошибка + Ошибка в измерении + Результаты не загружены + Дата и время + Сеть + Страна + Трафик + Общее время + Wi-fi + Мобильные данные + Нет связи с интернетом + Ошибка + Протестирован + Протестированы + Заблокирован + Заблокированы + Cайт + Сайты + Доступен + Доступно + Видео + Качество + Загрузить + Скачать + Пинг + Определено + Не определено + Ошибка + Протестирован + Протестированы + Заблокирован + Заблокированы + Доступен + Доступно + Приложение + Приложения + Протестировано + Протестировано + Заблокировано + Заблокировано + Работает + Работает + Настройка + Настройки + Время теста + Методология + Посмотреть лог + Данные + Скопировать ссылку на Explorer + Поделиться ссылкой на Explorer + Скопировать в буфер обмена + Показать в OONI Explorer + Ошибка + Можно попробовать запустить этот тест снова + Попробовать снова + Узнать как этот тест работает [тут](%1$s). + Доступно + Сайт %1$s доступен. + Похоже, заблокировано + Сайт %1$s, по-видимому, заблокирован %2$s. \n\nПримечание: случаются ложные результаты. Подробнее см. [здесь](https://ooni.org/support/faq/#what-are-false-positives). + Обход цензуры + **Поддельные DNS** + **Блокировки на основе TCP/IP** + **HTTP-блокировка (м.б. со страницей блокировки)** + **Блокируется HTTP (ошибка HTTP-запросов)** + Мобильное приложение + OK + Ошибка + Веб-интерфейс WhatsApp + OK + Ошибка + Регистрация + OK + Ошибка + Работает + Успешно протестировано соединение с эндпоинтом WhatsApp и веб-интерфейсом web.whatsapp.com. + Вероятно, заблокировано + Похоже, WhatsApp заблокирован. + Мобильное приложение + OK + Ошибка + Веб-интерфейс Telegram + OK + Ошибка + Работает + Успешно протестировано соединение с эндпоинтом Telegram и веб--интерфейсом web.telegram.org. + Вероятно, заблокировано + Похоже, Telegram заблокирован. + TCP-подключения + OK + Ошибка + DNS-запросы + OK + Ошибка + Работает + Успешно протестировано соединение с эндпоинтами и IP-адресами Facebook. + Вероятно, заблокировано + Похоже, Facebook мессенджер заблокирован. + Вероятно, заблокировано + Похоже, Signal заблокирован. + Работает + Успешно протестировано соединение с эндпоинтами Signal. + Middleboxes не обнаружены + При соединении с нашими серверами не отмечено аномалий в сети. + Вмешательство в сети + При анализе сетевого трафика на наших контрольных серверах обнаружено вмешательство в сетевую активность.\n\nВозможно, это следствие работы в вашей сети устройства middlebox, которое может осуществлять функции цензуры и слежки. + Middleboxes не обнаружены + При соединении с нашими серверами не отмечено аномалий в сети. + Вмешательство в сети + При анализе сетевого трафика на наших контрольных серверах обнаружено вмешательство в сетевую активность.\n\nВозможно, это следствие работы в твоей сети устройства middlebox, которое может осуществлять функции цензуры и слежки. + Ты отправил/а + Ты получил/а + Загрузить + Скачать + Пинг + Сервер + Скорость повторной передачи + Не работает + Средний пинг + Оценка максимального пинга + MSS + Таймауты + Можешь загружать видеопоток до %1$s без буферизации. + Средний битрейт + Задержка воспроизведения + Вероятно, заблокировано + Работает + Похоже, [Psiphon](https://psiphon.ca/) заблокирован. + Нам удалось успешно установить соединение с Psiphon. Это означает, что [Psiphon](https://psiphon.ca/) должен работать. + Время бутстрапа + %1$s с + Вероятно, заблокировано + Работает + Похоже, [Tor](https://www.torproject.org/) заблокирован. + Нам удалось успешно установить соединение со стандартными мостами Tor и/или управляющими списками Tor. Это означает, что [Tor](https://www.torproject.org/) должен работать. + Мосты по умолчанию + %1$s/%2$s OK + Управляющие списками + %1$s/%2$s OK + Имя + Адрес + Тип + Подключиться + Хендшейк + Вероятно, заблокировано + Работает + [RiseupVPN](https://riseup.net/vpn) заблокирован. + Мы успешно подключились к серверу начальной загрузки RiseupVPN и к VPN шлюзу. Это означает, что [RiseupVPN](https://riseup.net/vpn) должен работать. + Загрузочный сервер + OpenVPN подключения + Сетевые мосты + Заблокировано + Заблокировано: %1$s + Заблокировано: %1$s + OK + Это экспериментальный тест. + Лента + Лента + OK + Отмена + Не спрашивать опять + Удалить + Ошибка + Повторить + Звучит отлично + Нет, спасибо + Не сейчас + Тестировать в любом случае + Отключить VPN + Всегда тестировать + Ошибка теста. Пожалуйста, проверьте подключение к интернету. + Ошибка скачивания списка адресов. Пожалуйста, попробуйте снова. + Пожалуйста, дождитесь окончания текущего теста, чтобы начать новый. + Нужно разрешить уведомления. Пожалуйста, включите их в настройках телефона, а затем в приложении OONI Probe. + Зайдите в настройки + На время теста этот экран заблокирован. + Нужно подключение к Интернету для загрузки сырых данных измерения. + Результаты не загружены + Некоторые из ваших результатов теста не были загружены на серверы OONI. Если хотите помочь проекту OONI с исследовательскими данными, пожалуйста, загрузите результаты на сервер. + Загрузить + Загружаем %1$s ... + OONI Probe не может включаться автоматически без оптимального заряда батареи. Попробовать еще раз? + Пожалуйста, отключите VPN. + Если запускать OONI Probe с подключенным VPN, то результаты теста могут отображаться как собранные в другой стране. Пожалуйста, отключайте VPN. + Некоторые измерения были собраны через VPN. + Если загружать измерения сделанные, когда VPN был подключен, то результаты теста могут отображаться как собранные в другой стране. + Загрузка успешно завершена + Показать список ошибок + Получайте новости о случаях интернет-цензуры + Хотите проводить тесты OONI Probe во время событий, провоцирующих цензуру? Подключите оповещения, чтобы получать сообщения, когда мы замечаем интернет-цензуру в вашем регионе. + Чтобы повысить точность тестов, нам требуется доступ к GPS-данным. OONI собирает только примерные данные о ваших GPS-координатах. + Удалить все результаты тестов? + Удалить этот тест? + Пожалуйста, активируйте хотя бы один тест + Пожалуйста, вводите в это поле только цифры. + Повторить тест + Неудачный тест. Повторить? + Вы собираетесь повторно протестировать %1$s сайтов. + Старт + Вы уверены? + Если вы закроете этот экран, адреса не сохранятся. Вы уверены, что хотите его закрыть? + Активировать ручную загрузку? + Эта настройка позволяет вручную перезагружать неопубликованные измерения. + Активировать + Нет, спасибо + Не удалось загрузить + Нам не удалось загрузить измерения %1$s/%2$s. Журнал сбоев был передан разработчикам OONI. + Лог-файл не найден + URL не найдены + JSON пуст + Прервать тест? + Это прекратит текущий тест с этого момента. + Запускать тесты автоматически? + Подключая автоматическое тестирование, вы помогаете OONI проводить регулярные измерения. + Пожалуйста, разрешите приложению работать в фоновом режиме. + Напомнить позже + Скопировано в буфер обмена + Не загружено + Загрузить + Загружено частично + Загрузить все + Новостные и медиа сайты + Мессенджеры + Middleboxes + Производительность + Обход блокировки + Экспериментальный режим + Тест HTTP Invalid Request Line + Тест HTTP Header Field Manipulation + Web Connectivity тест + Тест скорости NDT + Тест видеопотока DASH + Тест WhatsApp + Тест Telegram + Тест Facebook Messenger + Тест Psiphon + Тест Tor + RiseupVPN тест + Тест Signal + Настройки + Вы установили слишком короткое время для теста. + О News Media Scan + Это приложение – результат тесного сотрудничества Deutsche Welle (DW) и OONI. \n\nО DW: непредвзятая информация для свободных умов – таково обещание бренда DW. Будучи независимым СМИ, немецкая международная медиакомпания DW предоставляет доступ к информации людям по всему миру. Контент от DW для телевидения, радио, интернета и социальных сетей на 32 языках объединяет людей на планете.\n\nПодробнее о DW можно прочитать [здесь](https://corporate.dw.com/en/about-dw/s-30688)\n\nОб OONI: Open Observatory of Network Interference – основанный в 2012 году некоммерческий проект для создания программного обеспечения, который ставит своей целью поддержать рассредоточенные усилия по документированию актов цензуры в интернете по всему миру. \n\nБлагодаря глобальному сообществу OONI более миллиарда результатов измерений было опубликовано в более чем 200 странах. Это помогло пролить свет на случаи цензуры в интернете по всему миру.\n\nСтань частью движения за свободный интернет, делясь информацией из своего сегмента глобальной Сети. + Подробнее + Блог + Отчеты + Политика данных OONI + Уведомления + Включено + Известить о завершении теста + Новостная лента + Автоматическое тестирование + Запускать тесты автоматически + Количество автоматических тестов: %1$s. + Последний автоматический тест: %1$s. + Только на Wi-Fi + Только во время зарядки + Если вы включите автоматическое тестирование в OONI Probe, тесты будут проводиться несколько раз в день. Результаты будут автоматически публиковаться в OONI Explorer: https://explorer.ooni.org/\n\nВажно: Если у вас включен VPN, OONI Probe тесты не будут производиться автоматически. Пожалуйста, выключите VPN для автоматических тестов. Узнать больше: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + Обмен + Автоматически публиковать результаты + Загрузка результатов вручную + Включать сетевые данные + Включать примерное местонахождение + Включать мой IP-адрес + Включать код страны + Эта информация (например, IT для Италии) нужна, чтобы определять, к какой стране относятся измерения. Отключить эту опцию? + Публикуя результаты, вы повышаете прозрачность интернет-цензуры и поддерживаете сообщество OONI.\n\nСетевые данные (в частности, номер автономной системы) нужны для определения интернет-провайдеров. + Варианты тестирования + Настройки, которые вы установите выше, например, отключение тестирование WhatsApp, будут использованы для всех тестов, как ручных, так и автоматических, если последние включены на вашем устройстве. + Долгий тест + Вы хотите запустить долгие тесты в первую очередь? + Конфиденциальность + Отправить отчет об ошибке + Расширенные настройки + Темный режим + Журналы отладки + Посмотреть последние логи + Язык настроек + Выбрать язык + Всегда использовать фронтирование домена + Прокси + Прокси + Нет + Psiphon + Пользовательский прокси + Пользовательский URL-адрес прокси-сервера + Пользовательский протокол прокси + Подключение + Имя хоста + Порт + Учетные данные (необязательно) + Логин + Пароль + Используй Psiphon вместо пользовательского прокси + Не получается использовать OONI Probe? Попробуйте подключить [Psiphon](https://psiphon.ca/) для обхода возможной блокировки OONI Probe. Либо, можете воспользоваться пользовательским прокси сервером. + Ограничить продолжительность теста + Продолжительность теста + Категории сайтов для тестирования + Выбрано категорий: %1$s + Редактировать + Отменить выбор + Выбрать все + Сохранить + Несохранённые изменения + Вы внесли изменения в категории. Сохранить? + Сохранить + Отменить + Выберите сайты для тестирования + Ссылка + Не указаны адреса + Старт + Добавить сайт + Загрузить из шаблона + Количество протестированных сайтов (0 означает все) + Тестировать WhatsApp + Тестировать Telegram + Тестировать Facebook Messenger + Тестировать Signal + Начать тест HTTP Invalid Request Line + Начать тест HTTP Header Field Manipulation + Запустить тест скорости NDT + Автоматический выбор сервера NDT + Адрес сервера NDT + Порт сервера NDT + Запустить тест видеопотока DASH + Автоматический выбор сервера DASH + Сервер DASH + Порт сервера DASH + Тестировать Psiphon + Тестировать Tor + Тестировать RiseupVPN + Предупреждать когда VPN подключен + Отправить письмо поддержке + Пожалуйста, опишите проблему: + Пожалуйста, отправьте письмо на bugs@openobservatory.org с информацией о версиях приложения и iOS. Нажмите «Скопировать в буфер обмена» ниже, чтобы скопировать наш адрес электронной почты. + Текущий язык приложения: %1$s + Язык + Использование хранилища + Объем использованного хранилища + Удалить + Очистить + Сейчас вы удаляете все OONI измерения со своего устройства. Если они были загружены в открытый доступ, то их можно будет найти в [OONI Explorer](https://explorer.ooni.org) + Завершено + Прекратить тест + Попробуйте использовать зеркало + Загрузка... + Возникла неизвестная ошибка. Пожалуйста, перезагрузите страницу. + Вы собираетесь запустить тест OONI Probe. + Адресов: %1$s + Название теста + Данные теста + Старт + Устарело + Для этого теста нужна обновленная версия OONI Probe. + Обновить + Закрыть + Неверный параметр + Ссылка на OONI Run либо неправильно сформирована, либо ваше приложение устарело. + Вы протестируете произвольный набор сайтов. + Пожалуйста, подождите завершения теста, перед чем нажать «OONI Run». + Прочитать целиком > + Скрыть > + Наркотики и алкоголь + Религия + Порнография + Провоцирующая одежда + Политическая критика + Права человека + Окружающая среда + Терроризм и военные + Высказывания ненависти + Новостные ресурсы + Сексуальное просвещение + Общественное здравоохранение + Азартные игры + Средства обхода цензуры + Знакомства онлайн + Социальные сети + ЛГБТК+ + Обмен файлами + Хакерские инструменты + Средства коммуникаций + Обмен информацией + Хостинг и блоггинг + Поисковики + Игры + Культура + Экономика + Правительство + Электронная коммерция + Контроль за контентом + Межгосударственные структуры + Прочее + Потребление и продажа наркотиков и алкоголя + Религиозные темы, как поддерживающие, так и критические + Жесткое и легкое порно + Провоцирующее изображение женщин с минимумом одежды + Критические политические высказывания + Права человека + Дискуссии по вопросам защиты окружающей среды + Терроризм, насильственные военные или сепаратистские движения + Пренебрежительное/унижающее отношение к определенным группам людей из-за их расы, пола, сексуальных предпочтений или чего-то другого + Крупные новостные сайты, региональные источники новостей, независимые медиа + Вопросы сексуального здоровья, включая темы контрацепции, венерических заболеваний, изнасилований и абортов + Проблемы общественного здравоохранения, такие как COVID-19, ВИЧ/СПИД, Эбола + Азартные игры и ставки онлайн + Обеспечение анонимности, обход цензуры, шифрование + Сайты онлайн-знакомств + Социальные сети и аналогичные платформы + ЛГБТ+сообщества, обсуждающие смежные проблемы (исключая порнографию) + Обмен файлами, включая облачные хранилища, торренты и P2P + Инструменты и новости по теме цифровой безопасности + Индивидуальные и групповые коммуникации: VoIP, мессенджеры, веб-почта и др. + Обмен видео-, аудио- и фотоматериалами + Веб-хостинг, ведение блогов и другие инструменты для публикаций + Поисковые системы и порталы + Онлайн-игры и игровые платформы (исключая азартные игры) + Материалы по истории и литературе; музыка, кино, сатира и юмор + Общие вопросы экономического развития и тема бедности + Правительственные сайты, в том числе военные + Коммерческие сервисы и продукты + Безвредный контент, используемый для контроля + Межправительственные организации, включая ООН + Сайты, не вошедшие ни в одну категорию + Не спрашивать снова + Включить уведомления о результатах тестирования + Хотите ли вы включить уведомления о результатах тестирования OONI Probe и показывать прогресс тестов в окне уведомлений? + Ссылка загружается + Ошибка + Установка ссылки отменена + Создано %s %s\n\n%s + Удалить ссылку + Просмотреть обновления + Предыдущие изменения + Вы сможете снова установить эту ссылку только с помощью оргинальной ссылки, которую вы получили от создателя. + Узнать больше + Тестировать сайты автоматически + Ошибка + Тесты OONI + Ссылки OONI Run + Тест закончен. Нажмите, чтобы узнать результаты. + УСТАРЕЛА + ОБНОВЛЕНА + Установить новую ссылку + Автор: + Проверить настройки + Устанавливать обновления автоматически + Запускать тесты автоматически + Ссылка установлена + Установить ссылку + Установка ссылки отменена + ОБНОВЛЕНИЯ + Протестировать %s ссылки + Протестировать ссылки + Обновление ссылки + Ссылок обновлено + Обновлены ссылки (%1$s из %2$s) + ОБНОВИТЬ И ЗАВЕРШИТЬ (%1$s из %2$s) + ОБНОВИТЬ (%1$s из %2$s) + Обновить + Протестировать + Запуск + Выберите тест, который вы хотите запустить + Запустить %s тест(ов) + Выберите тесты, которые вы хотите запустить + Выбрать все тесты + Отменить выбор всех тестов + Ссылка загружается + Обновления ссылки загружаются + Обновления ссылки готовы + Просмотреть + %s изменений + вернуться и отредактировать + refresh + Закрыть + Открыть + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Январь + Февраль + Март + Апрель + Май + Июнь + Июль + Август + Сентябрь + Октябрь + Ноябрь + Декабрь + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Ошибка + ОК + Аномалия + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Журналы + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Проверка + Manual Run + Auto Run + VPN + diff --git a/news-media-scan/sq/description.xlf b/news-media-scan/sq/description.xlf new file mode 100644 index 0000000..a730342 --- /dev/null +++ b/news-media-scan/sq/description.xlf @@ -0,0 +1,48 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + News Media Scan + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Zbuloni bllokimin e faqeve të mediave me lajme në zonën tuaj. + This is limited by Google to 80 characters + + + News Media Scan + News Media Scan + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Zbuloni bllokimin e faqeve të mediave me lajme në zonën tuaj. + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + Mblidh prova të censurimit në internet. Mat shpejtësinë dhe performancën e rrjetit tuaj. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Zbuloni nëse mund të gjeni faqet e lajmeve që ju nevojiten ose nëse ato janë të bllokuara – News Media Scan nga DW ju ofron transparencën që ju nevojitet. Ju gjithashtu do të jepni një kontribut të vlefshëm për komunitetin global "Liria e Internetit" duke ndihmuar për zbulimin e censurës në mbarë botën. + +Ky aplikacion është produkt i bashkëpunimit të ngushtë midis Deutsche Welle (DW) dhe OONI. + +Rreth DW: Informacion i paanshëm për mendjet e lira – ky është premtimi i markës DW. Si një kompani e pavarur mediatike, transmetuesi ndërkombëtar i lajmeve në Gjermani informon njerëzit në mbarë botën. Me programe në 32 gjuhë DW lidh njerëzit anembanë globit nëpërmjet TV, radios, internetit dhe mediave sociale. + +Rreth OONI: Themeluar në vitin 2012, Observatori i Hapur i Ndërhyrjes në Rrjet (OONI) është një projekt softuer jofitimprurës dhe falas që synon të fuqizojë përpjekjet e decentralizuara për dokumentimin e censurës së internetit në mbarë botën. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + rrjeti,test shpejtësie,matje,rrjet,wi-fi,rrjeti,skano,bandwidth,bench,dns,pajisje celulare,ooni,kërkim,mjet + + +
+
\ No newline at end of file diff --git a/news-media-scan/sq/strings.json b/news-media-scan/sq/strings.json new file mode 100644 index 0000000..a87e638 --- /dev/null +++ b/news-media-scan/sq/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "A ka faqe lajmesh të bllokuara?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Përdorni News Media Scan për ta zbuluar! News Media Scan është aplikacioni numër 1 për t'ju dhënë transparencë lidhur me peizazhin e lajmeve në cilindo vend që ndodheni aktualisht. Po ashtu duke përdorur këtë aplikacion ju jepni edhe një kontribut të rëndësishëm për matjen e censurës në mbarë botën.\n\nLista që shihni në aplikacion është një listë publike për të cilën përkujdeset komuniteti në GitHub dhe jo DW. ajo përfaqëson një gamë objektive të ofruesve të mediave ndërkombëtare dhe kombëtare të lajmeve.", + "Onboarding.ThingsToKnow.Bullet.1": "OONI will openly publish the measurement data you send, along with your network information.", + "Onboarding.ThingsToKnow.Bullet.2": "Anyone monitoring your Internet connection will be able to see you are running News Media Scan.", + "Onboarding.ThingsToKnow.Bullet.3": "You will be testing news websites that might be banned in the country where you currently find yourself.", + "Onboarding.PopQuiz.1.Question": "If someone is monitoring my internet activity, they will see that I am running News Media Scan.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running.", + "Onboarding.PopQuiz.2.Question": "Every time I run News Media Scan, the network data I collect will automatically get published.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings).", + "Onboarding.AutomatedTesting.Paragraph": "To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon\u2019t worry, we\u2019ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time.", + "Onboarding.Crash.Paragraph": "To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team?", + "Dashboard.Websites.Card.Description": "Checks for blocking of news media websites", + "Test.Websites.Fullname": "News Media Websites", + "Settings.About.Label": "About News Media Scan", + "Settings.About.Content.Paragraph": "Ky aplikacion është produkt i bashkëpunimit të ngushtë midis Deutsche Welle (DW) dhe OONI.\n\nRreth DW: Informacion i paanshëm për mendjet e lira – ky është premtimi i markës DW. Si një kompani e pavarur mediatike, transmetuesi ndërkombëtar i lajmeve në Gjermani informon njerëzit në mbarë botën. Me programe në 32 gjuhë DW lidh njerëzit anembanë globit nëpërmjet TV, radios, internetit dhe mediave sociale.\n\nMë shumë informacion për DW:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\nRreth OONI: Themeluar në vitin 2012, Observatori i Hapur i Ndërhyrjes në Rrjet (OONI) është një projekt softuer jofitimprurës dhe falas që synon të fuqizojë përpjekjet e decentralizuara për dokumentimin e censurës së internetit në mbarë botën. Falë komunitetit të tij global janë publikuar më shumë se një miliardë matje rrjeti nga më shumë se 200 vende, duke hedhur dritë mbi rastet e censurës së internetit në mbarë botën.\n\nBëhu pjesë e lëvizjes për lirinë e internetit duke ofruar të dhëna nga rrjetet që përdor.", + "Settings.Proxy.Label": "Backend proxy" +} \ No newline at end of file diff --git a/news-media-scan/sq/strings.xml b/news-media-scan/sq/strings.xml new file mode 100644 index 0000000..43ebe12 --- /dev/null +++ b/news-media-scan/sq/strings.xml @@ -0,0 +1,639 @@ + + + News Media Scan + A ka faqe lajmesh të bllokuara? + Përdorni News Media Scan për ta zbuluar! News Media Scan është aplikacioni numër 1 për t\'ju dhënë transparencë lidhur me peizazhin e lajmeve në cilindo vend që ndodheni aktualisht. Po ashtu duke përdorur këtë aplikacion ju jepni edhe një kontribut të rëndësishëm për matjen e censurës në mbarë botën.\n\nLista që shihni në aplikacion është një listë publike për të cilën përkujdeset komuniteti në GitHub dhe jo DW. ajo përfaqëson një gamë objektive të ofruesve të mediave ndërkombëtare dhe kombëtare të lajmeve. + E kuptova + Kujdes! + OONI will openly publish the measurement data you send, along with your network information. + Anyone monitoring your Internet connection will be able to see you are running News Media Scan. + You will be testing news websites that might be banned in the country where you currently find yourself. + Kuptoj + Mëso më tepër + Pop Quiz + E vërtetë + E rremë + Shko mbrapa + Vazhdoni + Pyetje 1/2 + If someone is monitoring my internet activity, they will see that I am running News Media Scan. + Kujdes + News Media Scan is not a privacy tool. Anyone monitoring your internet activity will see which software you are running. + Pyetje 2/2 + Every time I run News Media Scan, the network data I collect will automatically get published. + Kujdes + To increase transparency of internet censorship, the network data of all News Media Scan users is automatically published (unless they opt-out in the settings). + Automated testing + To measure internet censorship every day, please enable automated testing so that News Media Scan can run tests periodically.\n\nDon’t worry, we’ll be mindful of battery usage.\n\nYou can disable automated testing from the settings at any time. + Crash Reporting + To improve News Media Scan we would like to collect anonymous crash reports when the app does not work properly.\n\nWould you like to opt-in to submitting crash reports to the OONI development team? + Po + Jo + Rregullimet e parazgjedhura + Mbledhim dhe publikojmë: + Kodi i shtetit (psh IT për Italinë) + Informacion mbi rrjetin (përfshirë numrin autonom të sistemit) + Ora dhe data e testimit + We do our best not to publish your IP address or any other potentially personally identifiable information.\n\nLearn more through [OONI\'s Data Policy](https://ooni.org/about/data-policy/). + By tapping \"OK\", you will share crash reports to help us improve OONI Probe. + Nisim + Ndysho të parazgjedhurat + Paneli kryesor + Përdor + Jo e disponueshme + Përdor + Testimi fundit: + Përllogaritur: + Zgjidhni faqet + Duke përdorur: + Koha që ka mbetur me përafërsi: + %1$s sekonda + Duke u përgatitur për testim + Calculating ETA + Shfaq log + Mbyll log + Stopping test… + Finishing the currently pending tests, please wait… + Proxy in use + Shyp mbi kartën për më shumë + ~%1$ss + Checks for blocking of news media websites + Check whether websites are blocked using OONI\'s [Web Connectivity test](https://ooni.org/nettest/web-connectivity/).\n\nEvery time you tap Run, you test different websites from the Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists.\n\nTo test the sites of your choice, tap the Choose websites button or select categories of sites via the settings of this card. \n\nThis test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). + Check whether websites are blocked using OONI\'s [Web Connectivity test](https://ooni.org/nettest/web-connectivity/).\n\nYou will test the websites included in the Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists.\n\nThis test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). + Testo shpejtësinë dhe performancën e rrjetit + Measure the speed and performance of your network using the [NDT](https://ooni.org/nettest/ndt/) test.\n\nMeasure video streaming performance using the [DASH](https://ooni.org/nettest/dash/) test.\n\nThese tests consume data depending on your network speed.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/).\n\nDisclaimer: These tests rely on third party servers. We therefore cannot guarantee that your IP address will not be collected. + By running the tests in this card, you will:\n\n- Measure the speed and performance of your network ([NDT](https://ooni.org/nettest/ndt/) test)\n- Measure video streaming performance ([DASH](https://ooni.org/nettest/dash/) test)\n- Check for the presence of [middlebox technologies](https://ooni.org/support/glossary/#middlebox) on your network ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests)\n\nThese tests consume data depending on your network speed.\n\nYour test results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/).\n\n**Disclaimer:** The [NDT](https://ooni.org/nettest/ndt/) and [DASH](https://ooni.org/nettest/dash/) tests are conducted against third-party servers provided by [Measurement Lab (M-Lab)](https://www.measurementlab.net/). If you run these tests, M-Lab will collect and publish your IP address (for research purposes), irrespective of your OONI Probe settings. Learn more about M-Lab’s data governance through its [privacy statement](https://www.measurementlab.net/privacy/). + Zbuloni middleboxes në rrjetin tuaj + Internet Service Providers often use network appliances (middleboxes) for various networking purposes (such as caching). Sometimes these middleboxes are used to implement internet censorship and/or surveillance.\n\nFind middleboxes in your network using OONI\'s [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). + Testoni bllokimin e aplikacioneve të mesazheve + Check whether [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), and [Signal](https://ooni.org/nettest/signal) are blocked.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). + Test the blocking of censorship circumvention tools + Check whether [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) or [RiseupVPN](https://ooni.org/nettest/riseupvpn/) are blocked.\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). + Run new experimental tests + Run the following new experimental tests developed by the OONI team:\n%1$s\n\nYour results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). + The following tests will only be run as part of automated testing: + Disabled Tests + Gbit/s + Mbit/s + kbit/s + ms + Jo e disponueshme + E panjohur + Rezultatet e testit + Rezultatet e testit + Testet + Rrjete + Përdorimi i të dhënave + Filtrimi i testeve + Të gjitha testet + Faqe + Middleboxes + Performanca + Mesazhe + Shmangie + Experimental + Asnjë test nuk është kryer deri tani. Bëj një test tani! + %1$s të bllokuara + %1$s të bllokuara + %1$s të testuara + %1$s të testuara + Zbuluar + Jo të zbuluara + Dështoi + %1$s të bllokuara + %1$s të bllokuara + %1$s të aksesueshme + %1$s të aksesueshme + %1$s të bllokuara + %1$s të bllokuara + %1$s available + %1$s available + Incomplete Result + Gabim + Error in Measurement + Rezultatet nuk u ngarkuan + Data & Ora + Rrjeti + Vendi + Përdorimi i të dhënave + Kohëzgjatja totale + WiFi + Të dhëna celulare + S\'ka internet + Dështoi + Testuar + Testuar + Bllokuar + Bllokuar + Faqe + Faqe + Aksesueshëm + Aksesueshëm + Video + Cilësia + Ngarkoni + Shkarkim + Ping + Zbuluar + Jo të zbuluara + Dështoi + Testuar + Testuar + Bllokuar + Bllokuar + Aksesueshëm + Aksesueshëm + Aplikacion + Aplikacione + Testuar + Testuar + Bllokuar + Bllokuar + Po punohet + Po punohet + Tool + Mjete + Kohëzgjatja + Metodologjia + Shiko detajet + Të dhëna + Kopjo URL e Eksploruesit + Share Explorer URL + Kopjo + Show in OONI Explorer + Dështoi + Ju mund të provoni të bëni sërish këtë test + Riprovoni + Learn how this test works [here](%1$s). + Aksesueshëm + %1$s është i aksesueshëm + Mundësisht i bllokuar + %1$s besohet të jetë bllokuar për shkak se %2$s.\n\nShënim: Mund të jetë rezultat i rremë. Mëso më shumë: [këtu](https://ooni.org/support/faq/#what-are-false-positives). + Shmangja e Censurimit + **Sulme DNS** + **Bllokime bazuar në TCP/IP** + **Bllokim HTTP (një blockpage mund të shërbehet)** + **Bllokim HTTP (kërkesat HTTP dështuan)** + Aplikacion celulari + OK + Dështoi + WhatsApp Web + OK + Dështoi + Regjistrimi + OK + Dështoi + Po punohet + Ky testim u lidh me sukses tek skajet, shërbimet dhe ndërfaqën në internet të WhatsApp (web.whatsapp.com). + Mundësisht i bllokuar + Mesa duket WhatsApp është i bllokuar + Aplikacion mobile + OK + Dështoi + Telegram Web + OK + Dështoi + Po punohet + Ky testim u lidh me suskes tek skajet dhe ndërfaqen në internet (web.telegram.org) të Telegram. + Mundësisht i bllokuar + Mesa duket Telegram është i bllokuar. + Lidhjet TCP + OK + Dështoi + Kthim DNS + OK + Dështoi + Po punohet + Ky testim u lidh me sukses tek skajet e Facebook dhe është vendosur tek adresat IP të Facebook. + Mundësisht i bllokuar + Mesa duket Facebook Messenger është i bllokuar. + Mundësisht i bllokuar + Signal appears to be blocked. + Po punohet + This test successfully connected to Signal\'s endpoints. + Nuk u detektuan middleboxes. + Nuk u detektua asgjë anormale në rrjet gjatë lidhjes me serverat tanë. + Ndërhyrje nl rrjet + Trafiku në rrjet u manipulua gjatë kontaktit me severat tanë të kontrollit.\n\nKjo do të thotë se mund të ndodhet një middlebox në rrjetin tënd, i cili mund të jetë përgjegjës për censurim dhe/ose përgjime. + Nuk u dedektuan middleboxes. + Nuk u detektua asgjë anormale në rrjet gjatë lidhjes me serverat tanë. + Ndërhyrje në rrjet + Trafiku në rrjet u manipulua gjatë kontaktit me severat tanë të kontrollit.\n\nKjo do të thotë se mund të ndodhet një middlebox në rrjetin tënd, i cili mund të jetë përgjegjës për censurim dhe/ose përgjime. + Dërgove + Marrë + Ngarkoni + Shkarkim + Ping + Server + Retransmission Rate + Jashtë shërbimi + Ping mesatar + Max Ping Estimate + MSS + Timeouts + Mund të transmetosh video deri më %1$s pa ndërprerje. + Rang bitesh mesatar + Vonesë në fillimin e videos + Mundësisht i bllokuar + Po punohet + [Psiphon](https://psiphon.ca/) appears to be blocked. + We were able to successfully bootstrap a Psiphon connection. This means that [Psiphon](https://psiphon.ca/) should work. + Bootstrap Time + %1$s s + Mundësisht i bllokuar + Po punohet + [Tor](https://www.torproject.org/) appears to be blocked. + We were able to successfully connect to the default Tor bridges and/or Tor directory authorities. This means that [Tor](https://www.torproject.org/) should work. + Default Bridges + %1$s/%2$s OK + Directory Authorities + %1$s/%2$s OK + Emër + Adresë + Lloj + Lidhuni + Handshake + Mundësisht i bllokuar + Po punohet + [RiseupVPN](https://riseup.net/vpn) appears to be blocked. + We were able to successfully connect to RiseupVPN\'s bootstrap server and VPN gateways. This means that [RiseupVPN](https://riseup.net/vpn) should work. + Bootstrap server + OpenVPN connections + Bridged connections + Bllokuar + %1$s të bllokuara + %1$s të bllokuara + OK + This is an experimental test. + Kryefaqe + Kryefaqe + OK + Anulo + No, don\'t ask again + Fshije + Gabim + Riprovo + Sounds great + Jo, faleminderit + Not now + Run anyways + Disable VPN + Always Run + E pamundur për t\'u bërë testi. Ju lutem kontrolli lidhjen tuaj të internetit. + E pamundur për të shkarkuar listën e URL. Ju lutem përvoni përsëri. + Please wait for the current running tests to finish, before starting a new test. + Nevojitet të drejta njoftimesh. Ju lutem aktivizojini ato tek Rregullimit e telefonit tuaj dhe më pas aktivizojini tek tek aplikacioni juaj OONI Probe. + Shko tek Rregullimet + Ky ekran është i kyçur ndërkohë që po kryhet testimi. + Ju duhet të jeni të lidhur me internet për të shkarkuar vlerat e matjeve. + Rezultatet nuk u ngarkuan + Disa nga testimet e tua nuk janë të ngarkuara tek serverat e OONI. Nëse dëshiron të kontribuosh tek baza e të dhënave te OONI, ju lutem ngarkojini ato.\n + Ngarkoni + Në ngarkim %1$s ... + OONI Probe cannot run automatically without battery optimization. Do you want to try again? + Please disable your VPN connection. + If you run OONI Probe with a VPN enabled, the test results may appear to come from the wrong country. Please disable your VPN connection. + Some measurements were taken over VPN. + If you upload measurements taken when VPN enabled, the test results may appear to come from the wrong country. + Ngarkimi i sukseshëm + Display failure log + Get updates on internet censorship + Interested in running OONI Probe tests during emergent censorship events? Enable notifications to receive a message when we hear of internet censorship near you. + Që të përmirësuar saktësinë e testimeve, na duhen të drejta tek GPS. OONI do të ruaj pozicionin tend të GPS vetëm me përafërsi. + Doni që të fshihen të gjitha rezultatet e testimeve? + Doni të fshini këtë testim? + Ju lutem mundësoni të paktën një test + Ju lutem vendosni vetëm shifra në këtë fushë. + Kryej testimin përsëri + Ky testim dështoi. Doni t\'a kryeni përsëri? + You are about to re-test %1$s websites. + Përdor + Jeni i sigurt? + URL-të nuk do ruhen pasi të largoheni nga ky ekran. Jeni të sigurt që doni të largoheni nga ky ekran? + Mundëso Ngarkim Manuale + Ky opsion të mundëson ty që të ngarkosh sërish matjet e pa publikuara. + Aktivizoje + Jo, faleminderit + Ngarkimi dështoi + We have failed to upload %1$s/%2$s measurements. The failure log has been shared with OONI developers. + Skedari i Log -eve nuk u gjet + Nuk u gjet URL e vlefshme + JSON është bosh + Do you want to interrupt this test? + This will interrupt the current test from this moment. + Would you like to run tests automatically? + By enabling automated testing, you will contribute OONI measurements on a regular basis. + Please allow the app to run in the background. + Remind me later + U kopjua në tabelën-mbledhëse + Nuk është ngarkuar + Ngarkoni + Disa nuk janë ngarkuar + Ngarkoji të gjitha + News Media Websites + Mesazhe + Middleboxes + Performanca + Shmangie + Experimental + HTTP Invalid Request Line Test + HTTP Header Field Manipulation Test + Testim lidhjeje në internet + Testim shpejtësie NDT + Testim transmetimi DASH + Testim WhatsApp + Testim Telegram + Testim Facebook Messenger + Testim i Psiphon + Testimi i Tor + RiseupVPN Test + Signal Test + Rregullime + Sasia e kohës që keni vendosur për kohëzgjatjen e testimit është shumë e vogël. + About News Media Scan + Ky aplikacion është produkt i bashkëpunimit të ngushtë midis Deutsche Welle (DW) dhe OONI.\n\nRreth DW: Informacion i paanshëm për mendjet e lira – ky është premtimi i markës DW. Si një kompani e pavarur mediatike, transmetuesi ndërkombëtar i lajmeve në Gjermani informon njerëzit në mbarë botën. Me programe në 32 gjuhë DW lidh njerëzit anembanë globit nëpërmjet TV, radios, internetit dhe mediave sociale.\n\nMë shumë informacion për DW:[ About DW](https://corporate.dw.com/en/about-dw/s-30688) \n\nRreth OONI: Themeluar në vitin 2012, Observatori i Hapur i Ndërhyrjes në Rrjet (OONI) është një projekt softuer jofitimprurës dhe falas që synon të fuqizojë përpjekjet e decentralizuara për dokumentimin e censurës së internetit në mbarë botën. Falë komunitetit të tij global janë publikuar më shumë se një miliardë matje rrjeti nga më shumë se 200 vende, duke hedhur dritë mbi rastet e censurës së internetit në mbarë botën.\n\nBëhu pjesë e lëvizjes për lirinë e internetit duke ofruar të dhëna nga rrjetet që përdor. + Meso me teper + Blog + Podania + Politika e të dhënave të OONI + Njoftime + Mundësuar + Nofto pasi të kryet testimi + Kryefaqja + Automated testing + Run tests automatically + Number of automated tests: %1$s. + Last automated test: %1$s. + Only on WiFi + Only while charging + By enabling automatic testing, OONI Probe tests will run automatically multiple times per day. Your test results will automatically get published on OONI Explorer: https://explorer.ooni.org/ \n\nImportant: If you have a VPN enabled, OONI Probe will not run tests automatically. Please turn off your VPN for automated OONI Probe testing. Learn more: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + Ndajë + Publiko rezultatet automatikisht + Ngarkim Muanual i Rezultateve + Përfshi informacion të rrjetit + Përfshi gjelokacionin me përafërsi + Përfshi adresën time IP + Shto Kodin e Shtetit + Ky informacion (psh IT për Itali) kërkohet për të identifikuar nga cili shtet po mblidhen të dhënat. Jeni të sigurt që e çaktivizoni këtë opsion? + Duke publikuar rezultatet ti rrit transaprencën të ndërhyrjes në rrjet dhe mbështet komunitetin e OONI. \n\nInformacioni i rrjetit (psh Numri i Sistemit Autonom) kërkohet për të identifikuar Ofruesit e Shërbimit të Internetit. + Mundësitë e testimit + What you configure through the above test settings (e.g. disabling the WhatsApp test) will apply to tests run manually, as well as to tests run automatically (when automated testing is enabled). + Long running test + Run long running tests in foreground? + Privatësi + Dërgo raportime dështimi + Të mëtejshme + Dark Mode + Kontrollo regjistrat për gabime + See recent logs + Language Setting + Përzgjidhni Gjuhë + Gjithmonë përdor front domain + Backend proxy + Ndërmjetës + Asnjë + Psiphon + Custom Proxy + Custom Proxy URL + Custom proxy protocol + Lidhje + Emri i nikoqirit + Portë + Credentials (optional) + Emër përdoruesi + Fjalëkalim + Use Psiphon over custom proxy + Are you unable to use OONI Probe? Try enabling [Psiphon](https://psiphon.ca/) to circumvent potential OONI Probe blocking. Alternatively, you can use a custom proxy. + Kufizo kohëzgjatjen e testimit + Kohëzgjatja e testimit + Kategori faqjesh për të testuar + %1$s shtete të aktivizuara + Përpunojeni + Deselect All + Përzgjidhi Krejt + Ruaje + Unsaved Changes + You made some changes to the enabled categories. Would you like to save them? + Ruaje + Discard + Zgjidh faqe për testim + URL + Nuk është vendosur asnjë URL + Përdor + Shto faqe + Load from template + Number of tested websites (0 means all) + Testo WhatsApp + Testo Telegram + Testo Facebook Messenger + Test Signal + Kryej testimin HTTP Invalid Request Line  + Kryej testimin HTTP Header Field Manipulation + Kryej testimin e shpejtësisë NDT + Përzghedhje automatike e serverit NDT + Adresa e serverit NDT + Porta e serverit NDT + Kryej testimin e transmetimit DASH + Përzgjedhje automatike e serverit DASH + Serveri DASH + Porta e serverit NDT + Test Psiphon + Test Tor + Test RiseupVPN + Warn when VPN is in use + Dërgo email tek ndihmuesi + Please describe the problem you are experiencing: + Ju lutem dërgoni email tek bugs@openobservatory.org me informacionin e app dhe versionin e iOS. Zgjidh \"Kopjo në tabelën-mbledhëse\" më poshtë për të kopjuar adresën tonë të email. + Current app language is %1$s + Gjuhë + Storage usage + Storage used + Fshije + Spastroje + You are about to delete all OONI measurements from your device. If uploaded, they will still be available on [OONI Explorer](https://explorer.ooni.org) + Mbaroi së ekzekutuari + Stop test + Përvo mirror + Duke u ngarkuar + Ndodhi një gabim i papritur. Ju lutem ringarkoni këtë faqe. + Ju do të kryeni një testim në OONI Probe. + %1$s URL + Emri testimit + Detaje për tetsimin + Përdor + Nuk është përditësuar + Ju duhet një version më i ri i OONI Probe për të kryer këtë testim. + Përditëso + Mbylle + Parametër i pavlefshëm + Ndërlidhja e OONI Run ose është i gabuar ose aplikacioni juaj nuk është përditësuar. + Ju do të testoni një mostër të rastësishme faqesh. + Ju lutem prisni që testi të përfundojë para se të shtypni tek lidhja OONI RUN + Read more > + Read less > + Drogë & alkool + Fe + Fotografi + Veshje provokative + Kriticizëm politik + Çështje të drejtave të njeriut + Mjedisi + Terrorizëm dhe militantë + Gjuhë urrejtje + Lajme + Edukim seksual + Shëndet publik + Kumar + Mjete mashtimi + Lidhje në internet + Lidhje sociale + LGBTQ+ + Ndarje skedarësh + Mjete për hakim + Mjete komunikimi + Ndarje mediash + Hostim dhe blogim + Motorrë kërkimi + Lojra + Kulturë + Financë + Qeveri + Shitje në internet + Kontroll përmbajtjeje + Organizata ndërqeveritare + Përmbajtje Miscellaneous + Përdorim dhe shitje droge dhe alkooli + Çështje fetare, mbështetëse dhe kritike + Pornografi të rëndë dhe të lehtë + Veshje provokuese dhe pamje femrash me veshje minimale + Pikëpamje kritike politike + Çështje të drejtash të njeriut + Diskutime rreth çështjesh mjedisore + Terrorizëm, lëvizje të dhunshme militante ose separatiste + Diskriminim i grupimeve të caktuara bazuar mbi gjininë, seksualitetin ose karakteristika të tjera + Faqe kryesore lajmesh, portale rajonale lajmesh dhe media të pavarura + Çështje të shëndetit seksual përfshirë kontraceptim, SST, përdhunim, parandalim dhe abort + Public health issues, such as COVID-19, HIV/AIDS, Ebola + Kumar në internet dhe baste + Anonimitet, shkelje të censurimit dhe enkriptim + Faqe lidhjesh në internet + Platforma dhe mjete lidhjesh sociale në internet + Komunitete LGBTQI që diskutojnë lidhur me këto çështje (përjashtohet pornografia) + Ndarje skedarësh përfshirë ruajtje skedarësh të bazuara në shërbimin cloud, torrente dhe P2P + Mjete sigurie për kompjutera dhe lajme + Mjete komunikime individuale ose në grup duke përfshirë thirrje zanore, mesazhe dhe postë elektronike + Ndarje videosh, audio dhe fotosh + Hostim në internet, blogim dhe publikime të tjera në internet + Motorrë kërkimi dhe portale + Lojra në internet dhe platforma lojrash (përveç faqeve të kumarit në internet) + Argëtim duke përfshirë histori, letërsi, muzikë filma, satirë dhe humor + Zhvillim ekonimik i përgjithshëm dhe varfëri + Faqe qeveritare, përfshirë ushtrinë + Shërbime komerciale dhe produkte + Përmbajtje e mirë ose e padëmshme e përdorur për kontroll + Organizata ndërqeveritare përfshirë edhe Organizatën e Kombëve të Bashkuara + Faqe që nuk janë kategorizuar ende + Don’t ask again + Enable test progress notifications + Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? + Link Loading + Gabim + Link installation cancelled + Created by %s on %s\n\n%s + Uninstall Link + Review Updates + Previous revisions + You will be able to install this link again only from the original link sent by the creator. + See More + Test websites automatically + Gabim + OONI Tests + OONI Run Links + Run finished. Tap to view results. + EXPIRED + UPDATED + Install New Link + Autor: + Provoni Konfigurimin + Install updates automatically + Run tests automatically + Link installed + Install Link + Link installation cancelled + UPDATES + Test %s URLs + Test URLs + Link Update + Link(s) updated + Link Update (%1$s of %2$s) + UPDATE AND FINISH (%1$s of %2$s) + UPDATE (%1$s of %2$s) + Përditëso + Run tests + Kryej Testet + Please select test to run + Run %s test(s) + Select the tests to run + Select all tests + Deselect all tests + Link Loading + Link updates loading + Link updates ready + Shqyrtoni + %s inputs + Mbrapa + refresh + Tkurre + Zgjeroje + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Janar + Shkurt + Mars + Prill + Maj + Qershor + Korrik + Gusht + Shtator + Tetor + Nëntor + Dhjetor + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Të dështuar + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Shënime + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testim + Manual Run + Auto Run + VPN + diff --git a/news-media-scan/tr/description.xlf b/news-media-scan/tr/description.xlf new file mode 100644 index 0000000..aaf6df5 --- /dev/null +++ b/news-media-scan/tr/description.xlf @@ -0,0 +1,42 @@ + + +
+ Google places strick character limits on the various text fields in Google Play. The title is 30 characters, the short description is 80 characters, and the rest of the strings, which all go together in the description, are limited to 4000 characters. +
+ + + News Media Scan + Haber medyası taraması + This is limited by Google to 30 characters + + + Uncover the blocking of news media sites in your area. + Bölgenizdeki haber medyası sitelerinin engellendiğini ortaya çıkarın. + This is limited by Google to 80 characters + + + News Media Scan + Haber medyası taraması + This is limited by Apple to 50 characters + + + Uncover the blocking of news media sites in your area. + Bölgenizdeki haber medyası sitelerinin engellendiğini ortaya çıkarın. + This is limited by Apple to 30 characters + + + Collect evidence of internet censorship. Measure the speed and performance of your network. + İnternet sansürünün kanıtlarını toplayın. Ağınızın hızını ve başarımını ölçün. + This is limited by Apple to 170 characters + + + Find out if you can reach the news sites you need or if they are blocked \n - News Media Scan by DW provides you with the transparency you need. You will also be making a valuable contribution to the global “Internet Freedom” community by helping uncover censorship around the world. \n This app is the product of close cooperation between Deutsche Welle (DW) and OONI. + Gerek duyduğunuz haber sitelerine ulaşıp ulaşamayacağınızı veya engellenip engellenmediklerini öğrenin\n - DW Haber medyayı taraması size gerek duyduğunuz şeffaflığı sağlar. Ayrıca Dünya çapında sansürün ortaya çıkarılmasına yardımcı olarak küresel "İnternet Özgürlüğü" topluluğuna değerli bir katkıda bulunmuş olursunuz.\n Bu uygulama Deutsche Welle (DW) ve OONI arasındaki yakın işbirliğinin ürünüdür. + + + network,speedtest,measurement,net,wifi,networking,scan,bandwidth,bench,dns,mobile,ooni,research,tool + ağ,hız testi,ölçüm,internet,kablosuz ağ,tarama,bant genişliği,değerlendirme,dns,mobil,ooni,araştırma,araç + + +
+
\ No newline at end of file diff --git a/news-media-scan/tr/strings.json b/news-media-scan/tr/strings.json new file mode 100644 index 0000000..37a259e --- /dev/null +++ b/news-media-scan/tr/strings.json @@ -0,0 +1,19 @@ +{ + "General.AppName": "News Media Scan", + "Onboarding.WhatIsOONIProbe.Title": "Haber medyası siteleri engelleniyor mu?", + "Onboarding.WhatIsOONIProbe.Paragraph": "Öğrenmek için News Media Scan uygulamasını çalıştırın! News Media Scan, şu anda bulunduğunuz ülkedeki haber medyaları hakkında size şeffaflık sağlayan 1 numaralı uygulamadır. Ayrıca uygulamayı kullanarak Dünya çapında sansür uygulamalarının ölçülmesine önemli bir katkıda bulunursunuz.\n\nUygulamada gördüğünüz liste GitHub üzerinde bulunan herkese açık, topluluk tarafından seçilmiş bir listedir ve DW tarafından seçilmemiştir. Uluslararası ve ulusal haber medyası sağlayıcılarının objektif bir aralığını temsil eder.", + "Onboarding.ThingsToKnow.Bullet.1": "OONI, gönderdiğiniz ölçüm verilerini ağ bilgilerinizle birlikte herkese açık olarak yayınlar.", + "Onboarding.ThingsToKnow.Bullet.2": "İnternet bağlantınızı izleyen herkes News Media Scan uygulamasını çalıştırdığınızı görebilir.", + "Onboarding.ThingsToKnow.Bullet.3": "Şu anda bulunduğunuz ülkede yasaklanmış olabilecek haber sitelerini denetleyeceksiniz.", + "Onboarding.PopQuiz.1.Question": "İnternetim izleniyorsa, News Media Scan çalıştırdığım anlaşılabilir.", + "Onboarding.PopQuiz.1.Wrong.Paragraph": "News Media Scan bir kişisel gizlilik sağlama aracı değildir. İnternet işlemlerinizi izleyenler çalıştırdığınız uygulamaları görebilir.", + "Onboarding.PopQuiz.2.Question": "News Media Scan uygulamasını çalıştırdığımda topladığım veriler herkese açık olarak yayınlanır.", + "Onboarding.PopQuiz.2.Wrong.Paragraph": "İnternet sansürü şeffaflığını sağlamak için tüm News Media Scan kullanıcılarının ağ verileri otomatik olarak yayınlanır (ayarlardan kapatılmadıkça).", + "Onboarding.AutomatedTesting.Paragraph": "Lütfen İnternet sansürünün News Media Scan tarafından günlük olarak ölçülebilmesi için otomatik sınamayı açın.\n\nEndişelenmeyin, pil kullanımına dikkat edeceğiz.\n\nOtomatik sınamayı istediğiniz zaman ayarlardan kapatabilirsiniz.", + "Onboarding.Crash.Paragraph": "News Media Scan uygulamasını iyileştirmek için, sorun çıktığında kişisel veri içermeyen anonim çökme bildirimleri almak istiyoruz.\n\nÇökme bildirimlerinin OONI geliştirme ekibine gönderilmesini ister misiniz?", + "Dashboard.Websites.Card.Description": "Haber medyası sitelerinin engellenme denetimi", + "Test.Websites.Fullname": "Haber medyası siteleri", + "Settings.About.Label": "News Media Scan hakkında", + "Settings.About.Content.Paragraph": "Bu uygulama Deutsche Welle (DW) ve OONI arasındaki yakın işbirliğinin ürünüdür.\n\n_DW hakkında:_ Özgür beyinler için tarafsız bilgi; DW markasının sözü budur. Bağımsız bir medya şirketi olarak Almanya'nın uluslararası haber yayıncısı, Dünya üzerinde her yerde bulunan insanları bilgilendirir. DW, 32 dilde programlarıyla Dünya'nın dört bir yanındaki insanları TV, radyo, İnternet ve sosyal medya aracılığıyla birbirine bağlıyor.\n\nAyrıntılı bilgi almak için:[ DW hakkında](https://corporate.dw.com/en/about-dw/s-30688)\n\n_OONI hakkında:_ 2012 yılında kurulan Açık ağ izleme gözlemevi (Open Observatory of Network Interference, OONI), Dünya çapında İnternet sansürünü belgeleme konusunda merkezi olmayan çabaları güçlendirmeyi amaçlayan, kar amacı gütmeyen bir ücretsiz yazılım projesidir. Küresel topluluğu sayesinde, 200 üzerindeki ülkede [bir milyardan fazla ağ ölçümü](https://explorer.ooni.org/) yayınlandı ve Dünya çapındaki İnternet sansürü uygulamalarını ortaya çıkardı.\n\nKullandığınız ağlardan veri sağlayarak İnternet özgürlüğü hareketinin bir parçası olun.", + "Settings.Proxy.Label": "Arka uç vekil sunucusu" +} \ No newline at end of file diff --git a/news-media-scan/tr/strings.xml b/news-media-scan/tr/strings.xml new file mode 100644 index 0000000..7d746d1 --- /dev/null +++ b/news-media-scan/tr/strings.xml @@ -0,0 +1,639 @@ + + + News Media Scan + Haber medyası siteleri engelleniyor mu? + Öğrenmek için News Media Scan uygulamasını çalıştırın! News Media Scan, şu anda bulunduğunuz ülkedeki haber medyaları hakkında size şeffaflık sağlayan 1 numaralı uygulamadır. Ayrıca uygulamayı kullanarak Dünya çapında sansür uygulamalarının ölçülmesine önemli bir katkıda bulunursunuz.\n\nUygulamada gördüğünüz liste GitHub üzerinde bulunan herkese açık, topluluk tarafından seçilmiş bir listedir ve DW tarafından seçilmemiştir. Uluslararası ve ulusal haber medyası sağlayıcılarının objektif bir aralığını temsil eder. + Anladım + Hatırlatma! + OONI, gönderdiğiniz ölçüm verilerini ağ bilgilerinizle birlikte herkese açık olarak yayınlar. + İnternet bağlantınızı izleyen herkes News Media Scan uygulamasını çalıştırdığınızı görebilir. + Şu anda bulunduğunuz ülkede yasaklanmış olabilecek haber sitelerini denetleyeceksiniz. + Anladım + Ayrıntılı bilgi alın + Sürpriz sınav + Doğru + Yanlış + Geri dön + Devam et + Soru 1/2 + İnternetim izleniyorsa, News Media Scan çalıştırdığım anlaşılabilir. + Uyarı + News Media Scan bir kişisel gizlilik sağlama aracı değildir. İnternet işlemlerinizi izleyenler çalıştırdığınız uygulamaları görebilir. + Soru 2/2 + News Media Scan uygulamasını çalıştırdığımda topladığım veriler herkese açık olarak yayınlanır. + Uyarı + İnternet sansürü şeffaflığını sağlamak için tüm News Media Scan kullanıcılarının ağ verileri otomatik olarak yayınlanır (ayarlardan kapatılmadıkça). + Otomatik sınama + Lütfen İnternet sansürünün News Media Scan tarafından günlük olarak ölçülebilmesi için otomatik sınamayı açın.\n\nEndişelenmeyin, pil kullanımına dikkat edeceğiz.\n\nOtomatik sınamayı istediğiniz zaman ayarlardan kapatabilirsiniz. + Çökme bildirimleri + News Media Scan uygulamasını iyileştirmek için, sorun çıktığında kişisel veri içermeyen anonim çökme bildirimleri almak istiyoruz.\n\nÇökme bildirimlerinin OONI geliştirme ekibine gönderilmesini ister misiniz? + Evet + Hayır + Varsayılan ayarlar + Toplanan ve yayınlanan veriler şunlardır: + Ülke kodu (Örnek: Türkiye için TR) + Ağ bilgileri (otonom sistem numarası ile) + Sınama tarihi ve saati + IP adresinizi ya da kim olduğunuzu ortaya çıkarabilecek bilgileri yayınlamamak için elimizden geleni yapıyoruz.\n\nAyrıntılı bilgi almak için [OONI veri işleme ilkesi](https://ooni.io/about/data-policy/) bölümüne bakabilirsiniz. + OONI Probe uygulamasını geliştirmemiz için \"Tamam\" üzerine dokunarak, çökme bildirimini bizimle paylaşın. + Başlayalım + Varsayılanları değiştir + Pano + Çalıştır + Yok + Çalıştır + Son sınama: + Yaklaşık: + Siteleri seçin + Çalışıyor: + Yaklaşık kalan süre: + %1$s saniye + Sınama hazırlanıyor + Öngörülen bitiş süresi hesaplanıyor + Günlüğü görüntüle + Günlüğü kapat + Sınama durduruluyor… + Bekleyen sınamalar tamamlanıyor. Lütfen bekleyin… + Kullanılan vekil sunucu + Ayrıntılar için karta dokunun + ~%1$ss + Haber medyası sitelerinin engellenme denetimi + OONI [site bağlantısı sınaması](https://ooni.org/nettest/web-connectivity/) özelliğini kullanarak sitelerin engellenip engellenmediğini denetleyebilirsiniz.\n\nÇalıştır üzerine her tıkladığınızda, Citizen Lab [küresel](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) ve [ülkeye özel](https://github.com/citizenlab/test-lists/tree/master/lists) sınama listelerindeki çeşitli siteler denetlenir.\n\nBelirli siteleri sınamak için siteleri seçin düğmesine tıklayın ya da bu kartın ayarlarından kategoriyi ya da siteleri seçin. \n\nBu sınama sitelerin DNS müdahalesi, TCP/IP engelleme ya da görünmez vekil sunucu ile engellenip engellenmediğini ortaya çıkarır.\n\nSonuçlarınız [OONI Explorer](https://explorer.ooni.org/world/) ve [OONI API](https://api.ooni.io/) üzerinde yayınlanır. + OONI [site bağlantısı sınaması](https://ooni.org/nettest/web-connectivity/) özelliğini kullanarak sitelerin engellenip engellenmediğini denetleyebilirsiniz.\n\nSınama ile Citizen Lab [küresel](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) ve [ülkeye özel](https://github.com/citizenlab/test-lists/tree/master/lists) sınama listelerindeki siteler denetlenir.\n\nBu sınama sitelerin DNS müdahalesi, TCP/IP engelleme ya da görünmez vekil sunucu ile engellenip engellenmediğini ortaya çıkarır.\n\nSonuçlarınız [OONI Explorer](https://explorer.ooni.org/world/) ve [OONI API](https://api.ooni.io/) üzerinde yayınlanır. + Ağınızın hızını ve başarımını ölçün + [NDT](https://ooni.org/nettest/ndt/) sınaması ile ağınızın hızını ve başarımını ölçebilirsiniz.\n\n[DASH](https://ooni.org/nettest/dash/) sınaması ile görüntü akış başarımını ölçebilirsiniz.\n\nBu sınamalar sırasında ağınızın hızına göre belirlenen miktarda çeşitli veriler aktarılır.\n\nSonuçlarınız [OONI Explorer](https://explorer.ooni.org/world/) ve [OONI API](https://api.ooni.io/) üzerinde yayınlanır.\n\nBildirim: Bu sınamalar üçüncü tarafların sunucuları üzerinden yapılır. Bu nedenle IP adresinizin kaydedilmeyeceğini garanti edemeyiz. + Bu bölümdeki sınamaları yaparak şu bilgileri edinebilirsiniz:\n\n- Ağınızın hızını ve başarımını ölçebilirsiniz ([NDT](https://ooni.org/nettest/ndt/) sınaması)\n- Görüntü aktarma başarımını ölçebilirsiniz ([DASH](https://ooni.org/nettest/dash/) sınaması)\n- Ağınızdaki [ara aygıt teknolojilerini](https://ooni.org/support/glossary/#middlebox) öğrenebilirsiniz ([HTTP geçersiz istek satırı](https://ooni.org/nettest/http-invalid-request-line/) ve [HTTP üst bilgi değişikliği](https://ooni.org/nettest/http-header-field-manipulation/) sınamaları)\n\nBu sınamalar sırasında ağ hızınıza göre değişen bir miktarda veri aktarılır.\n\nSınama sonuçlarınız [OONI Explorer](https://explorer.ooni.org/) ve [OONI API](https://api.ooni.io/) üzerinde yayınlanır.\n\n**Sorumluluk reddi:** [NDT](https://ooni.org/nettest/ndt/) ve [DASH](https://ooni.org/nettest/dash/) sınamaları, [Measurement Lab (M-Lab)](https://www.measurementlab.net/) tarafından sağlanan üçüncü taraf sunucular kullanılarak gerçekleştirilir. Bu sınamaları yaptığınızda, OONI Probe ayarlarınızdan bağımsız olarak IP adresiniz M-Lab tarafından alınır ve yayınlanır (araştırma amacıyla). Verilerinizin M-Lab tarafından kullanılması hakkında ayrıntılı bilgi almak için [kişisel gizlilik duyurusuna](https://www.measurementlab.net/privacy/) bakabilirsiniz. + Ağınızdaki ara kutuları bulun + İnternet hizmeti sağlayıcıları sıklıkla bazı ağ uygulamaları için (ön bellekleme gibi) çeşitli aygıtlar (ara kutular) kullanır. Bazen bu ara kutular İnternet sansürü ve izlemesi için kullanılır.\n\nOONI [HTTP geçersiz istek satırı](https://ooni.org/nettest/http-invalid-request-line/) ve [HTTP üst bilgi alanı değişikliği](https://ooni.org/nettest/http-header-field-manipulation/) sınamalarını kullanarak ara kutuları bulabilirsiniz.\n\nSonuçlarınız [OONI Explorer](https://explorer.ooni.org/world/) ve [OONI API](https://api.ooni.io/) üzerinde yayınlanır. + Anlık ileti uygulamalarının engellenip engellenmediğini anlayın + [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/) ve [Signal](https://ooni.org/nettest/signal) uygulamalarının engellenip engellenmediğini kontrol edebilirsiniz.\n\nSonuçlarınız [OONI Explorer](https://explorer.ooni.org/world/) ve [OONI API](https://api.ooni.io/) üzerinde yayınlanır. + Sansürü aşma araçları engellemesini sınayın + [Psiphon](https://ooni.org/nettest/psiphon/) ve [Tor](https://ooni.org/nettest/tor/) ya da [RiseupVPN](https://ooni.org/nettest/riseupvpn/) engelleniyor mu öğrenin.\n\nSonuçlarınız [OONI Explorer](https://explorer.ooni.org/) ve [OONI API](https://api.ooni.io/) sayfasında yayınlanır. + Yeni deneysel sınamaları çalıştır + OONI ekibi tarafından geliştirilmiş yeni deneysel sınamaları çalıştırın:\n%1$s\n\nSonuçlarınız [OONI Explorer](https://explorer.ooni.org/) ve [OONI API](https://api.ooni.io/) üzerinde yayınlanır. + Şu sınamalar yalnızca otomatik sınamanın bir parçası olarak çalıştırılacak: + Kapatılmış sınamalar + Gbit/s + Mbit/s + kbit/s + ms + YOK + Bilinmiyor + Sınama sonuçları + Sınama sonuçları + Sınamalar + Ağlar + Veri kullanımı + Süzgeç sınamaları + Tüm sınamalar + Siteler + Ara kutular + Başarım + Anlık ileti + Sansürü aşma + Deneysel + Henüz bir sınama yapılmamış. Birini deneyin! + %1$s engellenmiş + %1$s engellenmiş + %1$s sınanmış + %1$s sınanmış + Algılandı + Algılanmadı + Tamamlanamadı + %1$s engellenmiş + %1$s engellenmiş + %1$s erişilebilir + %1$s erişilebilir + %1$s engellenmiş + %1$s engellenmiş + %1$s kullanılabilir + %1$s kullanılabilir + Tamamlanmamış sonuç + Hata + Hatalı ölçüm + Sonuçlar yüklenmemiş + Tarih ve saat + + Ülke + Veri kullanımı + Toplam çalışma süresi + Wi-Fi + Mobil veri + İnternet yok + Başarısız olmuş + Sınanmış + Sınanmış + Engellenmiş + Engellenmiş + Site + Site + Erişilebilir + Erişilebilir + Görüntü + Kalite + Yükle + İndir + Gecikme + Algılandı + Algılanmadı + Tamamlanamadı + Sınanmış + Sınanmış + Engellenmiş + Engellenmiş + Erişilebilir + Erişilebilir + Uygulama + Uygulama + Sınanmış + Sınanmış + Engellenmiş + Engellenmiş + Çalışıyor + Çalışıyor + Araç + Araçlar + Çalışan dosya + Yöntem + Günlüğü görüntüle + Veri + Gezgin adresini kopyala + Gezgin adresini paylaş + Panoya kopyala + OONI Explorer üzerinde görüntüle + Tamamlanamadı + Bu sınamayı yeniden çalıştırmayı deneyebilirsiniz + Yeniden dene + Bu sınamanın nasıl yapıldığını [buradan](%1$s) öğrenebilirsiniz. + Erişilebilir + %1$s erişilebilir. + Engellenmiş olabilir + %1$s, %2$s ile engellenmiş gibi görünüyor.\n\nNot: Hatalı sonuçlar alınabilir. [Buradan](https://ooni.org/support/faq/#what-are-false-positives) ayrıntılı bilgi alabilirsiniz. + Sansürü aşma + **DNS müdahalesi** + **TCP/IP tabanlı engelleme** + **HTTP engelleme (bir engelleme sayfası görüntülenebilir)** + **HTTP engelleme (karşılanamayan HTTP istekleri)** + Mobil uygulama + Tamam + Tamamlanamadı + WhatsApp web + Tamam + Tamamlanamadı + Kayıt + Tamam + Tamamlanamadı + Çalışıyor + Bu sınama sırasında WhatsApp bağlantı noktaları, kayıt hizmeti ve internet arayüzü (web.whatsapp.com) ile sorunsuz bağlantı kuruldu. + Engellenmiş olabilir + WhatsApp engellenmiş gibi görünüyor. + Mobil uygulama + Tamam + Tamamlanamadı + Telegram web + Tamam + Tamamlanamadı + Çalışıyor + Bu sınama sırasında Telegram bağlantı noktaları ve internet arayüzü (web.telegram.org) ile sorunsuz bağlantı kuruldu. + Engellenmiş olabilir + Telegram engellenmiş gibi görünüyor. + TCP bağlantıları + Tamam + Tamamlanamadı + DNS sorguları + Tamam + Tamamlanamadı + Çalışıyor + Bu sınama sırasında Facebook bağlantı noktalarıyla sorunsuz bağlantı kuruldu ve Facebook IP adresleri çözümlendi. + Engellenmiş olabilir + Facebook Messenger engellenmiş gibi görünüyor. + Engellenmiş olabilir + Signal engellenmiş gibi görünüyor. + Çalışıyor + Bu sınama, Signal uç noktaları ile sorunsuz bağlantı kurdu. + Herhangi bir ara kutu algılanmadı + Sunucularımız ile bağlantı kurulurken herhangi bir ağ anormalliği ile karşılaşılmadı. + Ağ müdahalesi + Sınama sunucularımız ile bağlantı kurulurken ağ trafiğine müdahale edildi.\n\nBu durum ağınızda sansür ve izleme amacıyla kullanılan bir ara kutu bulunduğunu gösterir. + Herhangi bir ara kutu algılanmadı + Sunucularımız ile bağlantı kurulurken herhangi bir ağ anormalliği ile karşılaşılmadı. + Ağ müdahalesi + Sınama sunucularımız ile bağlantı kurulurken ağ trafiğine müdahale edildi.\n\nBu durum ağınızda sansür ve izleme amacıyla kullanılan bir ara kutu bulunduğunu gösterir. + Gönderdiğiniz + Aldığınız + Yükleme + İndirme + Gidiş dönüş + Sunucu + Yeniden aktarım hızı + Hizmet dışı + Ortalama gidiş dönüş + En yüksek gidiş dönüş öngörüsü + MSS + Zaman aşımları + Görüntü akışlarında ara bellek kullanmadan en fazla %1$s çözünürlük elde edebilirsiniz. + Ortalama bit hızı + Kusursuz oynatma gecikmesi + Engellenmiş olabilir + Çalışıyor + [Psiphon](https://psiphon.ca/) engelleniyor gibi görünüyor. + Bir Psiphon bağlantısı kurabildik. [Psiphon](https://psiphon.ca/) çalışıyor olmalı. + Bootstrap süresi + %1$s s + Engellenmiş olabilir + Çalışıyor + [Tor](https://www.torproject.org/) engelleniyor gibi görünüyor. + Varsayılan Tor köprüleri ve/veya Tor dizin yöneticileri ile bağlantı kurabildik. [Tor](https://www.torproject.org/) çalışıyor olmalı. + Varsayılan köprüler + %1$s/%2$s tamam + Dizin belirleyiciler + %1$s/%2$s tamam + Ad + Adres + Tür + Bağlan + El sıkışma + Engellenmiş olabilir + Çalışıyor + [RiseupVPN](https://riseup.net/vpn) engelleniyor gibi görünüyor + RiseupVPN bootstrap sunucusu ve VPN geçitleri ile bağlantı kurabildik. [RiseupVPN](https://riseup.net/vpn) çalışıyor olmalı. + Bootstrap sunucusu + OpenVPN bağlantıları + Köprülenmiş bağlantılar + Engellenmiş + %1$s engellenmiş + %1$s engellenmiş + Tamam + Bu deneysel bir sınamadır. + Akış + Akış + Tamam + İptal + Hayır, bir daha sorma + Sil + Hata + Yeniden dene + Harika görünüyor + Hayır, teşekkürler + Şimdi değil + Yine de çalıştır + VPN kullanılmasın + Her zaman çalışsın + Sınama yapılamadı. Lütfen İnternet bağlantınızı denetleyin. + Adres listesi indirilemedi. Lütfen yeniden deneyin. + Lütfen yeni bir sınama başlatmadan önce sürmekte olan sınamaların tamamlanmasını bekleyin. + Bildirim izinleri gerekli. Lütfen telefonunuzun ayarlar bölümünden gerekli izinleri verdikten sonra OONI Probe uygulamanızdan açın. + Ayarlar bölümüne git + Bu ekran sınama sırasında kilitlidir. + Ham ölçüm verilerini indirebilmek için İnternet bağlantınız olmalıdır. + Sonuçlar yüklenmemiş + Bazı sınama sonuçları OONI sunucularına yüklenmemiş. OONI veri kümesine katkıda bulunmak isterseniz bu sonuçları yükleyin. + Yükle + %1$s yükleniyor... + OONI Probe, pil iyileştirmesi olmadan otomatik olarak çalışamaz. Yeniden denemek ister misiniz? + Lütfen VPN bağlantınızı kapatın. + OONI Probe uygulamasını VPN açıkken çalıştırırsanız, sınama sonuçları yanlış ülkeden geliyormuş gibi görünebilir. Lütfen VPN bağlantınızı kapatın. + Bazı ölçümler VPN üzerinden alınmıştır. + VPN kullanılıyorken alınan ölçümleri yüklerseniz, sınama sonuçları yanlış ülkeden geliyormuş gibi görünebilir. + Yüklendi + Hata günlüğünü görüntüle + İnternet sansürleri hakkında güncel bilgileri alın + Yeni sansür uygulamaları sırasında OONI Probe sınamaları yapmak ilginizi çeker mi? Yakınınızda bir İnternet sansürü olduğunu öğrendiğimizde size bildirmemiz için bildirimleri açabilirsiniz. + Sınamaların ayrıntısını arttırmak için konum izinlerine gerek duyulur. OONI yalnızca yaklaşık GPS konumunuzu kullanır. + Tüm sınama sonuçlarını silmek ister misiniz? + Bu sınamayı silmek ister misiniz? + Lütfen en az bir sınamayı açın + Lütfen bu alana sadece sayı yazın. + Sınamayı yinele + Bu sınama tamamlanamadı. Yeniden sınamak ister misiniz? + %1$s siteyi yeniden sınamak üzeresiniz. + Çalıştır + Emin misiniz? + Bu sayfadan ayrıldığınızda adresleriniz kaydedilmez. Bu sayfadan ayrılmak istediğinize emin misiniz? + El ile yükleme yapılabilsin mi? + Bu seçenek açıldığında, yayınlanmamış ölçümler el ile yeniden yüklenebilir. + + Hayır, teşekkürler + Yüklenemedi + %1$s/%2$s ölçüm yüklenemedi. Sorun ile ilgili günlük kayıtları OONI geliştiricileri ile paylaşıldı. + Günlük dosyası bulunamadı + Geçerli bir adres bulunamadı + JSON boş + Bu sınamayı durdurmak istediğinize emin misiniz? + Bu işlem şu anda yapılmakta olan sınamayı durduracak. + Sınamalar otomatik olarak çalıştırılsın mı? + Otomatik sınamayı açarak, OONI ölçümlerinin düzenli olarak yapılmasına katkıda bulunacaksınız. + Lütfen uygulamanın arka planda çalışmasına izin verin. + Beni hatırla + Panoya kopyalandı + Yüklenmemiş + Yükle + Bazıları yüklenmemiş + Tümünü yükle + Haber medyası siteleri + Anlık ileti + Ara kutular + Başarım + Sansürü aşma + Deneysel + HTTP geçersiz istek satırı sınaması + HTTP üst bilgi değişikliği sınaması + Site bağlantısı sınaması + NDT hız sınaması + DASH akış sınaması + WhatsApp sınaması + Telegram sınaması + Facebook messenger sınaması + Psiphon sınaması + Tor sınaması + RiseupVPN sınaması + Signal sınaması + Ayarlar + Sınama süresi için belirlediğiniz süre çok az. + News Media Scan hakkında + Bu uygulama Deutsche Welle (DW) ve OONI arasındaki yakın işbirliğinin ürünüdür.\n\n_DW hakkında:_ Özgür beyinler için tarafsız bilgi; DW markasının sözü budur. Bağımsız bir medya şirketi olarak Almanya\'nın uluslararası haber yayıncısı, Dünya üzerinde her yerde bulunan insanları bilgilendirir. DW, 32 dilde programlarıyla Dünya\'nın dört bir yanındaki insanları TV, radyo, İnternet ve sosyal medya aracılığıyla birbirine bağlıyor.\n\nAyrıntılı bilgi almak için:[ DW hakkında](https://corporate.dw.com/en/about-dw/s-30688)\n\n_OONI hakkında:_ 2012 yılında kurulan Açık ağ izleme gözlemevi (Open Observatory of Network Interference, OONI), Dünya çapında İnternet sansürünü belgeleme konusunda merkezi olmayan çabaları güçlendirmeyi amaçlayan, kar amacı gütmeyen bir ücretsiz yazılım projesidir. Küresel topluluğu sayesinde, 200 üzerindeki ülkede [bir milyardan fazla ağ ölçümü](https://explorer.ooni.org/) yayınlandı ve Dünya çapındaki İnternet sansürü uygulamalarını ortaya çıkardı.\n\nKullandığınız ağlardan veri sağlayarak İnternet özgürlüğü hareketinin bir parçası olun. + Ayrıntılı bilgi alın + Günlük + Raporlar + OONI veri işleme ilkesi + Bildirimler + Açık + Sınamanın tamamlandığı bildirilsin + Haber akışı + Otomatik sınama + Sınamalar otomatik olarak çalıştırılsın + Otomatik sınama sayısı: %1$s. + Son otomatik sınama: %1$s. + Yalnızca Wi-Fi kullanılırken + Yalnızca şarj edilirken + Otomatik sınama açıldığında, OONI Probe sınamaları günde birkaç kez otomatik olarak çalışır. Sınama sonuçlarınız otomatik olarak OONI Explorer üzerinde yayınlanır: https://explorer.ooni.org/\n\nÖnemli: Etkin bir VPN bağlantınız varsa, OONI Probe sınamaları otomatik olarak çalıştırmaz. Otomatik OONI Probe sınaması için lütfen VPN bağlantınızı kapatın. Ayrıntılı bilgi almak için https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn adresine bakabilirsiniz + Paylaşım + Sonuçlar otomatik olarak yayınlansın + Sonuçları el ile yükle + Ağ bilgileri katılsın + Yaklaşık coğrafi konum katılsın + IP adresim katılsın + Ülke kodu katılsın + Bu bilgi ölçümlerin hangi ülkeden (Türkiye için TR gibi) yapıldığını belirlemek için istenmektedir. Bu seçeneği kapatmak istediğinize emin misiniz? + Sonuçları yayınlayarak ağ müdahalelerinin daha görünür hale gelmesine yardım ederek OONI topluluğuna destek olursunuz.\n\nAğ bilgileri (Otonom Sistem Numarası gibi) İnternet hizmeti sağlayıcılarını belirlemek için gereklidir. + Sınama seçenekleri + Yukarıdaki sınama ayarları ile yapılandırdığınız şey (örneğin WhatsApp sınamasını kapatmak), el ile çalıştırılan sınamaların yanında otomatik olarak çalıştırılan sınamalara da (otomatik sınama açılmışsa) uygulanır. + Uzun süreli sınama + Arka planda uzun süreli sınama yapılsın mı? + Gizlilik + Çökme bildirimleri gönderilsin + Gelişmiş + Koyu kip + Hata ayıklama günlükleri + Son günlükleri görüntüle + Dil ayarı + Dil seçin + Araya her zaman etki alanı eklensin (domain fronting) + Arka uç vekil sunucusu + Vekil sunucu + Yok + Psiphon + Özel vekil sunucu + Özel vekil sunucu adresi + Özel vekil sunucu iletişim kuralı + Bağlantı + Sunucu adı + Bağlantı noktası + Kimlik doğrulama bilgileri (isteğe bağlı) + Kullanıcı adı + Parola + Psiphon için özel vekil sunucu kullanılsın + OONI Probe uygulamasını kullanamıyor musunuz? Olası OONI Probe engellemesini aşmak için [Psiphon](https://psiphon.ca/) kullanmayı deneyin. Alternatif olarak özel bir vekil sunucu kullanabilirsiniz. + Sınama süresi sınırlansın + Sınama süresi + Sınanacak site kategorileri + %1$s kategori açık + Düzenle + Tümünü bırak + Tümünü seç + Kaydet + Kaydedilmemiş değişiklikler + Açılmış kategorilerde bazı değişiklikler yaptınız. Bunları kaydetmek ister misiniz? + Kaydet + Yok say + Sınanacak siteleri seçin + Adres + Herhangi bir adres yazılmamış + Çalıştır + Site ekle + Kalıptan yükle + Sınanan site sayısı (tümü için 0 yazın) + WhatsApp sınaması + Telegram sınaması + Facebook Messenger sınaması + Signal sınaması + HTTP geçersiz istek satırı sınamasını çalıştır + HTTP üst bilgi değişikliği sınamasını çalıştır + NDT hız testini çalıştır + NDT sunucusu otomatik olarak seçilsin + NDT sunucusu adresi + NDT sunucusu bağlantı noktası + DASH akış sınamasını çalıştır + DASH sunucusu otomatik olarak seçilsin + DASH sunucusu + DASH sunucusu bağlantı noktası + Psiphon sınaması + Tor sınaması + RiseupVPN sınaması + VPN kullanılırken uyarılsın + Destek ekibine e-posta gönder + Lütfen yaşadığınız sorunu anlatın: + Lütfen uygulama hakkındaki bilgiler ve iOS sürümünü yazarak bugs@openobservatory.org adresine bir e-posta gönderin. E-posta adresimizi kopyalamak için aşağıdaki \"Panoya kopyala\" seçeneğine dokunun. + Geçerli uygulama dili: %1$s + Dil + Depolama kullanımı + Kullanılan depolama + Sil + Temizle + Aygıtınızdaki tüm OONI ölçümlerini silmek üzeresiniz. Yüklenmiş ise ölçümlere hala [OONI Explorer](https://explorer.ooni.org) üzerinden erişilebilir + Çalışmayı tamamladı + Sınamayı durdur + Yansı denensin + Yükleniyor... + Bilinmeyen bir sorun çıktı. Lütfen bu sayfayı yeniden yükleyin. + OONI Probe sınamasını başlatmak üzeresiniz. + %1$s adres + Sınama adı + Sınama ayrıntıları + Çalıştır + Güncel değil + Bu sınamayı yapmak için daha yeni bir OONI Probe sürümü kullanmalısınız. + Güncelle + Kapat + Parametre geçersiz + OONI Run bağlantısı bozuk ya da uygulamanız eski. + Örnek siteler üzerinde rastgele bir sınama yapılacak. + Lütfen OONI Run bağlantısına dokunmadan önce sürmekte olan sınamanın tamamlanmasını bekleyin. + Devamını görüntüle > + Devamını gizle > + Uyuşturucu ve alkol + Din + Porno + Kışkırtıcı giyim + Politik eleştiri + İnsan hakları sorunları + Çevre + Terörizm ve militanlar + Nefret söylemi + Haber yayın organları + Cinsel eğitim + Kamu sağlığı + Kumar + Sansürü aşma araçları + Çevrim içi arkadaşlık + Sosyal ağ + LGBTQ+ + Dosya paylaşımı + Bilgisayar korsanlığı araçları + İletişim araçları + Ortam paylaşma + Site barındırma ve günlük yayınlama + Arama motorları + Oyun + Kültür + Ekonomi + Hükümet + E-ticaret + İçerik denetimi + Hükümetler arası kuruluşlar + Çeşitli içerik + Uyuşturucu ve alkol kullanımı ve satışı + Dini konular, destekleyici ve eleştirel + Pornografik içerik + Kışkırtıcı giyim ve açık giyinen kadınların tasvirleri + Eleştirel politik bakış açısı + İnsan hakları sorunları + Çevre konuları üzerine tartışmalar + Terörizm, askeri şiddet ya da ayrılıkçı hareketler + Belirli grupların, ırk, cinsiyet, cinsellik ya da diğer özelliklerine göre aşağılanması + Ana haber siteleri, bölgesel haber siteleri ve bağımsız medya + Doğum kontrolu, cinsel yolla bulaşan hastalıklar, tecavüz önleme ve kürtaj gibi cinsel sağlık konuları + COVID-19, HIV/AIDS, Ebola gibi kamu sağlığı konuları + Çevrim içi kumar ve bahis + Anonimleşme, sansürü aşma ve şifreleme + Çevrim içi arkadaşlık siteleri + Çevrim içi sosyal ağ araç ve platformları + LGBTQ+ ile ilgili konuları tartışma toplulukları (pornografi dışında) + Bulut tabanlı dosya depolama, torrentler ve P2P gibi dosya paylaşımı + Bilgisayar güvenliği araçları ve haberler + VoIP, ileti gönderme ve internet e-postası gibi bireysel ve grup iletişimi araçları + Görüntü, ses ve fotoğraf paylaşımı + Site barındırma ve diğer çevrim içi yayın organları + Arama motorları ve mecralar + Çevrim içi oyunlar ve oyun platformları (kumar siteleri dışında) + Tarih, edebiyat, müzik, film, hiciv ve mizah gibi eğlence konuları + Genel ekonomik gelişim ve güç konuları + Ordu ile birlikte, hükümetin yönettiği siteler + Ticari hizmet ve ürünler + Denetim için kullanılan iyi niyetli ya da bilinçsiz içerik + Birleşmiş Milletler gibi hükümetlerarası kuruluşlar + Henüz kategorize edilmemiş siteler + Yeniden sorma + Sınama ilerlemesi bildirimlerini aç + OONI Probe sınama ilerlemesiyle ilgili bildirimleri açmak ve bildirim çubuğunda süren sınamaları görüntülemek ister misiniz? + Bağlantı yükleniyor + Hata + Bağlantı kurulumu iptal edildi + %s tarafından %s zamanında oluşturuldu\n\n%s + Kaldırma bağlantısı + Güncellemeleri değerlendirin + Önceki değişiklikler + Bu bağlantıyı yalnızca geliştiricisinin gönderdiği özgün bağlantıdan yeniden kurabilirsiniz. + Ayrıntıları görüntüle + Siteler otomatik olarak sınansın + Hata + OONI sınamaları + OONI çalıştırma bağlantıları + Sınama tamamlandı. Sonuçları görüntülemek için dokunun. + SÜRESİ GEÇMİŞ + GÜNCELLENDİ + Yeni bağlantı kur + Yazar: + Ayarları sına + Güncellemeler otomatik olarak kurulsun + Sınamalar otomatik olarak çalıştırılsın + Bağlantı kuruldu + Kurulum bağlantısı + Bağlantı kurulumu iptal edildi + GÜNCELLEMELER + %s adresi sına + Adresleri sına + Bağlantı güncellemesi + Bağlantılar güncellendi + Bağlantı güncellemesi (%1$s / %2$s) + GÜNCELLE VE TAMAMLA (%1$s / %2$s) + GÜNCELLE (%1$s of %2$s) + Güncelle + Sınamaları çalıştır + Sınamaları çalıştır + Lütfen çalıştırılacak sınamaları seçin + %s sınamayı çalıştır + Çalıştırılacak sınamaları seçin + Tüm sınamaları seç + Tüm sınamaları bırak + Bağlantı yükleniyor + Bağlantı güncellemeleri yükleniyor + Bağlantı güncellemeleri hazır + Gözden geçir + %s giriş + Geri + refresh + Daralt + Genişlet + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Ocak + Şubat + Mart + Nisan + Mayıs + Haziran + Temmuz + Ağustos + Eylül + Ekim + Kasım + Aralık + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Tamamlanamadı + Tamam + Anormallik + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Günlükler + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN + diff --git a/probe-mobile/ar/Localizable.strings b/probe-mobile/ar/Localizable.strings index 0a3c035..7828d19 100644 --- a/probe-mobile/ar/Localizable.strings +++ b/probe-mobile/ar/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "مراجعة"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "الرجوع"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "طي"; +"Common_Expand" = "تمديد"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "جانفي"; +"Common_Months_February" = "فيفري"; +"Common_Months_March" = "مارس"; +"Common_Months_April" = "أفريل"; +"Common_Months_May" = "ماي"; +"Common_Months_June" = "جوان"; +"Common_Months_July" = "جويلية"; +"Common_Months_August" = "أوت"; +"Common_Months_September" = "سبتمبر"; +"Common_Months_October" = "أكتوبر"; +"Common_Months_November" = "نوفمبر"; +"Common_Months_December" = "ديسمبر"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "فشل"; +"Measurements_Ok" = "موافق"; +"Measurements_Anomaly" = "شذوذ"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "السجلات"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "جاري التجريب"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "الشبكة الافتراضية الخاصة"; diff --git a/probe-mobile/ar/strings.json b/probe-mobile/ar/strings.json index da1a544..bfa7758 100644 --- a/probe-mobile/ar/strings.json +++ b/probe-mobile/ar/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "مراجعة", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "الرجوع", + "Common_Refresh": "refresh", + "Common_Collapse": "طي", + "Common_Expand": "تمديد", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "جانفي", + "Common_Months_February": "فيفري", + "Common_Months_March": "مارس", + "Common_Months_April": "أفريل", + "Common_Months_May": "ماي", + "Common_Months_June": "جوان", + "Common_Months_July": "جويلية", + "Common_Months_August": "أوت", + "Common_Months_September": "سبتمبر", + "Common_Months_October": "أكتوبر", + "Common_Months_November": "نوفمبر", + "Common_Months_December": "ديسمبر", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "فشل", + "Measurements_Ok": "موافق", + "Measurements_Anomaly": "شذوذ", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "السجلات", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "جاري التجريب", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "الشبكة الافتراضية الخاصة" } \ No newline at end of file diff --git a/probe-mobile/ar/strings.xml b/probe-mobile/ar/strings.xml index 0e4bce1..6c1ac6b 100644 --- a/probe-mobile/ar/strings.xml +++ b/probe-mobile/ar/strings.xml @@ -581,4 +581,59 @@ Link updates ready مراجعة %s inputs + الرجوع + refresh + طي + تمديد + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + جانفي + فيفري + مارس + أفريل + ماي + جوان + جويلية + أوت + سبتمبر + أكتوبر + نوفمبر + ديسمبر + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + فشل + موافق + شذوذ + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + السجلات + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + جاري التجريب + Manual Run + Auto Run + الشبكة الافتراضية الخاصة diff --git a/probe-mobile/as/Localizable.strings b/probe-mobile/as/Localizable.strings index da16bf0..445ea20 100644 --- a/probe-mobile/as/Localizable.strings +++ b/probe-mobile/as/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/as/strings.json b/probe-mobile/as/strings.json index f433883..20880df 100644 --- a/probe-mobile/as/strings.json +++ b/probe-mobile/as/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/as/strings.xml b/probe-mobile/as/strings.xml index 0bbc553..d2645e0 100644 --- a/probe-mobile/as/strings.xml +++ b/probe-mobile/as/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/be/Localizable.strings b/probe-mobile/be/Localizable.strings index 2c2a4c0..1fb924e 100644 --- a/probe-mobile/be/Localizable.strings +++ b/probe-mobile/be/Localizable.strings @@ -86,7 +86,7 @@ "TestResults.Overview.FilterTests.AllTests" = "All Tests"; "TestResults.Overview.FilterTests.Websites" = "Websites"; "TestResults.Overview.FilterTests.MiddleBoxes" = "Middleboxes"; -"TestResults.Overview.FilterTests.Performance" = "Performance"; +"TestResults.Overview.FilterTests.Performance" = "Эфектыўнасць"; "TestResults.Overview.FilterTests.InstantMessaging" = "Instant Messaging"; "TestResults.Overview.FilterTests.Circumvention" = "Circumvention"; "TestResults.Overview.FilterTests.Experimental" = "Experimental"; @@ -331,7 +331,7 @@ "Test.Websites.Fullname" = "Websites"; "Test.InstantMessaging.Fullname" = "Instant Messaging"; "Test.Middleboxes.Fullname" = "Middleboxes"; -"Test.Performance.Fullname" = "Performance"; +"Test.Performance.Fullname" = "Эфектыўнасць"; "Test.Circumvention.Fullname" = "Circumvention"; "Test.Experimental.Fullname" = "Experimental"; "Test.HTTPInvalidRequestLine.Fullname" = "HTTP Invalid Request Line Test"; @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Вярнуцца і адрэдагаваць"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Згарнуць"; +"Common_Expand" = "Разгарнуць"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Журналы"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/be/strings.json b/probe-mobile/be/strings.json index fb42f63..64d7d78 100644 --- a/probe-mobile/be/strings.json +++ b/probe-mobile/be/strings.json @@ -87,7 +87,7 @@ "TestResults.Overview.FilterTests.AllTests": "All Tests", "TestResults.Overview.FilterTests.Websites": "Websites", "TestResults.Overview.FilterTests.MiddleBoxes": "Middleboxes", - "TestResults.Overview.FilterTests.Performance": "Performance", + "TestResults.Overview.FilterTests.Performance": "Эфектыўнасць", "TestResults.Overview.FilterTests.InstantMessaging": "Instant Messaging", "TestResults.Overview.FilterTests.Circumvention": "Circumvention", "TestResults.Overview.FilterTests.Experimental": "Experimental", @@ -332,7 +332,7 @@ "Test.Websites.Fullname": "Websites", "Test.InstantMessaging.Fullname": "Instant Messaging", "Test.Middleboxes.Fullname": "Middleboxes", - "Test.Performance.Fullname": "Performance", + "Test.Performance.Fullname": "Эфектыўнасць", "Test.Circumvention.Fullname": "Circumvention", "Test.Experimental.Fullname": "Experimental", "Test.HTTPInvalidRequestLine.Fullname": "HTTP Invalid Request Line Test", @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Вярнуцца і адрэдагаваць", + "Common_Refresh": "refresh", + "Common_Collapse": "Згарнуць", + "Common_Expand": "Разгарнуць", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Журналы", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/be/strings.xml b/probe-mobile/be/strings.xml index 71f985d..65b7aef 100644 --- a/probe-mobile/be/strings.xml +++ b/probe-mobile/be/strings.xml @@ -88,7 +88,7 @@ All Tests Websites Middleboxes - Performance + Эфектыўнасць Instant Messaging Circumvention Experimental @@ -333,7 +333,7 @@ Websites Instant Messaging Middleboxes - Performance + Эфектыўнасць Circumvention Experimental HTTP Invalid Request Line Test @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Вярнуцца і адрэдагаваць + refresh + Згарнуць + Разгарнуць + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Журналы + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/be_BY/Localizable.strings b/probe-mobile/be_BY/Localizable.strings index 9615ad2..fba1dc1 100644 --- a/probe-mobile/be_BY/Localizable.strings +++ b/probe-mobile/be_BY/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Няўдала"; +"Measurements_Ok" = "Так"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/be_BY/strings.json b/probe-mobile/be_BY/strings.json index 4c01744..90e30fe 100644 --- a/probe-mobile/be_BY/strings.json +++ b/probe-mobile/be_BY/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Няўдала", + "Measurements_Ok": "Так", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/be_BY/strings.xml b/probe-mobile/be_BY/strings.xml index 0aaeb6b..f29f4c6 100644 --- a/probe-mobile/be_BY/strings.xml +++ b/probe-mobile/be_BY/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Няўдала + Так + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/bn/Localizable.strings b/probe-mobile/bn/Localizable.strings index b8b1669..6e83e26 100644 --- a/probe-mobile/bn/Localizable.strings +++ b/probe-mobile/bn/Localizable.strings @@ -418,7 +418,7 @@ "Settings.Websites.CustomURL.URL" = "URL"; "Settings.Websites.CustomURL.NoURLEntered" = "No URLs entered"; "Settings.Websites.CustomURL.Run" = "চালনা"; -"Settings.Websites.CustomURL.Add" = "Add website"; +"Settings.Websites.CustomURL.Add" = "ওয়েবসাইট যোগ করুন"; "Settings.Websites.CustomURL.LoadFromTemplate" = "Load from template"; "Settings.Websites.TestCount" = "Number of tested websites (0 means all)"; "Settings.InstantMessaging.TestWhatsApp" = "Test WhatsApp"; @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "পেছনে"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "সঙ্কুচিত"; +"Common_Expand" = "প্রসারিত"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "ব্যর্থ হয়েছে"; +"Measurements_Ok" = "ঠিক আছে"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "লগ"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "ভিপিএন"; diff --git a/probe-mobile/bn/strings.json b/probe-mobile/bn/strings.json index 17ba695..63b9def 100644 --- a/probe-mobile/bn/strings.json +++ b/probe-mobile/bn/strings.json @@ -419,7 +419,7 @@ "Settings.Websites.CustomURL.URL": "URL", "Settings.Websites.CustomURL.NoURLEntered": "No URLs entered", "Settings.Websites.CustomURL.Run": "চালনা", - "Settings.Websites.CustomURL.Add": "Add website", + "Settings.Websites.CustomURL.Add": "ওয়েবসাইট যোগ করুন", "Settings.Websites.CustomURL.LoadFromTemplate": "Load from template", "Settings.Websites.TestCount": "Number of tested websites (0 means all)", "Settings.InstantMessaging.TestWhatsApp": "Test WhatsApp", @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "পেছনে", + "Common_Refresh": "refresh", + "Common_Collapse": "সঙ্কুচিত", + "Common_Expand": "প্রসারিত", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "ব্যর্থ হয়েছে", + "Measurements_Ok": "ঠিক আছে", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "লগ", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "ভিপিএন" } \ No newline at end of file diff --git a/probe-mobile/bn/strings.xml b/probe-mobile/bn/strings.xml index 3fe276c..d014206 100644 --- a/probe-mobile/bn/strings.xml +++ b/probe-mobile/bn/strings.xml @@ -420,7 +420,7 @@ URL No URLs entered চালনা - Add website + ওয়েবসাইট যোগ করুন Load from template Number of tested websites (0 means all) Test WhatsApp @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + পেছনে + refresh + সঙ্কুচিত + প্রসারিত + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + ব্যর্থ হয়েছে + ঠিক আছে + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + লগ + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + ভিপিএন diff --git a/probe-mobile/br/Localizable.strings b/probe-mobile/br/Localizable.strings index e5789f1..b6bcd76 100644 --- a/probe-mobile/br/Localizable.strings +++ b/probe-mobile/br/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Kent"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "C'hwitet"; +"Measurements_Ok" = "MAT EO"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Marilhoù"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "O testiñ"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/br/strings.json b/probe-mobile/br/strings.json index ed75268..b8a2544 100644 --- a/probe-mobile/br/strings.json +++ b/probe-mobile/br/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Kent", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "C'hwitet", + "Measurements_Ok": "MAT EO", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Marilhoù", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "O testiñ", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/br/strings.xml b/probe-mobile/br/strings.xml index 6f62979..9e87dfa 100644 --- a/probe-mobile/br/strings.xml +++ b/probe-mobile/br/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Kent + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + C\'hwitet + MAT EO + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Marilhoù + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + O testiñ + Manual Run + Auto Run + VPN diff --git a/probe-mobile/bs/Localizable.strings b/probe-mobile/bs/Localizable.strings index faaceb7..4d97b9b 100644 --- a/probe-mobile/bs/Localizable.strings +++ b/probe-mobile/bs/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Nazad"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/bs/strings.json b/probe-mobile/bs/strings.json index b00ab19..cea57a9 100644 --- a/probe-mobile/bs/strings.json +++ b/probe-mobile/bs/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Nazad", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/bs/strings.xml b/probe-mobile/bs/strings.xml index ed21068..b1ddeb6 100644 --- a/probe-mobile/bs/strings.xml +++ b/probe-mobile/bs/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Nazad + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ca/Localizable.strings b/probe-mobile/ca/Localizable.strings index e072707..526bb95 100644 --- a/probe-mobile/ca/Localizable.strings +++ b/probe-mobile/ca/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Revisa"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Enrera"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Plega"; +"Common_Expand" = "Desplega"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "gener"; +"Common_Months_February" = "febrer"; +"Common_Months_March" = "març"; +"Common_Months_April" = "abril"; +"Common_Months_May" = "maig"; +"Common_Months_June" = "juny"; +"Common_Months_July" = "juliol"; +"Common_Months_August" = "agost"; +"Common_Months_September" = "setembre"; +"Common_Months_October" = "octubre"; +"Common_Months_November" = "novembre"; +"Common_Months_December" = "desembre"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Error"; +"Measurements_Ok" = "Correcte"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Registres"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Provant"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/ca/strings.json b/probe-mobile/ca/strings.json index e561a06..f17dbca 100644 --- a/probe-mobile/ca/strings.json +++ b/probe-mobile/ca/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Revisa", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Enrera", + "Common_Refresh": "refresh", + "Common_Collapse": "Plega", + "Common_Expand": "Desplega", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "gener", + "Common_Months_February": "febrer", + "Common_Months_March": "març", + "Common_Months_April": "abril", + "Common_Months_May": "maig", + "Common_Months_June": "juny", + "Common_Months_July": "juliol", + "Common_Months_August": "agost", + "Common_Months_September": "setembre", + "Common_Months_October": "octubre", + "Common_Months_November": "novembre", + "Common_Months_December": "desembre", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Error", + "Measurements_Ok": "Correcte", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Registres", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Provant", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/ca/strings.xml b/probe-mobile/ca/strings.xml index 3974372..b8d4541 100644 --- a/probe-mobile/ca/strings.xml +++ b/probe-mobile/ca/strings.xml @@ -581,4 +581,59 @@ Link updates ready Revisa %s inputs + Enrera + refresh + Plega + Desplega + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + gener + febrer + març + abril + maig + juny + juliol + agost + setembre + octubre + novembre + desembre + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Error + Correcte + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Registres + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Provant + Manual Run + Auto Run + VPN diff --git a/probe-mobile/cs/Localizable.strings b/probe-mobile/cs/Localizable.strings index 0a9da54..b719b58 100644 --- a/probe-mobile/cs/Localizable.strings +++ b/probe-mobile/cs/Localizable.strings @@ -322,7 +322,7 @@ "Modal.Autorun.Modal.Title" = "Would you like to run tests automatically?"; "Modal.Autorun.Modal.Text" = "By enabling automated testing, you will contribute OONI measurements on a regular basis."; "Modal.Autorun.Modal.Text.Android" = "Please allow the app to run in the background."; -"Modal.Autorun.Modal.Button.RemindLater" = "Remind me later"; +"Modal.Autorun.Modal.Button.RemindLater" = "Připomenout později"; "Toast.CopiedToClipboard" = "Copied to clipboard"; "Snackbar.ResultsNotUploaded.Text" = "Not uploaded"; "Snackbar.ResultsNotUploaded.Upload" = "Nahrávání"; @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Náhled"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Zpět"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Sbalit"; +"Common_Expand" = "Rozbalit"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Leden"; +"Common_Months_February" = "Únor"; +"Common_Months_March" = "Březen"; +"Common_Months_April" = "Duben"; +"Common_Months_May" = "Květen"; +"Common_Months_June" = "Červen"; +"Common_Months_July" = "Červenec"; +"Common_Months_August" = "Srpen"; +"Common_Months_September" = "Září"; +"Common_Months_October" = "Říjen"; +"Common_Months_November" = "Listopad"; +"Common_Months_December" = "Prosinec"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Selhalo"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Záznamy"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testování"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/cs/strings.json b/probe-mobile/cs/strings.json index b9d01ef..a883ba9 100644 --- a/probe-mobile/cs/strings.json +++ b/probe-mobile/cs/strings.json @@ -323,7 +323,7 @@ "Modal.Autorun.Modal.Title": "Would you like to run tests automatically?", "Modal.Autorun.Modal.Text": "By enabling automated testing, you will contribute OONI measurements on a regular basis.", "Modal.Autorun.Modal.Text.Android": "Please allow the app to run in the background.", - "Modal.Autorun.Modal.Button.RemindLater": "Remind me later", + "Modal.Autorun.Modal.Button.RemindLater": "Připomenout později", "Toast.CopiedToClipboard": "Copied to clipboard", "Snackbar.ResultsNotUploaded.Text": "Not uploaded", "Snackbar.ResultsNotUploaded.Upload": "Nahrávání", @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Náhled", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Zpět", + "Common_Refresh": "refresh", + "Common_Collapse": "Sbalit", + "Common_Expand": "Rozbalit", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Leden", + "Common_Months_February": "Únor", + "Common_Months_March": "Březen", + "Common_Months_April": "Duben", + "Common_Months_May": "Květen", + "Common_Months_June": "Červen", + "Common_Months_July": "Červenec", + "Common_Months_August": "Srpen", + "Common_Months_September": "Září", + "Common_Months_October": "Říjen", + "Common_Months_November": "Listopad", + "Common_Months_December": "Prosinec", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Selhalo", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Záznamy", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testování", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/cs/strings.xml b/probe-mobile/cs/strings.xml index d1834c9..4c08d47 100644 --- a/probe-mobile/cs/strings.xml +++ b/probe-mobile/cs/strings.xml @@ -324,7 +324,7 @@ Would you like to run tests automatically? By enabling automated testing, you will contribute OONI measurements on a regular basis. Please allow the app to run in the background. - Remind me later + Připomenout později Copied to clipboard Not uploaded Nahrávání @@ -581,4 +581,59 @@ Link updates ready Náhled %s inputs + Zpět + refresh + Sbalit + Rozbalit + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Leden + Únor + Březen + Duben + Květen + Červen + Červenec + Srpen + Září + Říjen + Listopad + Prosinec + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Selhalo + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Záznamy + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testování + Manual Run + Auto Run + VPN diff --git a/probe-mobile/de/Localizable.strings b/probe-mobile/de/Localizable.strings index a3c7cb7..333a40c 100644 --- a/probe-mobile/de/Localizable.strings +++ b/probe-mobile/de/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link Aktualisierungen bereit"; "Dashboard.Progress.ReviewLink.Action" = "Überprüfen"; "TestResults.TestCount" = "%s Eingaben"; +"Common_Back" = "Zurück"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Einklappen"; +"Common_Expand" = "Ausklappen"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Januar"; +"Common_Months_February" = "Februar"; +"Common_Months_March" = "März"; +"Common_Months_April" = "April"; +"Common_Months_May" = "Mai"; +"Common_Months_June" = "Juni"; +"Common_Months_July" = "Juli"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "Oktober"; +"Common_Months_November" = "November"; +"Common_Months_December" = "Dezember"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Fehlgeschlagen"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomalie"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Protokolle"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testvorgang"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/de/strings.json b/probe-mobile/de/strings.json index 613d6aa..71d24d2 100644 --- a/probe-mobile/de/strings.json +++ b/probe-mobile/de/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Lade Link Aktualisierung", "Dashboard.Progress.ReviewLink.Label": "Link Aktualisierungen bereit", "Dashboard.Progress.ReviewLink.Action": "Überprüfen", - "TestResults.TestCount": "%s Eingaben" + "TestResults.TestCount": "%s Eingaben", + "Common_Back": "Zurück", + "Common_Refresh": "refresh", + "Common_Collapse": "Einklappen", + "Common_Expand": "Ausklappen", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Januar", + "Common_Months_February": "Februar", + "Common_Months_March": "März", + "Common_Months_April": "April", + "Common_Months_May": "Mai", + "Common_Months_June": "Juni", + "Common_Months_July": "Juli", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "Oktober", + "Common_Months_November": "November", + "Common_Months_December": "Dezember", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Fehlgeschlagen", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomalie", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Protokolle", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testvorgang", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/de/strings.xml b/probe-mobile/de/strings.xml index 6fad555..a7251c4 100644 --- a/probe-mobile/de/strings.xml +++ b/probe-mobile/de/strings.xml @@ -581,4 +581,59 @@ Link Aktualisierungen bereit Überprüfen %s Eingaben + Zurück + refresh + Einklappen + Ausklappen + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Januar + Februar + März + April + Mai + Juni + Juli + August + September + Oktober + November + Dezember + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Fehlgeschlagen + OK + Anomalie + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Protokolle + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testvorgang + Manual Run + Auto Run + VPN diff --git a/probe-mobile/el/Localizable.strings b/probe-mobile/el/Localizable.strings index 7d703db..e9a154e 100644 --- a/probe-mobile/el/Localizable.strings +++ b/probe-mobile/el/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Ανασκόπηση"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Πίσω"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Σύμπτυξη"; +"Common_Expand" = "Ανάπτυξη"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Ιανουάριος"; +"Common_Months_February" = "Φεβρουάριος"; +"Common_Months_March" = "Μάρτιος"; +"Common_Months_April" = "Απρίλιος"; +"Common_Months_May" = "Μάης"; +"Common_Months_June" = "Ιούνιος"; +"Common_Months_July" = "Ιούλιος"; +"Common_Months_August" = "Αύγουστος"; +"Common_Months_September" = "Σεπτέμβριος"; +"Common_Months_October" = "Οκτώβριος"; +"Common_Months_November" = "Νοέμβριος"; +"Common_Months_December" = "Δεκέμβριος"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Απέτυχε"; +"Measurements_Ok" = "ΟΚ"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Αρχεία καταγραφής"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Δοκιμάζει"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/el/strings.json b/probe-mobile/el/strings.json index 636cf30..b809f63 100644 --- a/probe-mobile/el/strings.json +++ b/probe-mobile/el/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Ανασκόπηση", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Πίσω", + "Common_Refresh": "refresh", + "Common_Collapse": "Σύμπτυξη", + "Common_Expand": "Ανάπτυξη", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Ιανουάριος", + "Common_Months_February": "Φεβρουάριος", + "Common_Months_March": "Μάρτιος", + "Common_Months_April": "Απρίλιος", + "Common_Months_May": "Μάης", + "Common_Months_June": "Ιούνιος", + "Common_Months_July": "Ιούλιος", + "Common_Months_August": "Αύγουστος", + "Common_Months_September": "Σεπτέμβριος", + "Common_Months_October": "Οκτώβριος", + "Common_Months_November": "Νοέμβριος", + "Common_Months_December": "Δεκέμβριος", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Απέτυχε", + "Measurements_Ok": "ΟΚ", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Αρχεία καταγραφής", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Δοκιμάζει", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/el/strings.xml b/probe-mobile/el/strings.xml index 90ec5dc..033a94b 100644 --- a/probe-mobile/el/strings.xml +++ b/probe-mobile/el/strings.xml @@ -581,4 +581,59 @@ Link updates ready Ανασκόπηση %s inputs + Πίσω + refresh + Σύμπτυξη + Ανάπτυξη + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Ιανουάριος + Φεβρουάριος + Μάρτιος + Απρίλιος + Μάης + Ιούνιος + Ιούλιος + Αύγουστος + Σεπτέμβριος + Οκτώβριος + Νοέμβριος + Δεκέμβριος + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Απέτυχε + ΟΚ + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Αρχεία καταγραφής + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Δοκιμάζει + Manual Run + Auto Run + VPN diff --git a/probe-mobile/en/Localizable.strings b/probe-mobile/en/Localizable.strings index 1b81688..3145d21 100644 --- a/probe-mobile/en/Localizable.strings +++ b/probe-mobile/en/Localizable.strings @@ -306,6 +306,7 @@ "Modal.ReRun.Paragraph" = "This test has failed. Re-run the test?"; "Modal.ReRun.Websites.Title" = "You are about to re-test %@ websites."; "Modal.ReRun.Websites.Run" = "Run"; +"Modal.CustomURL.Title.NotSaved" = "Are you sure?"; "Modal.CustomURL.NotSaved" = "Your URLs will not be saved when you leave this screen. Are you sure you want to leave this screen?"; "Modal.ManualUpload.Title" = "Enable Manual Upload?"; "Modal.ManualUpload.Paragraph" = "This setting allows you to manually re-upload unpublished measurements."; @@ -466,6 +467,8 @@ "OONIRun.InvalidParameter.Msg" = "The OONI Run link is either malformed or your app is out of date."; "OONIRun.RandomSamplingOfURLs" = "You will test a random sample of websites."; "OONIRun.TestRunningError" = "Please wait for the test to finish running before tapping on an OONI Run link."; +"OONIRun.ReadMore" = "Read more >"; +"OONIRun.ReadLess" = "Read less >"; "CategoryCode.ALDR.Name" = "Drugs & Alcohol"; "CategoryCode.REL.Name" = "Religion"; "CategoryCode.PORN.Name" = "Pornography"; @@ -528,3 +531,106 @@ "CategoryCode.CTRL.Description" = "Benign or innocuous content used for control"; "CategoryCode.IGO.Description" = "Intergovernmental organizations including The United Nations"; "CategoryCode.MISC.Description" = "Sites that haven't been categorized yet"; +"Prompt.DontAskAgain" = "Don’t ask again"; +"Prompt.EnableTestProgressNotifications.Title" = "Enable test progress notifications"; +"Prompt.EnableTestProgressNotifications.Paragraph" = "Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer?"; +"LoadingScreen.Runv2.Message" = "Link Loading"; +"LoadingScreen.Runv2.Failure" = "Error"; +"LoadingScreen.Runv2.Canceled" = "Link installation cancelled"; +"Dashboard.Runv2.Overview.Description" = "Created by %s on %s\n\n%s"; +"Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; +"Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; +"Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.SeeMore" = "See More"; +"Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; +"Dashboard.RunV2.ManualUpdate.Error" = "Error"; +"Dashboard.RunV2.Ooni.Title" = "OONI Tests"; +"Dashboard.RunV2.Title" = "OONI Run Links"; +"Dashboard.RunV2.RunFinished" = "Run finished. Tap to view results."; +"Dashboard.RunV2.ExpiredTag" = "EXPIRED"; +"Dashboard.RunV2.UpdatedTag" = "UPDATED"; +"AddDescriptor.Title" = "Install New Link"; +"AddDescriptor.Author" = "Author:"; +"AddDescriptor.Settings" = "Test Settings"; +"AddDescriptor.AutoUpdate" = "Install updates automatically"; +"AddDescriptor.AutoRun" = "Run tests automatically"; +"AddDescriptor.Toasts.Installed" = "Link installed"; +"AddDescriptor.Action" = "Install Link"; +"AddDescriptor.Toasts.Canceled" = "Link installation cancelled"; +"DescriptorUpdate.Updates" = "UPDATES"; +"CustomWebsites.Fab.Text" = "Test %s URLs"; +"CustomWebsites.Fab.Default" = "Test URLs"; +"Dashboard.ReviewDescriptor.Title" = "Link Update"; +"Dashboard.ReviewDescriptor.Success" = "Link(s) updated"; +"Dashboard.ReviewDescriptor.Label" = "Link Update (%1$s of %2$s)"; +"Dashboard.ReviewDescriptor.Button.Last" = "UPDATE AND FINISH (%1$s of %2$s)"; +"Dashboard.ReviewDescriptor.Button.Default" = "UPDATE (%1$s of %2$s)"; +"Dashboard.ReviewDescriptor.Update" = "Update"; +"Dashboard.RunTests.Title" = "Run tests"; +"Dashboard.RunTests.RunButton.Default" = "Run Tests"; +"Dashboard.RunTests.RunButton.Empty" = "Please select test to run"; +"Dashboard.RunTests.RunButton.Label" = "Run %s test(s)"; +"Dashboard.RunTests.Description" = "Select the tests to run"; +"Dashboard.RunTests.SelectAll" = "Select all tests"; +"Dashboard.RunTests.SelectNone" = "Deselect all tests"; +"Dashboard.Progress.AddLink.Label" = "Link Loading"; +"Dashboard.Progress.UpdateLink.Label" = "Link updates loading"; +"Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; +"Dashboard.Progress.ReviewLink.Action" = "Review"; +"TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/en/strings.csv b/probe-mobile/en/strings.csv index 4f982d2..cb8ae36 100644 --- a/probe-mobile/en/strings.csv +++ b/probe-mobile/en/strings.csv @@ -1,10 +1,10 @@ Key,Text,Max length,Mobile,Desktop General.AppName,OONI Probe,,, Onboarding.WhatIsOONIProbe.Title,What is OONI Probe?,,, -Onboarding.WhatIsOONIProbe.Paragraph,"Your app for measuring internet censorship. - -Are websites and social media apps blocked? Is your internet connection unusually slow? - +Onboarding.WhatIsOONIProbe.Paragraph,"Your app for measuring internet censorship. + +Are websites and social media apps blocked? Is your internet connection unusually slow? + Run OONI Probe to find out!",,, Onboarding.WhatIsOONIProbe.GotIt,Got It,,, Onboarding.ThingsToKnow.Title,Heads-up!,,, @@ -27,14 +27,14 @@ Onboarding.PopQuiz.2.Question,"Every time I run OONI Probe, the network data I c Onboarding.PopQuiz.2.Wrong.Title,Warning,,, Onboarding.PopQuiz.2.Wrong.Paragraph,"To increase transparency of internet censorship, the network data of all OONI Probe users is automatically published (unless they opt-out in the settings).",,, Onboarding.AutomatedTesting.Title,Automated testing,,, -Onboarding.AutomatedTesting.Paragraph,"To measure internet censorship every day, please enable automated testing so that OONI Probe can run tests periodically. - -Don't worry, we'll be mindful of battery usage. - +Onboarding.AutomatedTesting.Paragraph,"To measure internet censorship every day, please enable automated testing so that OONI Probe can run tests periodically. + +Don't worry, we'll be mindful of battery usage. + You can disable automated testing from the settings at any time.",,, Onboarding.Crash.Title,Crash Reporting,,, -Onboarding.Crash.Paragraph,"To improve OONI Probe we would like to collect anonymous crash reports when the app does not work properly. - +Onboarding.Crash.Paragraph,"To improve OONI Probe we would like to collect anonymous crash reports when the app does not work properly. + Would you like to opt-in to submitting crash reports to the OONI development team?",,, Onboarding.Crash.Button.Yes,Yes,,, Onboarding.Crash.Button.No,No,,, @@ -43,8 +43,8 @@ Onboarding.DefaultSettings.Header,We collect and publish:,,, Onboarding.DefaultSettings.Bullet.1,Country code (e.g. IT for Italy),,, Onboarding.DefaultSettings.Bullet.2,Network information (including Autonomous System Number),,, Onboarding.DefaultSettings.Bullet.3,Time & date of testing,,, -Onboarding.DefaultSettings.Paragraph,"We do our best not to publish your IP address or any other potentially personally identifiable information. - +Onboarding.DefaultSettings.Paragraph,"We do our best not to publish your IP address or any other potentially personally identifiable information. + Learn more through [OONI's Data Policy](https://ooni.org/about/data-policy/).",,, Onboarding.DefaultSettings.Paragraph.1,"By tapping ""OK"", you will share crash reports to help us improve OONI Probe. ",,, Onboarding.DefaultSettings.Button.Go,Let's go,12,, @@ -69,61 +69,61 @@ Dashboard.Running.ProxyInUse,Proxy in use,,, Dashboard.Card.Subtitle,Tap card for more,,FALSE, Dashboard.Card.Seconds,~{{seconds}}s,,FALSE, Dashboard.Websites.Card.Description,Test the blocking of websites,,, -Dashboard.Websites.Overview.Paragraph,"Check whether websites are blocked using OONI's [Web Connectivity test](https://ooni.org/nettest/web-connectivity/). - -Every time you tap Run, you test different websites from the Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists. - -To test the sites of your choice, tap the Choose websites button or select categories of sites via the settings of this card. - -This test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy. - +Dashboard.Websites.Overview.Paragraph,"Check whether websites are blocked using OONI's [Web Connectivity test](https://ooni.org/nettest/web-connectivity/). + +Every time you tap Run, you test different websites from the Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists. + +To test the sites of your choice, tap the Choose websites button or select categories of sites via the settings of this card. + +This test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy. + Your results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/).",,, -Dashboard.Websites.Overview.Paragraph.Desktop,"Check whether websites are blocked using OONI's [Web Connectivity test](https://ooni.org/nettest/web-connectivity/). - -You will test the websites included in the Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists. - -This test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy. - +Dashboard.Websites.Overview.Paragraph.Desktop,"Check whether websites are blocked using OONI's [Web Connectivity test](https://ooni.org/nettest/web-connectivity/). + +You will test the websites included in the Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists. + +This test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy. + Your results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/).",,, Dashboard.Performance.Card.Description,Test your network speed and performance,,, -Dashboard.Performance.Overview.Paragraph,"Measure the speed and performance of your network using the [NDT](https://ooni.org/nettest/ndt/) test. - -Measure video streaming performance using the [DASH](https://ooni.org/nettest/dash/) test. - -These tests consume data depending on your network speed. - -Your results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). - +Dashboard.Performance.Overview.Paragraph,"Measure the speed and performance of your network using the [NDT](https://ooni.org/nettest/ndt/) test. + +Measure video streaming performance using the [DASH](https://ooni.org/nettest/dash/) test. + +These tests consume data depending on your network speed. + +Your results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). + Disclaimer: These tests rely on third party servers. We therefore cannot guarantee that your IP address will not be collected.",,, -Dashboard.Performance.Overview.Paragraph.Updated,"By running the tests in this card, you will: - -- Measure the speed and performance of your network ([NDT](https://ooni.org/nettest/ndt/) test) -- Measure video streaming performance ([DASH](https://ooni.org/nettest/dash/) test) -- Check for the presence of [middlebox technologies](https://ooni.org/support/glossary/#middlebox) on your network ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests) - -These tests consume data depending on your network speed. - -Your test results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). - +Dashboard.Performance.Overview.Paragraph.Updated,"By running the tests in this card, you will: + +- Measure the speed and performance of your network ([NDT](https://ooni.org/nettest/ndt/) test) +- Measure video streaming performance ([DASH](https://ooni.org/nettest/dash/) test) +- Check for the presence of [middlebox technologies](https://ooni.org/support/glossary/#middlebox) on your network ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests) + +These tests consume data depending on your network speed. + +Your test results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). + **Disclaimer:** The [NDT](https://ooni.org/nettest/ndt/) and [DASH](https://ooni.org/nettest/dash/) tests are conducted against third-party servers provided by [Measurement Lab (M-Lab)](https://www.measurementlab.net/). If you run these tests, M-Lab will collect and publish your IP address (for research purposes), irrespective of your OONI Probe settings. Learn more about M-Lab’s data governance through its [privacy statement](https://www.measurementlab.net/privacy/).",,, Dashboard.Middleboxes.Card.Description,Detect middleboxes in your network,,DEPRECATED, -Dashboard.Middleboxes.Overview.Paragraph,"Internet Service Providers often use network appliances (middleboxes) for various networking purposes (such as caching). Sometimes these middleboxes are used to implement internet censorship and/or surveillance. - -Find middleboxes in your network using OONI's [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests. - +Dashboard.Middleboxes.Overview.Paragraph,"Internet Service Providers often use network appliances (middleboxes) for various networking purposes (such as caching). Sometimes these middleboxes are used to implement internet censorship and/or surveillance. + +Find middleboxes in your network using OONI's [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests. + Your results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/).",,DEPRECATED, Dashboard.InstantMessaging.Card.Description,Test the blocking of instant messaging apps,,, -Dashboard.InstantMessaging.Overview.Paragraph,"Check whether [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), and [Signal](https://ooni.org/nettest/signal) are blocked. - +Dashboard.InstantMessaging.Overview.Paragraph,"Check whether [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), and [Signal](https://ooni.org/nettest/signal) are blocked. + Your results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/).",,, Dashboard.Circumvention.Card.Description,Test the blocking of censorship circumvention tools,,, -Dashboard.Circumvention.Overview.Paragraph,"Check whether [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) or [RiseupVPN](https://ooni.org/nettest/riseupvpn/) are blocked. - +Dashboard.Circumvention.Overview.Paragraph,"Check whether [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) or [RiseupVPN](https://ooni.org/nettest/riseupvpn/) are blocked. + Your results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/).",,, Dashboard.Experimental.Card.Description,Run new experimental tests,,, -Dashboard.Experimental.Overview.Paragraph,"Run the following new experimental tests developed by the OONI team: -{{experimental_test_list}} - +Dashboard.Experimental.Overview.Paragraph,"Run the following new experimental tests developed by the OONI team: +{{experimental_test_list}} + Your results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/).",,, Dashboard.Experimental.Overview.Paragraph.AutomatedTesting,The following tests will only be run as part of automated testing:,,, Dashboard.DisabledTests.Label,Disabled Tests,,, @@ -222,8 +222,8 @@ TestResults.Details.Methodology.Paragraph,Learn how this test works [here]({{Lin TestResults.Details.Websites.Reachable.Hero.Title,Accessible,,, TestResults.Details.Websites.Reachable.Content.Paragraph,{{WebsiteURL}} is accessible.,,, TestResults.Details.Websites.LikelyBlocked.Hero.Title,Likely blocked,,, -TestResults.Details.Websites.LikelyBlocked.Content.Paragraph,"{{WebsiteURL}} is likely blocked by means of {{BlockingReason}}. - +TestResults.Details.Websites.LikelyBlocked.Content.Paragraph,"{{WebsiteURL}} is likely blocked by means of {{BlockingReason}}. + Note: False positives can occur. Learn more [here](https://ooni.org/support/faq/#what-are-false-positives).",,, TestResults.Details.Websites.LikelyBlocked.Content.LearnToCircumvent,Censorship Circumvention,,, TestResults.Details.Websites.LikelyBlocked.BlockingReason.DNS,**DNS tampering**,,, @@ -270,14 +270,14 @@ TestResults.Details.InstantMessaging.Signal.Reachable.Content.Paragraph,This tes TestResults.Details.Middleboxes.HTTPInvalidRequestLine.NotFound.Hero.Title,No middleboxes detected,,, TestResults.Details.Middleboxes.HTTPInvalidRequestLine.NotFound.Content.Paragraph,No network anomaly was detected when communicating with our servers. ,,, TestResults.Details.Middleboxes.HTTPInvalidRequestLine.Found.Hero.Title,Network tampering,,, -TestResults.Details.Middleboxes.HTTPInvalidRequestLine.Found.Content.Paragraph,"Network traffic was manipulated when contacting our control servers. - +TestResults.Details.Middleboxes.HTTPInvalidRequestLine.Found.Content.Paragraph,"Network traffic was manipulated when contacting our control servers. + This means that there may be a middlebox in your network, which could be responsible for censorship and/or surveillance.",,, TestResults.Details.Middleboxes.HTTPHeaderFieldManipulation.NotFound.Hero.Title,No middleboxes detected,,, TestResults.Details.Middleboxes.HTTPHeaderFieldManipulation.NotFound.Content.Paragraph,No network anomaly was detected when communicating with our servers. ,,, TestResults.Details.Middleboxes.HTTPHeaderFieldManipulation.Found.Hero.Title,Network tampering,,, -TestResults.Details.Middleboxes.HTTPHeaderFieldManipulation.Found.Content.Paragraph,"Network traffic was manipulated when contacting our control servers. - +TestResults.Details.Middleboxes.HTTPHeaderFieldManipulation.Found.Content.Paragraph,"Network traffic was manipulated when contacting our control servers. + This means that there may be a middlebox in your network, which could be responsible for censorship and/or surveillance.",,, TestResults.Details.Middleboxes.HTTPInvalidRequestLine.YouSent,You Sent,,, TestResults.Details.Middleboxes.HTTPInvalidRequestLine.YouReceived,You Received,,, @@ -368,6 +368,7 @@ Modal.ReRun.Title,Re-run test,,, Modal.ReRun.Paragraph,This test has failed. Re-run the test?,,, Modal.ReRun.Websites.Title,You are about to re-test {{websitesNumber}} websites.,,, Modal.ReRun.Websites.Run,Run,,, +Modal.CustomURL.Title.NotSaved,Are you sure?,,, Modal.CustomURL.NotSaved,Your URLs will not be saved when you leave this screen. Are you sure you want to leave this screen?,,, Modal.ManualUpload.Title,Enable Manual Upload?,,FALSE, Modal.ManualUpload.Paragraph,This setting allows you to manually re-upload unpublished measurements.,,FALSE, @@ -410,8 +411,8 @@ Test.Signal.Fullname,Signal Test,,, Settings.Title,Settings,22,, Settings.Error.TestDurationTooLow,The amount of time you have set for the test duration is too low.,,, Settings.About.Label,About OONI,,, -Settings.About.Content.Paragraph,"The Open Observatory of Network Interference (OONI) is a free software project under The Tor Project that aims to increase transparency of internet censorship around the world. - +Settings.About.Content.Paragraph,"The Open Observatory of Network Interference (OONI) is a free software project under The Tor Project that aims to increase transparency of internet censorship around the world. + Since 2012, OONI's global community has been measuring networks in more than 200 countries. Some of these measurements serve as evidence of internet censorship.",,, Settings.About.Content.LearnMore,Learn more,20,, Settings.About.Content.Blog,Blog,,, @@ -427,8 +428,8 @@ Settings.AutomatedTesting.RunAutomatically.Number,Number of automated tests: {{t Settings.AutomatedTesting.RunAutomatically.DateLast,Last automated test: {{testDate}}.,,, Settings.AutomatedTesting.RunAutomatically.WiFiOnly,Only on WiFi,,NEW, Settings.AutomatedTesting.RunAutomatically.ChargingOnly,Only while charging,,, -Settings.AutomatedTesting.RunAutomatically.Footer,"By enabling automatic testing, OONI Probe tests will run automatically multiple times per day. Your test results will automatically get published on OONI Explorer: https://explorer.ooni.org/ - +Settings.AutomatedTesting.RunAutomatically.Footer,"By enabling automatic testing, OONI Probe tests will run automatically multiple times per day. Your test results will automatically get published on OONI Explorer: https://explorer.ooni.org/ + Important: If you have a VPN enabled, OONI Probe will not run tests automatically. Please turn off your VPN for automated OONI Probe testing. Learn more: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn",,, Settings.Sharing.Label,Sharing,,FALSE, Settings.Sharing.UploadResults,Automatically Publish Results,,, @@ -438,8 +439,8 @@ Settings.Sharing.GPS,Include approximate geo-location,,FALSE, Settings.Sharing.IncludeIP,Include my IP address,,FALSE, Settings.Sharing.IncludeCountryCode,Include Country Code,,FALSE, Settings.Sharing.IncludeCountryCode.PopUp,This information (e.g. IT for Italy) is required to identify which country the measurements are collected from. Are you sure you want to disable this option? ,,FALSE, -Settings.Sharing.Footer,"By publishing results, you are increasing transparency of network interference and supporting the OONI community. - +Settings.Sharing.Footer,"By publishing results, you are increasing transparency of network interference and supporting the OONI community. + Network information (i.e. Autonomous System Number) is required for identifying Internet Service Providers.",,FALSE, Settings.TestOptions.Label,Test options,,, Settings.TestOptions.Footer,"What you configure through the above test settings (e.g. disabling the WhatsApp test) will apply to tests run manually, as well as to tests run automatically (when automated testing is enabled). ",,, @@ -534,6 +535,8 @@ OONIRun.InvalidParameter,Invalid parameter,,, OONIRun.InvalidParameter.Msg,The OONI Run link is either malformed or your app is out of date.,,, OONIRun.RandomSamplingOfURLs,You will test a random sample of websites. ,,, OONIRun.TestRunningError,Please wait for the test to finish running before tapping on an OONI Run link.,,, +OONIRun.ReadMore,Read more >,,, +OONIRun.ReadLess,Read less >,,, CategoryCode.ALDR.Name,Drugs & Alcohol,,, CategoryCode.REL.Name,Religion,,, CategoryCode.PORN.Name,Pornography,,, @@ -596,3 +599,106 @@ CategoryCode.COMM.Description,Commercial services and products,,, CategoryCode.CTRL.Description,Benign or innocuous content used for control,,, CategoryCode.IGO.Description,Intergovernmental organizations including The United Nations,,, CategoryCode.MISC.Description,Sites that haven't been categorized yet,,, +Prompt.DontAskAgain,Don’t ask again,,, +Prompt.EnableTestProgressNotifications.Title,Enable test progress notifications,,, +Prompt.EnableTestProgressNotifications.Paragraph,Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer?,,, +LoadingScreen.Runv2.Message,Link Loading,,, +LoadingScreen.Runv2.Failure,Error,,, +LoadingScreen.Runv2.Canceled,Link installation cancelled,,, +Dashboard.Runv2.Overview.Description,Created by %s on %s\n\n%s,,, +Dashboard.Runv2.Overview.UninstallLink,Uninstall Link,,, +Dashboard.Runv2.Overview.ReviewUpdates,Review Updates,,, +Dashboard.Runv2.Overview.PreviousRevisions,Previous revisions,,, +Dashboard.Runv2.Overview.Uninstall.Prompt,You will be able to install this link again only from the original link sent by the creator.,,, +Dashboard.Runv2.Overview.SeeMore,See More,,, +Dashboard.Runv2.Overview.TestWebsites,Test websites automatically,,, +Dashboard.RunV2.ManualUpdate.Error,Error,,, +Dashboard.RunV2.Ooni.Title,OONI Tests,,, +Dashboard.RunV2.Title,OONI Run Links,,, +Dashboard.RunV2.RunFinished,Run finished. Tap to view results.,,, +Dashboard.RunV2.ExpiredTag,EXPIRED,,, +Dashboard.RunV2.UpdatedTag,UPDATED,,, +AddDescriptor.Title,Install New Link,,, +AddDescriptor.Author,Author:,,, +AddDescriptor.Settings,Test Settings,,, +AddDescriptor.AutoUpdate,Install updates automatically,,, +AddDescriptor.AutoRun,Run tests automatically,,, +AddDescriptor.Toasts.Installed,Link installed,,, +AddDescriptor.Action,Install Link,,, +AddDescriptor.Toasts.Canceled,Link installation cancelled,,, +DescriptorUpdate.Updates,UPDATES,,, +CustomWebsites.Fab.Text,Test %s URLs,,, +CustomWebsites.Fab.Default,Test URLs,,, +Dashboard.ReviewDescriptor.Title,Link Update,,, +Dashboard.ReviewDescriptor.Success,Link(s) updated,,, +Dashboard.ReviewDescriptor.Label,Link Update (%1$s of %2$s),,, +Dashboard.ReviewDescriptor.Button.Last,UPDATE AND FINISH (%1$s of %2$s),,, +Dashboard.ReviewDescriptor.Button.Default,UPDATE (%1$s of %2$s),,, +Dashboard.ReviewDescriptor.Update,Update,,, +Dashboard.RunTests.Title,Run tests,,, +Dashboard.RunTests.RunButton.Default,Run Tests,,, +Dashboard.RunTests.RunButton.Empty,Please select test to run,,, +Dashboard.RunTests.RunButton.Label,Run %s test(s),,, +Dashboard.RunTests.Description,Select the tests to run,,, +Dashboard.RunTests.SelectAll,Select all tests,,, +Dashboard.RunTests.SelectNone,Deselect all tests,,, +Dashboard.Progress.AddLink.Label,Link Loading,,, +Dashboard.Progress.UpdateLink.Label,Link updates loading,,, +Dashboard.Progress.ReviewLink.Label,Link updates ready,,, +Dashboard.Progress.ReviewLink.Action,Review,,, +TestResults.TestCount,%s inputs,,, +Common_Back,Back,,, +Common_Refresh,refresh,,, +Common_Collapse,Collapse,,, +Common_Expand,Expand,,, +Common_Ago,%1$s ago,,, +Common_Minutes_One,%1$d minute,,, +Common_Minutes_Other,%1$d minutes,,, +Common_Hour_One,%1$d hour,,, +Common_Hour_Other,%1$d hours,,, +Common_Hours_Abbreviated,%1$dh,,, +Common_Minutes_Abbreviated,%1$dm,,, +Common_Seconds_Abbreviated,%1$ds,,, +Common_Months_January,January,,, +Common_Months_February,February,,, +Common_Months_March,March,,, +Common_Months_April,April,,, +Common_Months_May,May,,, +Common_Months_June,June,,, +Common_Months_July,July,,, +Common_Months_August,August,,, +Common_Months_September,September,,, +Common_Months_October,October,,, +Common_Months_November,November,,, +Common_Months_December,December,,, +Onboarding_QuizAnswer_Correct,Correct answer,,, +Onboarding_QuizAnswer_Incorrect,Incorrect answer,,, +Dashboard_Runv2_Overview_LastUpdated,Last updated %1$s,,, +Dashboard_RunTests_RunButton_Label_One,Run %1$d test,,, +Dashboard_RunTests_RunButton_Label_Other,Run %1$d tests,,, +AddDescriptor_Toasts_Unsupported_Url,Unsupported URL,,, +Measurement_Title,Measurement,,, +Measurements_Count_One,%1$d measurement,,, +Measurements_Count_Other,%1$d measurements,,, +Measurements_Failed,Failed,,, +Measurements_Ok,OK,,, +Measurements_Anomaly,Anomaly,,, +Results_TestType_All,All Types,,, +Results_TaskOrigin_All,All Sources,,, +Results_LimitedNotice,Only the last %1$d results are shown,,, +Results_UploadingMissing,Uploading missing results %1$s,,, +Settings_Logs,Logs,,, +Settings_ShareLogs,Share Logs,,, +Settings_ShareLogs_Error,Error sharing logs,,, +Settings_FilterLogs,Filter Logs,,, +Settings_DisableVpnInstructions,Go to Settings > General > VPN and disconnect from your VPN.,,, +Settings_AutoTest_NotUploadedLimit,Skip after this amount of results failed to upload,,, +Settings_Sharing_UploadResults_Description,Results are automatically uploaded to OONI explorer,,, +Settings_Websites_MaxRuntimeEnabled_New,Limit Websites test duration,,, +Settings_Websites_MaxRuntime_New,Maximum Websites test duration,,, +Settings_AutomatedTesting_RunAutomatically_Description,Tests will run in the background,,, +Settings_Websites_MaxRuntimeEnabled_Description,Only for manual runs,,, +Notification_ChannelName,Testing,,, +TaskOrigin_Manual,Manual Run,,, +TaskOrigin_AutoRun,Auto Run,,, +NetworkType_Vpn,VPN,,, \ No newline at end of file diff --git a/probe-mobile/en/strings.json b/probe-mobile/en/strings.json index 0abc0be..65cc8d7 100644 --- a/probe-mobile/en/strings.json +++ b/probe-mobile/en/strings.json @@ -307,6 +307,7 @@ "Modal.ReRun.Paragraph": "This test has failed. Re-run the test?", "Modal.ReRun.Websites.Title": "You are about to re-test {websitesNumber} websites.", "Modal.ReRun.Websites.Run": "Run", + "Modal.CustomURL.Title.NotSaved": "Are you sure?", "Modal.CustomURL.NotSaved": "Your URLs will not be saved when you leave this screen. Are you sure you want to leave this screen?", "Modal.ManualUpload.Title": "Enable Manual Upload?", "Modal.ManualUpload.Paragraph": "This setting allows you to manually re-upload unpublished measurements.", @@ -467,6 +468,8 @@ "OONIRun.InvalidParameter.Msg": "The OONI Run link is either malformed or your app is out of date.", "OONIRun.RandomSamplingOfURLs": "You will test a random sample of websites.", "OONIRun.TestRunningError": "Please wait for the test to finish running before tapping on an OONI Run link.", + "OONIRun.ReadMore": "Read more >", + "OONIRun.ReadLess": "Read less >", "CategoryCode.ALDR.Name": "Drugs & Alcohol", "CategoryCode.REL.Name": "Religion", "CategoryCode.PORN.Name": "Pornography", @@ -528,5 +531,108 @@ "CategoryCode.COMM.Description": "Commercial services and products", "CategoryCode.CTRL.Description": "Benign or innocuous content used for control", "CategoryCode.IGO.Description": "Intergovernmental organizations including The United Nations", - "CategoryCode.MISC.Description": "Sites that haven't been categorized yet" + "CategoryCode.MISC.Description": "Sites that haven't been categorized yet", + "Prompt.DontAskAgain": "Don\u2019t ask again", + "Prompt.EnableTestProgressNotifications.Title": "Enable test progress notifications", + "Prompt.EnableTestProgressNotifications.Paragraph": "Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer?", + "LoadingScreen.Runv2.Message": "Link Loading", + "LoadingScreen.Runv2.Failure": "Error", + "LoadingScreen.Runv2.Canceled": "Link installation cancelled", + "Dashboard.Runv2.Overview.Description": "Created by %s on %s\\n\\n%s", + "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", + "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", + "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.SeeMore": "See More", + "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", + "Dashboard.RunV2.ManualUpdate.Error": "Error", + "Dashboard.RunV2.Ooni.Title": "OONI Tests", + "Dashboard.RunV2.Title": "OONI Run Links", + "Dashboard.RunV2.RunFinished": "Run finished. Tap to view results.", + "Dashboard.RunV2.ExpiredTag": "EXPIRED", + "Dashboard.RunV2.UpdatedTag": "UPDATED", + "AddDescriptor.Title": "Install New Link", + "AddDescriptor.Author": "Author:", + "AddDescriptor.Settings": "Test Settings", + "AddDescriptor.AutoUpdate": "Install updates automatically", + "AddDescriptor.AutoRun": "Run tests automatically", + "AddDescriptor.Toasts.Installed": "Link installed", + "AddDescriptor.Action": "Install Link", + "AddDescriptor.Toasts.Canceled": "Link installation cancelled", + "DescriptorUpdate.Updates": "UPDATES", + "CustomWebsites.Fab.Text": "Test %s URLs", + "CustomWebsites.Fab.Default": "Test URLs", + "Dashboard.ReviewDescriptor.Title": "Link Update", + "Dashboard.ReviewDescriptor.Success": "Link(s) updated", + "Dashboard.ReviewDescriptor.Label": "Link Update (%1$s of %2$s)", + "Dashboard.ReviewDescriptor.Button.Last": "UPDATE AND FINISH (%1$s of %2$s)", + "Dashboard.ReviewDescriptor.Button.Default": "UPDATE (%1$s of %2$s)", + "Dashboard.ReviewDescriptor.Update": "Update", + "Dashboard.RunTests.Title": "Run tests", + "Dashboard.RunTests.RunButton.Default": "Run Tests", + "Dashboard.RunTests.RunButton.Empty": "Please select test to run", + "Dashboard.RunTests.RunButton.Label": "Run %s test(s)", + "Dashboard.RunTests.Description": "Select the tests to run", + "Dashboard.RunTests.SelectAll": "Select all tests", + "Dashboard.RunTests.SelectNone": "Deselect all tests", + "Dashboard.Progress.AddLink.Label": "Link Loading", + "Dashboard.Progress.UpdateLink.Label": "Link updates loading", + "Dashboard.Progress.ReviewLink.Label": "Link updates ready", + "Dashboard.Progress.ReviewLink.Action": "Review", + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/en/strings.xml b/probe-mobile/en/strings.xml index db87e2f..605235b 100644 --- a/probe-mobile/en/strings.xml +++ b/probe-mobile/en/strings.xml @@ -308,6 +308,7 @@ This test has failed. Re-run the test? You are about to re-test %1$s websites. Run + Are you sure? Your URLs will not be saved when you leave this screen. Are you sure you want to leave this screen? Enable Manual Upload? This setting allows you to manually re-upload unpublished measurements. @@ -468,6 +469,8 @@ The OONI Run link is either malformed or your app is out of date. You will test a random sample of websites. Please wait for the test to finish running before tapping on an OONI Run link. + Read more > + Read less > Drugs & Alcohol Religion Pornography @@ -530,4 +533,107 @@ Benign or innocuous content used for control Intergovernmental organizations including The United Nations Sites that haven\'t been categorized yet + Don’t ask again + Enable test progress notifications + Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? + Link Loading + Error + Link installation cancelled + Created by %s on %s\n\n%s + Uninstall Link + Review Updates + Previous revisions + You will be able to install this link again only from the original link sent by the creator. + See More + Test websites automatically + Error + OONI Tests + OONI Run Links + Run finished. Tap to view results. + EXPIRED + UPDATED + Install New Link + Author: + Test Settings + Install updates automatically + Run tests automatically + Link installed + Install Link + Link installation cancelled + UPDATES + Test %s URLs + Test URLs + Link Update + Link(s) updated + Link Update (%1$s of %2$s) + UPDATE AND FINISH (%1$s of %2$s) + UPDATE (%1$s of %2$s) + Update + Run tests + Run Tests + Please select test to run + Run %s test(s) + Select the tests to run + Select all tests + Deselect all tests + Link Loading + Link updates loading + Link updates ready + Review + %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/es/Localizable.strings b/probe-mobile/es/Localizable.strings index d811adb..0e6ea18 100644 --- a/probe-mobile/es/Localizable.strings +++ b/probe-mobile/es/Localizable.strings @@ -467,8 +467,8 @@ "OONIRun.InvalidParameter.Msg" = "El enlace OONI Run está malformado o bien tu aplicación está desactualizada."; "OONIRun.RandomSamplingOfURLs" = "Probarás una muestra aleatoria de sitios web."; "OONIRun.TestRunningError" = "Por favor espera hasta que la prueba termine su ejecución antes de clicar en un enlace OONI Run."; -"OONIRun.ReadMore" = "Read more >"; -"OONIRun.ReadLess" = "Read less >"; +"OONIRun.ReadMore" = "Leer más >"; +"OONIRun.ReadLess" = "Leer menos >"; "CategoryCode.ALDR.Name" = "Drogas y alcohol"; "CategoryCode.REL.Name" = "Religión"; "CategoryCode.PORN.Name" = "Pornografía"; @@ -531,21 +531,21 @@ "CategoryCode.CTRL.Description" = "Contenido benigno o inocuo usado para control"; "CategoryCode.IGO.Description" = "Organizaciones intergubernamentales, incluyendo las Naciones Unidas"; "CategoryCode.MISC.Description" = "Sitios que no han sido aún categorizados"; -"Prompt.DontAskAgain" = "Don’t ask again"; -"Prompt.EnableTestProgressNotifications.Title" = "Enable test progress notifications"; +"Prompt.DontAskAgain" = "No vuelvas a preguntar"; +"Prompt.EnableTestProgressNotifications.Title" = "Habilitar notificaciones de progreso de pruebas"; "Prompt.EnableTestProgressNotifications.Paragraph" = "Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer?"; -"LoadingScreen.Runv2.Message" = "Link Loading"; +"LoadingScreen.Runv2.Message" = "Cargando Enlace"; "LoadingScreen.Runv2.Failure" = "Error"; -"LoadingScreen.Runv2.Canceled" = "Link installation cancelled"; +"LoadingScreen.Runv2.Canceled" = "Instalación del enlace cancelada"; "Dashboard.Runv2.Overview.Description" = "Created by %s on %s\n\n%s"; -"Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; -"Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; +"Dashboard.Runv2.Overview.UninstallLink" = "Enlace de Desinstalación"; +"Dashboard.Runv2.Overview.ReviewUpdates" = "Revisar Actualizaciones"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; "Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; -"Dashboard.Runv2.Overview.SeeMore" = "See More"; -"Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; +"Dashboard.Runv2.Overview.SeeMore" = "Ver más"; +"Dashboard.Runv2.Overview.TestWebsites" = "Probar sitios web automáticamente"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; -"Dashboard.RunV2.Ooni.Title" = "OONI Tests"; +"Dashboard.RunV2.Ooni.Title" = "Pruebas OONI"; "Dashboard.RunV2.Title" = "OONI Run Links"; "Dashboard.RunV2.RunFinished" = "Run finished. Tap to view results."; "Dashboard.RunV2.ExpiredTag" = "EXPIRED"; @@ -557,25 +557,80 @@ "AddDescriptor.AutoRun" = "Ejecutar pruebas automáticamente"; "AddDescriptor.Toasts.Installed" = "Link installed"; "AddDescriptor.Action" = "Install Link"; -"AddDescriptor.Toasts.Canceled" = "Link installation cancelled"; -"DescriptorUpdate.Updates" = "UPDATES"; +"AddDescriptor.Toasts.Canceled" = "Instalación del enlace cancelada"; +"DescriptorUpdate.Updates" = "ACTUALIZACIONES"; "CustomWebsites.Fab.Text" = "Test %s URLs"; -"CustomWebsites.Fab.Default" = "Test URLs"; +"CustomWebsites.Fab.Default" = "Probar URLs"; "Dashboard.ReviewDescriptor.Title" = "Link Update"; "Dashboard.ReviewDescriptor.Success" = "Link(s) updated"; "Dashboard.ReviewDescriptor.Label" = "Link Update (%1$s of %2$s)"; "Dashboard.ReviewDescriptor.Button.Last" = "UPDATE AND FINISH (%1$s of %2$s)"; "Dashboard.ReviewDescriptor.Button.Default" = "UPDATE (%1$s of %2$s)"; "Dashboard.ReviewDescriptor.Update" = "Actualizar"; -"Dashboard.RunTests.Title" = "Run tests"; -"Dashboard.RunTests.RunButton.Default" = "Run Tests"; -"Dashboard.RunTests.RunButton.Empty" = "Please select test to run"; +"Dashboard.RunTests.Title" = "Ejecutar pruebas"; +"Dashboard.RunTests.RunButton.Default" = "Ejecutar Pruebas"; +"Dashboard.RunTests.RunButton.Empty" = "Seleccione la prueba que desea ejecutar"; "Dashboard.RunTests.RunButton.Label" = "Run %s test(s)"; -"Dashboard.RunTests.Description" = "Select the tests to run"; -"Dashboard.RunTests.SelectAll" = "Select all tests"; -"Dashboard.RunTests.SelectNone" = "Deselect all tests"; -"Dashboard.Progress.AddLink.Label" = "Link Loading"; -"Dashboard.Progress.UpdateLink.Label" = "Link updates loading"; +"Dashboard.RunTests.Description" = "Seleccione las pruebas a ejecutar"; +"Dashboard.RunTests.SelectAll" = "Seleccionar todas las pruebas"; +"Dashboard.RunTests.SelectNone" = "Deseleccionar todas las pruebas"; +"Dashboard.Progress.AddLink.Label" = "Cargando Enlace"; +"Dashboard.Progress.UpdateLink.Label" = "Cargando actualizaciones de enlaces"; "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Revisar"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Volver"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Contraer"; +"Common_Expand" = "Expandir"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Enero"; +"Common_Months_February" = "Febrero"; +"Common_Months_March" = "Marzo"; +"Common_Months_April" = "Abril"; +"Common_Months_May" = "May"; +"Common_Months_June" = "Junio"; +"Common_Months_July" = "Julio"; +"Common_Months_August" = "Agosto"; +"Common_Months_September" = "Septiembre"; +"Common_Months_October" = "Octubre"; +"Common_Months_November" = "Noviembre"; +"Common_Months_December" = "Diciembre"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Falló"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomalía"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Registros"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Probando"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/es/strings.json b/probe-mobile/es/strings.json index 0be9bbf..68f2917 100644 --- a/probe-mobile/es/strings.json +++ b/probe-mobile/es/strings.json @@ -468,8 +468,8 @@ "OONIRun.InvalidParameter.Msg": "El enlace OONI Run está malformado o bien tu aplicación está desactualizada.", "OONIRun.RandomSamplingOfURLs": "Probarás una muestra aleatoria de sitios web.", "OONIRun.TestRunningError": "Por favor espera hasta que la prueba termine su ejecución antes de clicar en un enlace OONI Run.", - "OONIRun.ReadMore": "Read more >", - "OONIRun.ReadLess": "Read less >", + "OONIRun.ReadMore": "Leer más >", + "OONIRun.ReadLess": "Leer menos >", "CategoryCode.ALDR.Name": "Drogas y alcohol", "CategoryCode.REL.Name": "Religión", "CategoryCode.PORN.Name": "Pornografía", @@ -532,21 +532,21 @@ "CategoryCode.CTRL.Description": "Contenido benigno o inocuo usado para control", "CategoryCode.IGO.Description": "Organizaciones intergubernamentales, incluyendo las Naciones Unidas", "CategoryCode.MISC.Description": "Sitios que no han sido aún categorizados", - "Prompt.DontAskAgain": "Don\u2019t ask again", - "Prompt.EnableTestProgressNotifications.Title": "Enable test progress notifications", + "Prompt.DontAskAgain": "No vuelvas a preguntar", + "Prompt.EnableTestProgressNotifications.Title": "Habilitar notificaciones de progreso de pruebas", "Prompt.EnableTestProgressNotifications.Paragraph": "Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer?", - "LoadingScreen.Runv2.Message": "Link Loading", + "LoadingScreen.Runv2.Message": "Cargando Enlace", "LoadingScreen.Runv2.Failure": "Error", - "LoadingScreen.Runv2.Canceled": "Link installation cancelled", + "LoadingScreen.Runv2.Canceled": "Instalación del enlace cancelada", "Dashboard.Runv2.Overview.Description": "Created by %s on %s\\n\\n%s", - "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", - "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", + "Dashboard.Runv2.Overview.UninstallLink": "Enlace de Desinstalación", + "Dashboard.Runv2.Overview.ReviewUpdates": "Revisar Actualizaciones", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", - "Dashboard.Runv2.Overview.SeeMore": "See More", - "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", + "Dashboard.Runv2.Overview.SeeMore": "Ver más", + "Dashboard.Runv2.Overview.TestWebsites": "Probar sitios web automáticamente", "Dashboard.RunV2.ManualUpdate.Error": "Error", - "Dashboard.RunV2.Ooni.Title": "OONI Tests", + "Dashboard.RunV2.Ooni.Title": "Pruebas OONI", "Dashboard.RunV2.Title": "OONI Run Links", "Dashboard.RunV2.RunFinished": "Run finished. Tap to view results.", "Dashboard.RunV2.ExpiredTag": "EXPIRED", @@ -558,26 +558,81 @@ "AddDescriptor.AutoRun": "Ejecutar pruebas automáticamente", "AddDescriptor.Toasts.Installed": "Link installed", "AddDescriptor.Action": "Install Link", - "AddDescriptor.Toasts.Canceled": "Link installation cancelled", - "DescriptorUpdate.Updates": "UPDATES", + "AddDescriptor.Toasts.Canceled": "Instalación del enlace cancelada", + "DescriptorUpdate.Updates": "ACTUALIZACIONES", "CustomWebsites.Fab.Text": "Test %s URLs", - "CustomWebsites.Fab.Default": "Test URLs", + "CustomWebsites.Fab.Default": "Probar URLs", "Dashboard.ReviewDescriptor.Title": "Link Update", "Dashboard.ReviewDescriptor.Success": "Link(s) updated", "Dashboard.ReviewDescriptor.Label": "Link Update (%1$s of %2$s)", "Dashboard.ReviewDescriptor.Button.Last": "UPDATE AND FINISH (%1$s of %2$s)", "Dashboard.ReviewDescriptor.Button.Default": "UPDATE (%1$s of %2$s)", "Dashboard.ReviewDescriptor.Update": "Actualizar", - "Dashboard.RunTests.Title": "Run tests", - "Dashboard.RunTests.RunButton.Default": "Run Tests", - "Dashboard.RunTests.RunButton.Empty": "Please select test to run", + "Dashboard.RunTests.Title": "Ejecutar pruebas", + "Dashboard.RunTests.RunButton.Default": "Ejecutar Pruebas", + "Dashboard.RunTests.RunButton.Empty": "Seleccione la prueba que desea ejecutar", "Dashboard.RunTests.RunButton.Label": "Run %s test(s)", - "Dashboard.RunTests.Description": "Select the tests to run", - "Dashboard.RunTests.SelectAll": "Select all tests", - "Dashboard.RunTests.SelectNone": "Deselect all tests", - "Dashboard.Progress.AddLink.Label": "Link Loading", - "Dashboard.Progress.UpdateLink.Label": "Link updates loading", + "Dashboard.RunTests.Description": "Seleccione las pruebas a ejecutar", + "Dashboard.RunTests.SelectAll": "Seleccionar todas las pruebas", + "Dashboard.RunTests.SelectNone": "Deseleccionar todas las pruebas", + "Dashboard.Progress.AddLink.Label": "Cargando Enlace", + "Dashboard.Progress.UpdateLink.Label": "Cargando actualizaciones de enlaces", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Revisar", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Volver", + "Common_Refresh": "refresh", + "Common_Collapse": "Contraer", + "Common_Expand": "Expandir", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Enero", + "Common_Months_February": "Febrero", + "Common_Months_March": "Marzo", + "Common_Months_April": "Abril", + "Common_Months_May": "May", + "Common_Months_June": "Junio", + "Common_Months_July": "Julio", + "Common_Months_August": "Agosto", + "Common_Months_September": "Septiembre", + "Common_Months_October": "Octubre", + "Common_Months_November": "Noviembre", + "Common_Months_December": "Diciembre", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Falló", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomalía", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Registros", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Probando", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/es/strings.xml b/probe-mobile/es/strings.xml index 43e477c..d1a54b0 100644 --- a/probe-mobile/es/strings.xml +++ b/probe-mobile/es/strings.xml @@ -469,8 +469,8 @@ El enlace OONI Run está malformado o bien tu aplicación está desactualizada. Probarás una muestra aleatoria de sitios web. Por favor espera hasta que la prueba termine su ejecución antes de clicar en un enlace OONI Run. - Read more > - Read less > + Leer más > + Leer menos > Drogas y alcohol Religión Pornografía @@ -533,21 +533,21 @@ Contenido benigno o inocuo usado para control Organizaciones intergubernamentales, incluyendo las Naciones Unidas Sitios que no han sido aún categorizados - Don’t ask again - Enable test progress notifications + No vuelvas a preguntar + Habilitar notificaciones de progreso de pruebas Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? - Link Loading + Cargando Enlace Error - Link installation cancelled + Instalación del enlace cancelada Created by %s on %s\n\n%s - Uninstall Link - Review Updates + Enlace de Desinstalación + Revisar Actualizaciones Previous revisions You will be able to install this link again only from the original link sent by the creator. - See More - Test websites automatically + Ver más + Probar sitios web automáticamente Error - OONI Tests + Pruebas OONI OONI Run Links Run finished. Tap to view results. EXPIRED @@ -559,26 +559,81 @@ Ejecutar pruebas automáticamente Link installed Install Link - Link installation cancelled - UPDATES + Instalación del enlace cancelada + ACTUALIZACIONES Test %s URLs - Test URLs + Probar URLs Link Update Link(s) updated Link Update (%1$s of %2$s) UPDATE AND FINISH (%1$s of %2$s) UPDATE (%1$s of %2$s) Actualizar - Run tests - Run Tests - Please select test to run + Ejecutar pruebas + Ejecutar Pruebas + Seleccione la prueba que desea ejecutar Run %s test(s) - Select the tests to run - Select all tests - Deselect all tests - Link Loading - Link updates loading + Seleccione las pruebas a ejecutar + Seleccionar todas las pruebas + Deseleccionar todas las pruebas + Cargando Enlace + Cargando actualizaciones de enlaces Link updates ready Revisar %s inputs + Volver + refresh + Contraer + Expandir + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Enero + Febrero + Marzo + Abril + May + Junio + Julio + Agosto + Septiembre + Octubre + Noviembre + Diciembre + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Falló + OK + Anomalía + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Registros + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Probando + Manual Run + Auto Run + VPN diff --git a/probe-mobile/fa/Localizable.strings b/probe-mobile/fa/Localizable.strings index 8187d2b..d6a3a19 100644 --- a/probe-mobile/fa/Localizable.strings +++ b/probe-mobile/fa/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "مرور کنید."; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "برگشت"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "بستن"; +"Common_Expand" = "گسترش دادن"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "ژانویه"; +"Common_Months_February" = "فوریه"; +"Common_Months_March" = "مارچ"; +"Common_Months_April" = "آپریل"; +"Common_Months_May" = "مه"; +"Common_Months_June" = "ژوئن"; +"Common_Months_July" = "ژولای"; +"Common_Months_August" = "آگوست"; +"Common_Months_September" = "سپتامبر"; +"Common_Months_October" = "اکتبر"; +"Common_Months_November" = "نوامبر"; +"Common_Months_December" = "دسامبر"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "ناموفق بود"; +"Measurements_Ok" = "قابل قبول"; +"Measurements_Anomaly" = "ناهنجاری"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "گزارش‌ها"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "در حال تست"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "وی‌پی‌ان"; diff --git a/probe-mobile/fa/strings.json b/probe-mobile/fa/strings.json index 7079980..144ca12 100644 --- a/probe-mobile/fa/strings.json +++ b/probe-mobile/fa/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "مرور کنید.", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "برگشت", + "Common_Refresh": "refresh", + "Common_Collapse": "بستن", + "Common_Expand": "گسترش دادن", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "ژانویه", + "Common_Months_February": "فوریه", + "Common_Months_March": "مارچ", + "Common_Months_April": "آپریل", + "Common_Months_May": "مه", + "Common_Months_June": "ژوئن", + "Common_Months_July": "ژولای", + "Common_Months_August": "آگوست", + "Common_Months_September": "سپتامبر", + "Common_Months_October": "اکتبر", + "Common_Months_November": "نوامبر", + "Common_Months_December": "دسامبر", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "ناموفق بود", + "Measurements_Ok": "قابل قبول", + "Measurements_Anomaly": "ناهنجاری", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "گزارش‌ها", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "در حال تست", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "وی‌پی‌ان" } \ No newline at end of file diff --git a/probe-mobile/fa/strings.xml b/probe-mobile/fa/strings.xml index 5c851f3..e0309f4 100644 --- a/probe-mobile/fa/strings.xml +++ b/probe-mobile/fa/strings.xml @@ -581,4 +581,59 @@ Link updates ready مرور کنید. %s inputs + برگشت + refresh + بستن + گسترش دادن + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + ژانویه + فوریه + مارچ + آپریل + مه + ژوئن + ژولای + آگوست + سپتامبر + اکتبر + نوامبر + دسامبر + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + ناموفق بود + قابل قبول + ناهنجاری + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + گزارش‌ها + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + در حال تست + Manual Run + Auto Run + وی‌پی‌ان diff --git a/probe-mobile/fi/Localizable.strings b/probe-mobile/fi/Localizable.strings index 4a73ad1..36af8cd 100644 --- a/probe-mobile/fi/Localizable.strings +++ b/probe-mobile/fi/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Tarkista"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Takaisin"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Tiivistä"; +"Common_Expand" = "Laajenna"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Tammikuu"; +"Common_Months_February" = "Helmikuu"; +"Common_Months_March" = "Maaliskuu"; +"Common_Months_April" = "Huhtikuu"; +"Common_Months_May" = "Toukokuu"; +"Common_Months_June" = "Kesäkuu"; +"Common_Months_July" = "Heinäkuu"; +"Common_Months_August" = "Elokuu"; +"Common_Months_September" = "Syyskuu"; +"Common_Months_October" = "Lokakuu"; +"Common_Months_November" = "Marraskuu"; +"Common_Months_December" = "Joulukuu"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Epäonnistunut"; +"Measurements_Ok" = "Valmis"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logit"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testataan"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/fi/strings.json b/probe-mobile/fi/strings.json index 7bcee9e..e0bebb9 100644 --- a/probe-mobile/fi/strings.json +++ b/probe-mobile/fi/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Tarkista", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Takaisin", + "Common_Refresh": "refresh", + "Common_Collapse": "Tiivistä", + "Common_Expand": "Laajenna", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Tammikuu", + "Common_Months_February": "Helmikuu", + "Common_Months_March": "Maaliskuu", + "Common_Months_April": "Huhtikuu", + "Common_Months_May": "Toukokuu", + "Common_Months_June": "Kesäkuu", + "Common_Months_July": "Heinäkuu", + "Common_Months_August": "Elokuu", + "Common_Months_September": "Syyskuu", + "Common_Months_October": "Lokakuu", + "Common_Months_November": "Marraskuu", + "Common_Months_December": "Joulukuu", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Epäonnistunut", + "Measurements_Ok": "Valmis", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logit", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testataan", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/fi/strings.xml b/probe-mobile/fi/strings.xml index e129342..ebd83d1 100644 --- a/probe-mobile/fi/strings.xml +++ b/probe-mobile/fi/strings.xml @@ -581,4 +581,59 @@ Link updates ready Tarkista %s inputs + Takaisin + refresh + Tiivistä + Laajenna + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Tammikuu + Helmikuu + Maaliskuu + Huhtikuu + Toukokuu + Kesäkuu + Heinäkuu + Elokuu + Syyskuu + Lokakuu + Marraskuu + Joulukuu + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Epäonnistunut + Valmis + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logit + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testataan + Manual Run + Auto Run + VPN diff --git a/probe-mobile/fil/Localizable.strings b/probe-mobile/fil/Localizable.strings index ee4cccc..d185015 100644 --- a/probe-mobile/fil/Localizable.strings +++ b/probe-mobile/fil/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Balik"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Nabigo"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Mga tala o logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/fil/strings.json b/probe-mobile/fil/strings.json index b6011af..b9f9c7d 100644 --- a/probe-mobile/fil/strings.json +++ b/probe-mobile/fil/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Balik", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Nabigo", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Mga tala o logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/fil/strings.xml b/probe-mobile/fil/strings.xml index 51532e3..cadc850 100644 --- a/probe-mobile/fil/strings.xml +++ b/probe-mobile/fil/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Balik + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Nabigo + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Mga tala o logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/fr/Localizable.strings b/probe-mobile/fr/Localizable.strings index 0b74896..b60352a 100644 --- a/probe-mobile/fr/Localizable.strings +++ b/probe-mobile/fr/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Révision"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Retour"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Réduire"; +"Common_Expand" = "Développer"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "janvier"; +"Common_Months_February" = "février"; +"Common_Months_March" = "mars"; +"Common_Months_April" = "avril"; +"Common_Months_May" = "mai"; +"Common_Months_June" = "juin"; +"Common_Months_July" = "juillet"; +"Common_Months_August" = "août"; +"Common_Months_September" = "septembre"; +"Common_Months_October" = "octobre"; +"Common_Months_November" = "novembre"; +"Common_Months_December" = "décembre"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Échec"; +"Measurements_Ok" = "Valider"; +"Measurements_Anomaly" = "Anomalie"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Journaux"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Test"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "RPV"; diff --git a/probe-mobile/fr/strings.json b/probe-mobile/fr/strings.json index fbf3c0f..61e29bb 100644 --- a/probe-mobile/fr/strings.json +++ b/probe-mobile/fr/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Révision", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Retour", + "Common_Refresh": "refresh", + "Common_Collapse": "Réduire", + "Common_Expand": "Développer", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "janvier", + "Common_Months_February": "février", + "Common_Months_March": "mars", + "Common_Months_April": "avril", + "Common_Months_May": "mai", + "Common_Months_June": "juin", + "Common_Months_July": "juillet", + "Common_Months_August": "août", + "Common_Months_September": "septembre", + "Common_Months_October": "octobre", + "Common_Months_November": "novembre", + "Common_Months_December": "décembre", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Échec", + "Measurements_Ok": "Valider", + "Measurements_Anomaly": "Anomalie", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Journaux", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Test", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "RPV" } \ No newline at end of file diff --git a/probe-mobile/fr/strings.xml b/probe-mobile/fr/strings.xml index c2cdd2f..86f2f4a 100644 --- a/probe-mobile/fr/strings.xml +++ b/probe-mobile/fr/strings.xml @@ -581,4 +581,59 @@ Link updates ready Révision %s inputs + Retour + refresh + Réduire + Développer + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + janvier + février + mars + avril + mai + juin + juillet + août + septembre + octobre + novembre + décembre + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Échec + Valider + Anomalie + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Journaux + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Test + Manual Run + Auto Run + RPV diff --git a/probe-mobile/gl/Localizable.strings b/probe-mobile/gl/Localizable.strings index 7166702..d2a945a 100644 --- a/probe-mobile/gl/Localizable.strings +++ b/probe-mobile/gl/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Revisión"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Anterior"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Colapso"; +"Common_Expand" = "Expandir"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Fracasou"; +"Measurements_Ok" = "Aceptar"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Rexistros (Logs)"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "A probar..."; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/gl/strings.json b/probe-mobile/gl/strings.json index 1aeffbc..ee91030 100644 --- a/probe-mobile/gl/strings.json +++ b/probe-mobile/gl/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Revisión", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Anterior", + "Common_Refresh": "refresh", + "Common_Collapse": "Colapso", + "Common_Expand": "Expandir", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Fracasou", + "Measurements_Ok": "Aceptar", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Rexistros (Logs)", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "A probar...", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/gl/strings.xml b/probe-mobile/gl/strings.xml index c39d9d0..d7cdf1c 100644 --- a/probe-mobile/gl/strings.xml +++ b/probe-mobile/gl/strings.xml @@ -581,4 +581,59 @@ Link updates ready Revisión %s inputs + Anterior + refresh + Colapso + Expandir + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Fracasou + Aceptar + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Rexistros (Logs) + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + A probar... + Manual Run + Auto Run + VPN diff --git a/probe-mobile/hi/Localizable.strings b/probe-mobile/hi/Localizable.strings index 6a6cab1..b86387e 100644 --- a/probe-mobile/hi/Localizable.strings +++ b/probe-mobile/hi/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "पिछला"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "विफ़ल"; +"Measurements_Ok" = "ठीक है "; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "लॉग्स"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "परिक्षण"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "वीपीएन"; diff --git a/probe-mobile/hi/strings.json b/probe-mobile/hi/strings.json index bbac690..15f3b08 100644 --- a/probe-mobile/hi/strings.json +++ b/probe-mobile/hi/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "पिछला", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "विफ़ल", + "Measurements_Ok": "ठीक है ", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "लॉग्स", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "परिक्षण", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "वीपीएन" } \ No newline at end of file diff --git a/probe-mobile/hi/strings.xml b/probe-mobile/hi/strings.xml index 27e631f..51fbd8f 100644 --- a/probe-mobile/hi/strings.xml +++ b/probe-mobile/hi/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + पिछला + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + विफ़ल + ठीक है + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + लॉग्स + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + परिक्षण + Manual Run + Auto Run + वीपीएन diff --git a/probe-mobile/id/Localizable.strings b/probe-mobile/id/Localizable.strings index 64bdef0..c69e906 100644 --- a/probe-mobile/id/Localizable.strings +++ b/probe-mobile/id/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Pembaruan tautan sudah siap"; "Dashboard.Progress.ReviewLink.Action" = "Tinjau"; "TestResults.TestCount" = "%s input"; +"Common_Back" = "Kembali"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Tutup"; +"Common_Expand" = "Buka"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Januari"; +"Common_Months_February" = "Februari"; +"Common_Months_March" = "Maret"; +"Common_Months_April" = "April"; +"Common_Months_May" = "Mei"; +"Common_Months_June" = "Juni"; +"Common_Months_July" = "Juli"; +"Common_Months_August" = "Agustus"; +"Common_Months_September" = "September"; +"Common_Months_October" = "Oktober"; +"Common_Months_November" = "November"; +"Common_Months_December" = "Desember"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Gagal"; +"Measurements_Ok" = "Oke"; +"Measurements_Anomaly" = "Anomali"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Log"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Menguji"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/id/strings.json b/probe-mobile/id/strings.json index 0105be3..38d0601 100644 --- a/probe-mobile/id/strings.json +++ b/probe-mobile/id/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Memuat pembaruan tautan", "Dashboard.Progress.ReviewLink.Label": "Pembaruan tautan sudah siap", "Dashboard.Progress.ReviewLink.Action": "Tinjau", - "TestResults.TestCount": "%s input" + "TestResults.TestCount": "%s input", + "Common_Back": "Kembali", + "Common_Refresh": "refresh", + "Common_Collapse": "Tutup", + "Common_Expand": "Buka", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Januari", + "Common_Months_February": "Februari", + "Common_Months_March": "Maret", + "Common_Months_April": "April", + "Common_Months_May": "Mei", + "Common_Months_June": "Juni", + "Common_Months_July": "Juli", + "Common_Months_August": "Agustus", + "Common_Months_September": "September", + "Common_Months_October": "Oktober", + "Common_Months_November": "November", + "Common_Months_December": "Desember", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Gagal", + "Measurements_Ok": "Oke", + "Measurements_Anomaly": "Anomali", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Log", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Menguji", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/id/strings.xml b/probe-mobile/id/strings.xml index 2db5402..6d18e8c 100644 --- a/probe-mobile/id/strings.xml +++ b/probe-mobile/id/strings.xml @@ -581,4 +581,59 @@ Pembaruan tautan sudah siap Tinjau %s input + Kembali + refresh + Tutup + Buka + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Januari + Februari + Maret + April + Mei + Juni + Juli + Agustus + September + Oktober + November + Desember + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Gagal + Oke + Anomali + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Log + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Menguji + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ig/Localizable.strings b/probe-mobile/ig/Localizable.strings index 0192789..3145d21 100644 --- a/probe-mobile/ig/Localizable.strings +++ b/probe-mobile/ig/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/ig/strings.json b/probe-mobile/ig/strings.json index c2f58a7..65cc8d7 100644 --- a/probe-mobile/ig/strings.json +++ b/probe-mobile/ig/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/ig/strings.xml b/probe-mobile/ig/strings.xml index b34beec..605235b 100644 --- a/probe-mobile/ig/strings.xml +++ b/probe-mobile/ig/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/is/Localizable.strings b/probe-mobile/is/Localizable.strings index 7dc95ef..b5b6fb5 100644 --- a/probe-mobile/is/Localizable.strings +++ b/probe-mobile/is/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Til baka"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "janúar"; +"Common_Months_February" = "febrúar"; +"Common_Months_March" = "mars"; +"Common_Months_April" = "apríl"; +"Common_Months_May" = "maí"; +"Common_Months_June" = "júní"; +"Common_Months_July" = "júlí"; +"Common_Months_August" = "ágúst"; +"Common_Months_September" = "september"; +"Common_Months_October" = "október"; +"Common_Months_November" = "nóvember"; +"Common_Months_December" = "desember"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Mistókst"; +"Measurements_Ok" = "Í lagi"; +"Measurements_Anomaly" = "Frávik"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/is/strings.json b/probe-mobile/is/strings.json index da9e637..68f0d2f 100644 --- a/probe-mobile/is/strings.json +++ b/probe-mobile/is/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Til baka", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "janúar", + "Common_Months_February": "febrúar", + "Common_Months_March": "mars", + "Common_Months_April": "apríl", + "Common_Months_May": "maí", + "Common_Months_June": "júní", + "Common_Months_July": "júlí", + "Common_Months_August": "ágúst", + "Common_Months_September": "september", + "Common_Months_October": "október", + "Common_Months_November": "nóvember", + "Common_Months_December": "desember", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Mistókst", + "Measurements_Ok": "Í lagi", + "Measurements_Anomaly": "Frávik", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/is/strings.xml b/probe-mobile/is/strings.xml index 272bc64..b7d997d 100644 --- a/probe-mobile/is/strings.xml +++ b/probe-mobile/is/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Til baka + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + janúar + febrúar + mars + apríl + maí + júní + júlí + ágúst + september + október + nóvember + desember + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Mistókst + Í lagi + Frávik + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/it/Localizable.strings b/probe-mobile/it/Localizable.strings index cabaf8e..b935ecd 100644 --- a/probe-mobile/it/Localizable.strings +++ b/probe-mobile/it/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Rivedi"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Indietro"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collassa"; +"Common_Expand" = "Espandi"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Gennaio"; +"Common_Months_February" = "Febbraio"; +"Common_Months_March" = "Marzo"; +"Common_Months_April" = "Aprile"; +"Common_Months_May" = "Mag"; +"Common_Months_June" = "Giugno"; +"Common_Months_July" = "Luglio"; +"Common_Months_August" = "Agosto"; +"Common_Months_September" = "Settembre"; +"Common_Months_October" = "Ottobre"; +"Common_Months_November" = "Novembre"; +"Common_Months_December" = "Dicembre"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Fallito"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Log"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Verifica in corso"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/it/strings.json b/probe-mobile/it/strings.json index 9e19a7f..6f23ede 100644 --- a/probe-mobile/it/strings.json +++ b/probe-mobile/it/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Rivedi", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Indietro", + "Common_Refresh": "refresh", + "Common_Collapse": "Collassa", + "Common_Expand": "Espandi", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Gennaio", + "Common_Months_February": "Febbraio", + "Common_Months_March": "Marzo", + "Common_Months_April": "Aprile", + "Common_Months_May": "Mag", + "Common_Months_June": "Giugno", + "Common_Months_July": "Luglio", + "Common_Months_August": "Agosto", + "Common_Months_September": "Settembre", + "Common_Months_October": "Ottobre", + "Common_Months_November": "Novembre", + "Common_Months_December": "Dicembre", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Fallito", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Log", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Verifica in corso", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/it/strings.xml b/probe-mobile/it/strings.xml index 857ec97..e47b132 100644 --- a/probe-mobile/it/strings.xml +++ b/probe-mobile/it/strings.xml @@ -581,4 +581,59 @@ Link updates ready Rivedi %s inputs + Indietro + refresh + Collassa + Espandi + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Gennaio + Febbraio + Marzo + Aprile + Mag + Giugno + Luglio + Agosto + Settembre + Ottobre + Novembre + Dicembre + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Fallito + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Log + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Verifica in corso + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ja/Localizable.strings b/probe-mobile/ja/Localizable.strings index d4d1d56..c5513b4 100644 --- a/probe-mobile/ja/Localizable.strings +++ b/probe-mobile/ja/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "レビュー"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "戻る"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "折りたたむ"; +"Common_Expand" = "展開する"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "1 月"; +"Common_Months_February" = "2 月"; +"Common_Months_March" = "3 月"; +"Common_Months_April" = "4 月"; +"Common_Months_May" = "5 月"; +"Common_Months_June" = "6 月"; +"Common_Months_July" = "7 月"; +"Common_Months_August" = "8 月"; +"Common_Months_September" = "9 月"; +"Common_Months_October" = "10 月"; +"Common_Months_November" = "11 月"; +"Common_Months_December" = "12 月"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "失敗しました"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "ログ"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "テスト中"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/ja/strings.json b/probe-mobile/ja/strings.json index ab59632..1c8dd67 100644 --- a/probe-mobile/ja/strings.json +++ b/probe-mobile/ja/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "レビュー", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "戻る", + "Common_Refresh": "refresh", + "Common_Collapse": "折りたたむ", + "Common_Expand": "展開する", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "1 月", + "Common_Months_February": "2 月", + "Common_Months_March": "3 月", + "Common_Months_April": "4 月", + "Common_Months_May": "5 月", + "Common_Months_June": "6 月", + "Common_Months_July": "7 月", + "Common_Months_August": "8 月", + "Common_Months_September": "9 月", + "Common_Months_October": "10 月", + "Common_Months_November": "11 月", + "Common_Months_December": "12 月", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "失敗しました", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "ログ", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "テスト中", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/ja/strings.xml b/probe-mobile/ja/strings.xml index a865dac..f87126b 100644 --- a/probe-mobile/ja/strings.xml +++ b/probe-mobile/ja/strings.xml @@ -581,4 +581,59 @@ Link updates ready レビュー %s inputs + 戻る + refresh + 折りたたむ + 展開する + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + 1 月 + 2 月 + 3 月 + 4 月 + 5 月 + 6 月 + 7 月 + 8 月 + 9 月 + 10 月 + 11 月 + 12 月 + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + 失敗しました + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + ログ + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + テスト中 + Manual Run + Auto Run + VPN diff --git a/probe-mobile/km/Localizable.strings b/probe-mobile/km/Localizable.strings index 356e765..9636d49 100644 --- a/probe-mobile/km/Localizable.strings +++ b/probe-mobile/km/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "បច្ចុប្បន្នភាពតំណរភ្ជាប់រួចរាល់"; "Dashboard.Progress.ReviewLink.Action" = "ពិនិត្យ"; "TestResults.TestCount" = "%s ធាតុចូល"; +"Common_Back" = "ត្រលប់ក្រោយ"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "បង្រួម"; +"Common_Expand" = "ពង្រីក"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "ឧសភា​"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "បរាជ័យ"; +"Measurements_Ok" = "យល់ព្រម"; +"Measurements_Anomaly" = "ខុសប្រក្រតី"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "កំណត់ត្រា"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/km/strings.json b/probe-mobile/km/strings.json index 7372438..37c917d 100644 --- a/probe-mobile/km/strings.json +++ b/probe-mobile/km/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "បច្ចុប្បន្នភាពតំណរភ្ជាប់កំពុងបញ្ជូន", "Dashboard.Progress.ReviewLink.Label": "បច្ចុប្បន្នភាពតំណរភ្ជាប់រួចរាល់", "Dashboard.Progress.ReviewLink.Action": "ពិនិត្យ", - "TestResults.TestCount": "%s ធាតុចូល" + "TestResults.TestCount": "%s ធាតុចូល", + "Common_Back": "ត្រលប់ក្រោយ", + "Common_Refresh": "refresh", + "Common_Collapse": "បង្រួម", + "Common_Expand": "ពង្រីក", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "ឧសភា​", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "បរាជ័យ", + "Measurements_Ok": "យល់ព្រម", + "Measurements_Anomaly": "ខុសប្រក្រតី", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "កំណត់ត្រា", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/km/strings.xml b/probe-mobile/km/strings.xml index 1bb3bd2..c9f6b12 100644 --- a/probe-mobile/km/strings.xml +++ b/probe-mobile/km/strings.xml @@ -581,4 +581,59 @@ បច្ចុប្បន្នភាពតំណរភ្ជាប់រួចរាល់ ពិនិត្យ %s ធាតុចូល + ត្រលប់ក្រោយ + refresh + បង្រួម + ពង្រីក + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + ឧសភា​ + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + បរាជ័យ + យល់ព្រម + ខុសប្រក្រតី + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + កំណត់ត្រា + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/kn/Localizable.strings b/probe-mobile/kn/Localizable.strings index abf9bef..5ebbbff 100644 --- a/probe-mobile/kn/Localizable.strings +++ b/probe-mobile/kn/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "ಹಿಂದೆ"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "ಸರಿ"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "ಲಾಗ್‌ಗಳು"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/kn/strings.json b/probe-mobile/kn/strings.json index 518f7a7..21963d1 100644 --- a/probe-mobile/kn/strings.json +++ b/probe-mobile/kn/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "ಹಿಂದೆ", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "ಸರಿ", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "ಲಾಗ್‌ಗಳು", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/kn/strings.xml b/probe-mobile/kn/strings.xml index 250a63b..2f1ef29 100644 --- a/probe-mobile/kn/strings.xml +++ b/probe-mobile/kn/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + ಹಿಂದೆ + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + ಸರಿ + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + ಲಾಗ್‌ಗಳು + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ko/Localizable.strings b/probe-mobile/ko/Localizable.strings index ce3be2b..fd56bec 100644 --- a/probe-mobile/ko/Localizable.strings +++ b/probe-mobile/ko/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "리뷰"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "뒤로"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "축소"; +"Common_Expand" = "확장"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "1월"; +"Common_Months_February" = "2월"; +"Common_Months_March" = "3월"; +"Common_Months_April" = "4월"; +"Common_Months_May" = "5월"; +"Common_Months_June" = "6월"; +"Common_Months_July" = "7월"; +"Common_Months_August" = "8월"; +"Common_Months_September" = "9월"; +"Common_Months_October" = "10월"; +"Common_Months_November" = "11월"; +"Common_Months_December" = "12월"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "실패"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "로그"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "시험중"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/ko/strings.json b/probe-mobile/ko/strings.json index 6002d59..254ebbd 100644 --- a/probe-mobile/ko/strings.json +++ b/probe-mobile/ko/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "리뷰", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "뒤로", + "Common_Refresh": "refresh", + "Common_Collapse": "축소", + "Common_Expand": "확장", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "1월", + "Common_Months_February": "2월", + "Common_Months_March": "3월", + "Common_Months_April": "4월", + "Common_Months_May": "5월", + "Common_Months_June": "6월", + "Common_Months_July": "7월", + "Common_Months_August": "8월", + "Common_Months_September": "9월", + "Common_Months_October": "10월", + "Common_Months_November": "11월", + "Common_Months_December": "12월", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "실패", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "로그", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "시험중", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/ko/strings.xml b/probe-mobile/ko/strings.xml index acc6396..adabcbc 100644 --- a/probe-mobile/ko/strings.xml +++ b/probe-mobile/ko/strings.xml @@ -581,4 +581,59 @@ Link updates ready 리뷰 %s inputs + 뒤로 + refresh + 축소 + 확장 + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + 1월 + 2월 + 3월 + 4월 + 5월 + 6월 + 7월 + 8월 + 9월 + 10월 + 11월 + 12월 + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + 실패 + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + 로그 + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + 시험중 + Manual Run + Auto Run + VPN diff --git a/probe-mobile/mk/Localizable.strings b/probe-mobile/mk/Localizable.strings index cfaf8d6..ee97fa0 100644 --- a/probe-mobile/mk/Localizable.strings +++ b/probe-mobile/mk/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Прегледај"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Назад"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Колапс"; +"Common_Expand" = "Прошири"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Јануари"; +"Common_Months_February" = "Февруари"; +"Common_Months_March" = "Март"; +"Common_Months_April" = "Април"; +"Common_Months_May" = "Мај"; +"Common_Months_June" = "Јуни"; +"Common_Months_July" = "Јули"; +"Common_Months_August" = "Август"; +"Common_Months_September" = "Септември"; +"Common_Months_October" = "Октомври"; +"Common_Months_November" = "Ноември"; +"Common_Months_December" = "Декември"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Не успеа"; +"Measurements_Ok" = "ОК"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/mk/strings.json b/probe-mobile/mk/strings.json index 1ecabd6..940de66 100644 --- a/probe-mobile/mk/strings.json +++ b/probe-mobile/mk/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Прегледај", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Назад", + "Common_Refresh": "refresh", + "Common_Collapse": "Колапс", + "Common_Expand": "Прошири", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Јануари", + "Common_Months_February": "Февруари", + "Common_Months_March": "Март", + "Common_Months_April": "Април", + "Common_Months_May": "Мај", + "Common_Months_June": "Јуни", + "Common_Months_July": "Јули", + "Common_Months_August": "Август", + "Common_Months_September": "Септември", + "Common_Months_October": "Октомври", + "Common_Months_November": "Ноември", + "Common_Months_December": "Декември", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Не успеа", + "Measurements_Ok": "ОК", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/mk/strings.xml b/probe-mobile/mk/strings.xml index 8a771f6..7f1b5bb 100644 --- a/probe-mobile/mk/strings.xml +++ b/probe-mobile/mk/strings.xml @@ -581,4 +581,59 @@ Link updates ready Прегледај %s inputs + Назад + refresh + Колапс + Прошири + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Јануари + Февруари + Март + Април + Мај + Јуни + Јули + Август + Септември + Октомври + Ноември + Декември + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Не успеа + ОК + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ms/Localizable.strings b/probe-mobile/ms/Localizable.strings index bb09084..2ce6ed6 100644 --- a/probe-mobile/ms/Localizable.strings +++ b/probe-mobile/ms/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Kembali"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Runtuhkan"; +"Common_Expand" = "Kembangkan"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Gagal"; +"Measurements_Ok" = "Baiklah"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "Apps"; diff --git a/probe-mobile/ms/strings.json b/probe-mobile/ms/strings.json index afbd659..d29bd07 100644 --- a/probe-mobile/ms/strings.json +++ b/probe-mobile/ms/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Kembali", + "Common_Refresh": "refresh", + "Common_Collapse": "Runtuhkan", + "Common_Expand": "Kembangkan", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Gagal", + "Measurements_Ok": "Baiklah", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "Apps" } \ No newline at end of file diff --git a/probe-mobile/ms/strings.xml b/probe-mobile/ms/strings.xml index bbfe0ec..7f3a5da 100644 --- a/probe-mobile/ms/strings.xml +++ b/probe-mobile/ms/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Kembali + refresh + Runtuhkan + Kembangkan + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Gagal + Baiklah + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + Apps diff --git a/probe-mobile/my/Localizable.strings b/probe-mobile/my/Localizable.strings index 2173bf9..781a720 100644 --- a/probe-mobile/my/Localizable.strings +++ b/probe-mobile/my/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "နောက်သို့"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "ချုံ့မည်"; +"Common_Expand" = "ချဲ့မည်"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "မအောင်မြင်ပါ"; +"Measurements_Ok" = "အိုကေ"; +"Measurements_Anomaly" = "မူမမှန်ချက်"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "မှတ်တမ်းများ"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/my/strings.json b/probe-mobile/my/strings.json index a51996e..b7054be 100644 --- a/probe-mobile/my/strings.json +++ b/probe-mobile/my/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "နောက်သို့", + "Common_Refresh": "refresh", + "Common_Collapse": "ချုံ့မည်", + "Common_Expand": "ချဲ့မည်", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "မအောင်မြင်ပါ", + "Measurements_Ok": "အိုကေ", + "Measurements_Anomaly": "မူမမှန်ချက်", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "မှတ်တမ်းများ", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/my/strings.xml b/probe-mobile/my/strings.xml index 4b7e6aa..7c7192c 100644 --- a/probe-mobile/my/strings.xml +++ b/probe-mobile/my/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + နောက်သို့ + refresh + ချုံ့မည် + ချဲ့မည် + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + မအောင်မြင်ပါ + အိုကေ + မူမမှန်ချက် + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + မှတ်တမ်းများ + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/nb/Localizable.strings b/probe-mobile/nb/Localizable.strings index 91a09c1..6c86943 100644 --- a/probe-mobile/nb/Localizable.strings +++ b/probe-mobile/nb/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Ettergå"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Tilbake"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Mislyktes"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logger"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Tester"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/nb/strings.json b/probe-mobile/nb/strings.json index 4472193..adb91ff 100644 --- a/probe-mobile/nb/strings.json +++ b/probe-mobile/nb/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Ettergå", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Tilbake", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Mislyktes", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logger", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Tester", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/nb/strings.xml b/probe-mobile/nb/strings.xml index 8d983a5..f535329 100644 --- a/probe-mobile/nb/strings.xml +++ b/probe-mobile/nb/strings.xml @@ -581,4 +581,59 @@ Link updates ready Ettergå %s inputs + Tilbake + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Mislyktes + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logger + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Tester + Manual Run + Auto Run + VPN diff --git a/probe-mobile/nd/Localizable.strings b/probe-mobile/nd/Localizable.strings index 01dfadf..f23aa11 100644 --- a/probe-mobile/nd/Localizable.strings +++ b/probe-mobile/nd/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/nd/strings.json b/probe-mobile/nd/strings.json index 9745ed3..a3007ef 100644 --- a/probe-mobile/nd/strings.json +++ b/probe-mobile/nd/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/nd/strings.xml b/probe-mobile/nd/strings.xml index 7d41776..b089eab 100644 --- a/probe-mobile/nd/strings.xml +++ b/probe-mobile/nd/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ne/Localizable.strings b/probe-mobile/ne/Localizable.strings index 7f18a99..d2589e5 100644 --- a/probe-mobile/ne/Localizable.strings +++ b/probe-mobile/ne/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "खुम्च्याउने"; +"Common_Expand" = "फैलाउने"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/ne/strings.json b/probe-mobile/ne/strings.json index b626885..63d137a 100644 --- a/probe-mobile/ne/strings.json +++ b/probe-mobile/ne/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "खुम्च्याउने", + "Common_Expand": "फैलाउने", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/ne/strings.xml b/probe-mobile/ne/strings.xml index fc24e11..244499f 100644 --- a/probe-mobile/ne/strings.xml +++ b/probe-mobile/ne/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + खुम्च्याउने + फैलाउने + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/nl/Localizable.strings b/probe-mobile/nl/Localizable.strings index 69be582..1240102 100644 --- a/probe-mobile/nl/Localizable.strings +++ b/probe-mobile/nl/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Beoordeling"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Terug"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Inklappen"; +"Common_Expand" = "Uitklappen"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "januari"; +"Common_Months_February" = "februari"; +"Common_Months_March" = "maart"; +"Common_Months_April" = "april"; +"Common_Months_May" = "mei"; +"Common_Months_June" = "juni"; +"Common_Months_July" = "juli"; +"Common_Months_August" = "augustus"; +"Common_Months_September" = "september"; +"Common_Months_October" = "oktober"; +"Common_Months_November" = "november"; +"Common_Months_December" = "december"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Mislukt"; +"Measurements_Ok" = "Oke"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logboeken"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testen "; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/nl/strings.json b/probe-mobile/nl/strings.json index a82c8ff..e5233bc 100644 --- a/probe-mobile/nl/strings.json +++ b/probe-mobile/nl/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Beoordeling", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Terug", + "Common_Refresh": "refresh", + "Common_Collapse": "Inklappen", + "Common_Expand": "Uitklappen", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "januari", + "Common_Months_February": "februari", + "Common_Months_March": "maart", + "Common_Months_April": "april", + "Common_Months_May": "mei", + "Common_Months_June": "juni", + "Common_Months_July": "juli", + "Common_Months_August": "augustus", + "Common_Months_September": "september", + "Common_Months_October": "oktober", + "Common_Months_November": "november", + "Common_Months_December": "december", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Mislukt", + "Measurements_Ok": "Oke", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logboeken", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testen ", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/nl/strings.xml b/probe-mobile/nl/strings.xml index 1c5057b..9da6527 100644 --- a/probe-mobile/nl/strings.xml +++ b/probe-mobile/nl/strings.xml @@ -581,4 +581,59 @@ Link updates ready Beoordeling %s inputs + Terug + refresh + Inklappen + Uitklappen + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + januari + februari + maart + april + mei + juni + juli + augustus + september + oktober + november + december + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Mislukt + Oke + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logboeken + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testen + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ny/Localizable.strings b/probe-mobile/ny/Localizable.strings index 81744b3..fa84d9d 100644 --- a/probe-mobile/ny/Localizable.strings +++ b/probe-mobile/ny/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/ny/strings.json b/probe-mobile/ny/strings.json index 088f23c..a6f66a6 100644 --- a/probe-mobile/ny/strings.json +++ b/probe-mobile/ny/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/ny/strings.xml b/probe-mobile/ny/strings.xml index 877693c..99f0fc2 100644 --- a/probe-mobile/ny/strings.xml +++ b/probe-mobile/ny/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ny_MW/Localizable.strings b/probe-mobile/ny_MW/Localizable.strings index 29fa50d..47af908 100644 --- a/probe-mobile/ny_MW/Localizable.strings +++ b/probe-mobile/ny_MW/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/ny_MW/strings.json b/probe-mobile/ny_MW/strings.json index 235e31e..a504025 100644 --- a/probe-mobile/ny_MW/strings.json +++ b/probe-mobile/ny_MW/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/ny_MW/strings.xml b/probe-mobile/ny_MW/strings.xml index 6399c5d..82b0832 100644 --- a/probe-mobile/ny_MW/strings.xml +++ b/probe-mobile/ny_MW/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/pa_IN/Localizable.strings b/probe-mobile/pa_IN/Localizable.strings index b4ec531..9cd2d41 100644 --- a/probe-mobile/pa_IN/Localizable.strings +++ b/probe-mobile/pa_IN/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/pa_IN/strings.json b/probe-mobile/pa_IN/strings.json index 6b07a02..1263a00 100644 --- a/probe-mobile/pa_IN/strings.json +++ b/probe-mobile/pa_IN/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/pa_IN/strings.xml b/probe-mobile/pa_IN/strings.xml index 5404f58..d43aa17 100644 --- a/probe-mobile/pa_IN/strings.xml +++ b/probe-mobile/pa_IN/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/pl/Localizable.strings b/probe-mobile/pl/Localizable.strings index d8d5357..15d0413 100644 --- a/probe-mobile/pl/Localizable.strings +++ b/probe-mobile/pl/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Przegląd"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Wstecz"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Zwiń"; +"Common_Expand" = "Rozwiń"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "styczeń"; +"Common_Months_February" = "luty"; +"Common_Months_March" = "marzec"; +"Common_Months_April" = "kwiecień"; +"Common_Months_May" = "maj"; +"Common_Months_June" = "czerwiec"; +"Common_Months_July" = "lipiec"; +"Common_Months_August" = "sierpień"; +"Common_Months_September" = "wrzesień"; +"Common_Months_October" = "październik"; +"Common_Months_November" = "listopad"; +"Common_Months_December" = "grudzień"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Nieudane"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Dziennik"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testuję"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/pl/strings.json b/probe-mobile/pl/strings.json index c5c15b6..a7b5c4e 100644 --- a/probe-mobile/pl/strings.json +++ b/probe-mobile/pl/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Przegląd", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Wstecz", + "Common_Refresh": "refresh", + "Common_Collapse": "Zwiń", + "Common_Expand": "Rozwiń", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "styczeń", + "Common_Months_February": "luty", + "Common_Months_March": "marzec", + "Common_Months_April": "kwiecień", + "Common_Months_May": "maj", + "Common_Months_June": "czerwiec", + "Common_Months_July": "lipiec", + "Common_Months_August": "sierpień", + "Common_Months_September": "wrzesień", + "Common_Months_October": "październik", + "Common_Months_November": "listopad", + "Common_Months_December": "grudzień", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Nieudane", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Dziennik", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testuję", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/pl/strings.xml b/probe-mobile/pl/strings.xml index 79668cf..35af733 100644 --- a/probe-mobile/pl/strings.xml +++ b/probe-mobile/pl/strings.xml @@ -581,4 +581,59 @@ Link updates ready Przegląd %s inputs + Wstecz + refresh + Zwiń + Rozwiń + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + styczeń + luty + marzec + kwiecień + maj + czerwiec + lipiec + sierpień + wrzesień + październik + listopad + grudzień + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Nieudane + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Dziennik + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testuję + Manual Run + Auto Run + VPN diff --git a/probe-mobile/pt_BR/Localizable.strings b/probe-mobile/pt_BR/Localizable.strings index 9e74246..f2c1d32 100644 --- a/probe-mobile/pt_BR/Localizable.strings +++ b/probe-mobile/pt_BR/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Atualizações de link prontas"; "Dashboard.Progress.ReviewLink.Action" = "Revisar"; "TestResults.TestCount" = "%s Entradas"; +"Common_Back" = "Voltar"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Colapso"; +"Common_Expand" = "Expandir"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Janeiro"; +"Common_Months_February" = "Fevereiro"; +"Common_Months_March" = "Março"; +"Common_Months_April" = "Abril"; +"Common_Months_May" = "Maio"; +"Common_Months_June" = "Junho"; +"Common_Months_July" = "Julho"; +"Common_Months_August" = "Agosto"; +"Common_Months_September" = "Setembro"; +"Common_Months_October" = "Outubro"; +"Common_Months_November" = "Novembro"; +"Common_Months_December" = "Dezembro"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Falha"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomalia"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testando"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/pt_BR/strings.json b/probe-mobile/pt_BR/strings.json index cdb4704..2f6ae8f 100644 --- a/probe-mobile/pt_BR/strings.json +++ b/probe-mobile/pt_BR/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Carregamento de atualizações de link", "Dashboard.Progress.ReviewLink.Label": "Atualizações de link prontas", "Dashboard.Progress.ReviewLink.Action": "Revisar", - "TestResults.TestCount": "%s Entradas" + "TestResults.TestCount": "%s Entradas", + "Common_Back": "Voltar", + "Common_Refresh": "refresh", + "Common_Collapse": "Colapso", + "Common_Expand": "Expandir", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Janeiro", + "Common_Months_February": "Fevereiro", + "Common_Months_March": "Março", + "Common_Months_April": "Abril", + "Common_Months_May": "Maio", + "Common_Months_June": "Junho", + "Common_Months_July": "Julho", + "Common_Months_August": "Agosto", + "Common_Months_September": "Setembro", + "Common_Months_October": "Outubro", + "Common_Months_November": "Novembro", + "Common_Months_December": "Dezembro", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Falha", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomalia", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testando", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/pt_BR/strings.xml b/probe-mobile/pt_BR/strings.xml index 2248f95..09ad4b3 100644 --- a/probe-mobile/pt_BR/strings.xml +++ b/probe-mobile/pt_BR/strings.xml @@ -581,4 +581,59 @@ Atualizações de link prontas Revisar %s Entradas + Voltar + refresh + Colapso + Expandir + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Janeiro + Fevereiro + Março + Abril + Maio + Junho + Julho + Agosto + Setembro + Outubro + Novembro + Dezembro + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Falha + OK + Anomalia + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testando + Manual Run + Auto Run + VPN diff --git a/probe-mobile/pt_MZ/Localizable.strings b/probe-mobile/pt_MZ/Localizable.strings index 13da23c..bb8afea 100644 --- a/probe-mobile/pt_MZ/Localizable.strings +++ b/probe-mobile/pt_MZ/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/pt_MZ/strings.json b/probe-mobile/pt_MZ/strings.json index a743825..bfa119f 100644 --- a/probe-mobile/pt_MZ/strings.json +++ b/probe-mobile/pt_MZ/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/pt_MZ/strings.xml b/probe-mobile/pt_MZ/strings.xml index f1a09ad..bc6975c 100644 --- a/probe-mobile/pt_MZ/strings.xml +++ b/probe-mobile/pt_MZ/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ro/Localizable.strings b/probe-mobile/ro/Localizable.strings index f2aa52a..7b25873 100644 --- a/probe-mobile/ro/Localizable.strings +++ b/probe-mobile/ro/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Revizuire"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Înapoi"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Restrânge"; +"Common_Expand" = "Extinde"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Ianuarie"; +"Common_Months_February" = "Februarie"; +"Common_Months_March" = "Martie"; +"Common_Months_April" = "Aprilie"; +"Common_Months_May" = "Mai"; +"Common_Months_June" = "Iunie"; +"Common_Months_July" = "Iulie"; +"Common_Months_August" = "August"; +"Common_Months_September" = "Septembrie"; +"Common_Months_October" = "Octombrie"; +"Common_Months_November" = "Noiembrie"; +"Common_Months_December" = "Decembrie"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Acţiunea a eşuat"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Jurnale"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testare"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/ro/strings.json b/probe-mobile/ro/strings.json index 414b836..4aecb2a 100644 --- a/probe-mobile/ro/strings.json +++ b/probe-mobile/ro/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Revizuire", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Înapoi", + "Common_Refresh": "refresh", + "Common_Collapse": "Restrânge", + "Common_Expand": "Extinde", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Ianuarie", + "Common_Months_February": "Februarie", + "Common_Months_March": "Martie", + "Common_Months_April": "Aprilie", + "Common_Months_May": "Mai", + "Common_Months_June": "Iunie", + "Common_Months_July": "Iulie", + "Common_Months_August": "August", + "Common_Months_September": "Septembrie", + "Common_Months_October": "Octombrie", + "Common_Months_November": "Noiembrie", + "Common_Months_December": "Decembrie", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Acţiunea a eşuat", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Jurnale", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testare", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/ro/strings.xml b/probe-mobile/ro/strings.xml index f2e47b6..33f99fb 100644 --- a/probe-mobile/ro/strings.xml +++ b/probe-mobile/ro/strings.xml @@ -581,4 +581,59 @@ Link updates ready Revizuire %s inputs + Înapoi + refresh + Restrânge + Extinde + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Ianuarie + Februarie + Martie + Aprilie + Mai + Iunie + Iulie + August + Septembrie + Octombrie + Noiembrie + Decembrie + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Acţiunea a eşuat + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Jurnale + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testare + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ru/Localizable.strings b/probe-mobile/ru/Localizable.strings index f066cf3..87ca2fe 100644 --- a/probe-mobile/ru/Localizable.strings +++ b/probe-mobile/ru/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Обновления ссылки готовы"; "Dashboard.Progress.ReviewLink.Action" = "Просмотреть"; "TestResults.TestCount" = "%s изменений"; +"Common_Back" = "вернуться и отредактировать"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Закрыть"; +"Common_Expand" = "Открыть"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Январь"; +"Common_Months_February" = "Февраль"; +"Common_Months_March" = "Март"; +"Common_Months_April" = "Апрель"; +"Common_Months_May" = "Май"; +"Common_Months_June" = "Июнь"; +"Common_Months_July" = "Июль"; +"Common_Months_August" = "Август"; +"Common_Months_September" = "Сентябрь"; +"Common_Months_October" = "Октябрь"; +"Common_Months_November" = "Ноябрь"; +"Common_Months_December" = "Декабрь"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Ошибка"; +"Measurements_Ok" = "ОК"; +"Measurements_Anomaly" = "Аномалия"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Журналы"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Проверка"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/ru/strings.json b/probe-mobile/ru/strings.json index 788605b..d9641fd 100644 --- a/probe-mobile/ru/strings.json +++ b/probe-mobile/ru/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Обновления ссылки загружаются", "Dashboard.Progress.ReviewLink.Label": "Обновления ссылки готовы", "Dashboard.Progress.ReviewLink.Action": "Просмотреть", - "TestResults.TestCount": "%s изменений" + "TestResults.TestCount": "%s изменений", + "Common_Back": "вернуться и отредактировать", + "Common_Refresh": "refresh", + "Common_Collapse": "Закрыть", + "Common_Expand": "Открыть", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Январь", + "Common_Months_February": "Февраль", + "Common_Months_March": "Март", + "Common_Months_April": "Апрель", + "Common_Months_May": "Май", + "Common_Months_June": "Июнь", + "Common_Months_July": "Июль", + "Common_Months_August": "Август", + "Common_Months_September": "Сентябрь", + "Common_Months_October": "Октябрь", + "Common_Months_November": "Ноябрь", + "Common_Months_December": "Декабрь", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Ошибка", + "Measurements_Ok": "ОК", + "Measurements_Anomaly": "Аномалия", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Журналы", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Проверка", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/ru/strings.xml b/probe-mobile/ru/strings.xml index bc7d450..b7b9800 100644 --- a/probe-mobile/ru/strings.xml +++ b/probe-mobile/ru/strings.xml @@ -581,4 +581,59 @@ Обновления ссылки готовы Просмотреть %s изменений + вернуться и отредактировать + refresh + Закрыть + Открыть + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Январь + Февраль + Март + Апрель + Май + Июнь + Июль + Август + Сентябрь + Октябрь + Ноябрь + Декабрь + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Ошибка + ОК + Аномалия + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Журналы + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Проверка + Manual Run + Auto Run + VPN diff --git a/probe-mobile/sk/Localizable.strings b/probe-mobile/sk/Localizable.strings index 47fc632..a4a57ba 100644 --- a/probe-mobile/sk/Localizable.strings +++ b/probe-mobile/sk/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Preveriť"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Späť"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Zbaliť"; +"Common_Expand" = "Rozbaliť"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Január"; +"Common_Months_February" = "Február"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Zlyhalo"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Záznamy"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/sk/strings.json b/probe-mobile/sk/strings.json index 2ca1ff7..addb438 100644 --- a/probe-mobile/sk/strings.json +++ b/probe-mobile/sk/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Preveriť", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Späť", + "Common_Refresh": "refresh", + "Common_Collapse": "Zbaliť", + "Common_Expand": "Rozbaliť", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Január", + "Common_Months_February": "Február", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Zlyhalo", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Záznamy", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/sk/strings.xml b/probe-mobile/sk/strings.xml index cc55751..46b1971 100644 --- a/probe-mobile/sk/strings.xml +++ b/probe-mobile/sk/strings.xml @@ -581,4 +581,59 @@ Link updates ready Preveriť %s inputs + Späť + refresh + Zbaliť + Rozbaliť + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Január + Február + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Zlyhalo + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Záznamy + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/sl/Localizable.strings b/probe-mobile/sl/Localizable.strings index 98c3c11..80b96a5 100644 --- a/probe-mobile/sl/Localizable.strings +++ b/probe-mobile/sl/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Nazaj"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Spodletelo"; +"Measurements_Ok" = "V redu"; +"Measurements_Anomaly" = "Anomalija"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Dnevniške datoteke"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Preizkušanje"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/sl/strings.json b/probe-mobile/sl/strings.json index 1486ad6..760b25e 100644 --- a/probe-mobile/sl/strings.json +++ b/probe-mobile/sl/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Nazaj", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Spodletelo", + "Measurements_Ok": "V redu", + "Measurements_Anomaly": "Anomalija", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Dnevniške datoteke", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Preizkušanje", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/sl/strings.xml b/probe-mobile/sl/strings.xml index b79082b..aec7bb0 100644 --- a/probe-mobile/sl/strings.xml +++ b/probe-mobile/sl/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Nazaj + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Spodletelo + V redu + Anomalija + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Dnevniške datoteke + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Preizkušanje + Manual Run + Auto Run + VPN diff --git a/probe-mobile/sn/Localizable.strings b/probe-mobile/sn/Localizable.strings index 945f771..9b01343 100644 --- a/probe-mobile/sn/Localizable.strings +++ b/probe-mobile/sn/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Dzokera shure"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Yakundika"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Matarwa emakare"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/sn/strings.json b/probe-mobile/sn/strings.json index 67e4ae4..dc2ee05 100644 --- a/probe-mobile/sn/strings.json +++ b/probe-mobile/sn/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Dzokera shure", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Yakundika", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Matarwa emakare", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/sn/strings.xml b/probe-mobile/sn/strings.xml index 8091f50..6dd87c6 100644 --- a/probe-mobile/sn/strings.xml +++ b/probe-mobile/sn/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Dzokera shure + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Yakundika + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Matarwa emakare + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/sq/Localizable.strings b/probe-mobile/sq/Localizable.strings index 97ec734..54314f7 100644 --- a/probe-mobile/sq/Localizable.strings +++ b/probe-mobile/sq/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Shqyrtoni"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Mbrapa"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Tkurre"; +"Common_Expand" = "Zgjeroje"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Janar"; +"Common_Months_February" = "Shkurt"; +"Common_Months_March" = "Mars"; +"Common_Months_April" = "Prill"; +"Common_Months_May" = "Maj"; +"Common_Months_June" = "Qershor"; +"Common_Months_July" = "Korrik"; +"Common_Months_August" = "Gusht"; +"Common_Months_September" = "Shtator"; +"Common_Months_October" = "Tetor"; +"Common_Months_November" = "Nëntor"; +"Common_Months_December" = "Dhjetor"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Të dështuar"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Shënime"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testim"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/sq/strings.json b/probe-mobile/sq/strings.json index 6d1cae8..61f7b73 100644 --- a/probe-mobile/sq/strings.json +++ b/probe-mobile/sq/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Shqyrtoni", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Mbrapa", + "Common_Refresh": "refresh", + "Common_Collapse": "Tkurre", + "Common_Expand": "Zgjeroje", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Janar", + "Common_Months_February": "Shkurt", + "Common_Months_March": "Mars", + "Common_Months_April": "Prill", + "Common_Months_May": "Maj", + "Common_Months_June": "Qershor", + "Common_Months_July": "Korrik", + "Common_Months_August": "Gusht", + "Common_Months_September": "Shtator", + "Common_Months_October": "Tetor", + "Common_Months_November": "Nëntor", + "Common_Months_December": "Dhjetor", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Të dështuar", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Shënime", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testim", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/sq/strings.xml b/probe-mobile/sq/strings.xml index 0f9404b..49e94da 100644 --- a/probe-mobile/sq/strings.xml +++ b/probe-mobile/sq/strings.xml @@ -581,4 +581,59 @@ Link updates ready Shqyrtoni %s inputs + Mbrapa + refresh + Tkurre + Zgjeroje + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Janar + Shkurt + Mars + Prill + Maj + Qershor + Korrik + Gusht + Shtator + Tetor + Nëntor + Dhjetor + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Të dështuar + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Shënime + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testim + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ss/Localizable.strings b/probe-mobile/ss/Localizable.strings index 7555f81..e2d936f 100644 --- a/probe-mobile/ss/Localizable.strings +++ b/probe-mobile/ss/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/ss/strings.json b/probe-mobile/ss/strings.json index 9e605a6..30fb958 100644 --- a/probe-mobile/ss/strings.json +++ b/probe-mobile/ss/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/ss/strings.xml b/probe-mobile/ss/strings.xml index 63c0cea..770371b 100644 --- a/probe-mobile/ss/strings.xml +++ b/probe-mobile/ss/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/sv/Localizable.strings b/probe-mobile/sv/Localizable.strings index 866576a..901be0e 100644 --- a/probe-mobile/sv/Localizable.strings +++ b/probe-mobile/sv/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Tillbaka"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Fäll ihop"; +"Common_Expand" = "Fäll ut"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Januari"; +"Common_Months_February" = "Februari"; +"Common_Months_March" = "Mars"; +"Common_Months_April" = "April"; +"Common_Months_May" = "Maj"; +"Common_Months_June" = "Juni"; +"Common_Months_July" = "Juli"; +"Common_Months_August" = "Augusti"; +"Common_Months_September" = "September"; +"Common_Months_October" = "Oktober"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Misslyckade"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Loggar"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/sv/strings.json b/probe-mobile/sv/strings.json index 1eb6b74..d1f368c 100644 --- a/probe-mobile/sv/strings.json +++ b/probe-mobile/sv/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Tillbaka", + "Common_Refresh": "refresh", + "Common_Collapse": "Fäll ihop", + "Common_Expand": "Fäll ut", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Januari", + "Common_Months_February": "Februari", + "Common_Months_March": "Mars", + "Common_Months_April": "April", + "Common_Months_May": "Maj", + "Common_Months_June": "Juni", + "Common_Months_July": "Juli", + "Common_Months_August": "Augusti", + "Common_Months_September": "September", + "Common_Months_October": "Oktober", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Misslyckade", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Loggar", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/sv/strings.xml b/probe-mobile/sv/strings.xml index 9572d54..b09d2d6 100644 --- a/probe-mobile/sv/strings.xml +++ b/probe-mobile/sv/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Tillbaka + refresh + Fäll ihop + Fäll ut + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Januari + Februari + Mars + April + Maj + Juni + Juli + Augusti + September + Oktober + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Misslyckade + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Loggar + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/sw/Localizable.strings b/probe-mobile/sw/Localizable.strings index ee99cf6..98f6dae 100644 --- a/probe-mobile/sw/Localizable.strings +++ b/probe-mobile/sw/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Masasisho ya viungo tayari"; "Dashboard.Progress.ReviewLink.Action" = "Hakiki"; "TestResults.TestCount" = "%smaingizo"; +"Common_Back" = "Nyuma"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Angusha"; +"Common_Expand" = "Panua"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Imeshindwa"; +"Measurements_Ok" = "Sawa"; +"Measurements_Anomaly" = "haipo sawa"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Kumbukumbu"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/sw/strings.json b/probe-mobile/sw/strings.json index c3d3240..e779fed 100644 --- a/probe-mobile/sw/strings.json +++ b/probe-mobile/sw/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Inapakia masasisho ya kiungo", "Dashboard.Progress.ReviewLink.Label": "Masasisho ya viungo tayari", "Dashboard.Progress.ReviewLink.Action": "Hakiki", - "TestResults.TestCount": "%smaingizo" + "TestResults.TestCount": "%smaingizo", + "Common_Back": "Nyuma", + "Common_Refresh": "refresh", + "Common_Collapse": "Angusha", + "Common_Expand": "Panua", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Imeshindwa", + "Measurements_Ok": "Sawa", + "Measurements_Anomaly": "haipo sawa", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Kumbukumbu", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/sw/strings.xml b/probe-mobile/sw/strings.xml index e68d680..856a4a2 100644 --- a/probe-mobile/sw/strings.xml +++ b/probe-mobile/sw/strings.xml @@ -581,4 +581,59 @@ Masasisho ya viungo tayari Hakiki %smaingizo + Nyuma + refresh + Angusha + Panua + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Imeshindwa + Sawa + haipo sawa + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Kumbukumbu + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/th/Localizable.strings b/probe-mobile/th/Localizable.strings index dfed1c9..f1dc270 100644 --- a/probe-mobile/th/Localizable.strings +++ b/probe-mobile/th/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "ย้อนกลับ"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "ยุบ"; +"Common_Expand" = "ขยาย"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "พ.ค."; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "ล้มเหลว"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "ผิดปกติ"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "ปูม"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/th/strings.json b/probe-mobile/th/strings.json index cc206b7..fce1e99 100644 --- a/probe-mobile/th/strings.json +++ b/probe-mobile/th/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "ย้อนกลับ", + "Common_Refresh": "refresh", + "Common_Collapse": "ยุบ", + "Common_Expand": "ขยาย", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "พ.ค.", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "ล้มเหลว", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "ผิดปกติ", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "ปูม", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/th/strings.xml b/probe-mobile/th/strings.xml index c5cf3c5..62b7360 100644 --- a/probe-mobile/th/strings.xml +++ b/probe-mobile/th/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + ย้อนกลับ + refresh + ยุบ + ขยาย + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + พ.ค. + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + ล้มเหลว + OK + ผิดปกติ + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + ปูม + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/tk_TM/Localizable.strings b/probe-mobile/tk_TM/Localizable.strings index 0192789..3145d21 100644 --- a/probe-mobile/tk_TM/Localizable.strings +++ b/probe-mobile/tk_TM/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/tk_TM/strings.json b/probe-mobile/tk_TM/strings.json index c2f58a7..65cc8d7 100644 --- a/probe-mobile/tk_TM/strings.json +++ b/probe-mobile/tk_TM/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/tk_TM/strings.xml b/probe-mobile/tk_TM/strings.xml index b34beec..605235b 100644 --- a/probe-mobile/tk_TM/strings.xml +++ b/probe-mobile/tk_TM/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/tr/Localizable.strings b/probe-mobile/tr/Localizable.strings index 43b8520..86beccd 100644 --- a/probe-mobile/tr/Localizable.strings +++ b/probe-mobile/tr/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Bağlantı güncellemeleri hazır"; "Dashboard.Progress.ReviewLink.Action" = "Gözden geçir"; "TestResults.TestCount" = "%s giriş"; +"Common_Back" = "Geri"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Daralt"; +"Common_Expand" = "Genişlet"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Ocak"; +"Common_Months_February" = "Şubat"; +"Common_Months_March" = "Mart"; +"Common_Months_April" = "Nisan"; +"Common_Months_May" = "Mayıs"; +"Common_Months_June" = "Haziran"; +"Common_Months_July" = "Temmuz"; +"Common_Months_August" = "Ağustos"; +"Common_Months_September" = "Eylül"; +"Common_Months_October" = "Ekim"; +"Common_Months_November" = "Kasım"; +"Common_Months_December" = "Aralık"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Tamamlanamadı"; +"Measurements_Ok" = "Tamam"; +"Measurements_Anomaly" = "Anormallik"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Günlükler"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/tr/strings.json b/probe-mobile/tr/strings.json index f748eb6..0fe938b 100644 --- a/probe-mobile/tr/strings.json +++ b/probe-mobile/tr/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Bağlantı güncellemeleri yükleniyor", "Dashboard.Progress.ReviewLink.Label": "Bağlantı güncellemeleri hazır", "Dashboard.Progress.ReviewLink.Action": "Gözden geçir", - "TestResults.TestCount": "%s giriş" + "TestResults.TestCount": "%s giriş", + "Common_Back": "Geri", + "Common_Refresh": "refresh", + "Common_Collapse": "Daralt", + "Common_Expand": "Genişlet", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Ocak", + "Common_Months_February": "Şubat", + "Common_Months_March": "Mart", + "Common_Months_April": "Nisan", + "Common_Months_May": "Mayıs", + "Common_Months_June": "Haziran", + "Common_Months_July": "Temmuz", + "Common_Months_August": "Ağustos", + "Common_Months_September": "Eylül", + "Common_Months_October": "Ekim", + "Common_Months_November": "Kasım", + "Common_Months_December": "Aralık", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Tamamlanamadı", + "Measurements_Ok": "Tamam", + "Measurements_Anomaly": "Anormallik", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Günlükler", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/tr/strings.xml b/probe-mobile/tr/strings.xml index d9d1822..a913212 100644 --- a/probe-mobile/tr/strings.xml +++ b/probe-mobile/tr/strings.xml @@ -581,4 +581,59 @@ Bağlantı güncellemeleri hazır Gözden geçir %s giriş + Geri + refresh + Daralt + Genişlet + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Ocak + Şubat + Mart + Nisan + Mayıs + Haziran + Temmuz + Ağustos + Eylül + Ekim + Kasım + Aralık + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Tamamlanamadı + Tamam + Anormallik + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Günlükler + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/tum/Localizable.strings b/probe-mobile/tum/Localizable.strings index ee3fc55..e57d8f8 100644 --- a/probe-mobile/tum/Localizable.strings +++ b/probe-mobile/tum/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/tum/strings.json b/probe-mobile/tum/strings.json index 62019bc..b3d70e4 100644 --- a/probe-mobile/tum/strings.json +++ b/probe-mobile/tum/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/tum/strings.xml b/probe-mobile/tum/strings.xml index 3c8aaf1..fdfda47 100644 --- a/probe-mobile/tum/strings.xml +++ b/probe-mobile/tum/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/uk/Localizable.strings b/probe-mobile/uk/Localizable.strings index fb4228e..fe9b1cb 100644 --- a/probe-mobile/uk/Localizable.strings +++ b/probe-mobile/uk/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Огляд"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Назад"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Закрити"; +"Common_Expand" = "Відкрити"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "Січень"; +"Common_Months_February" = "Лютий"; +"Common_Months_March" = "Березень"; +"Common_Months_April" = "Квітень"; +"Common_Months_May" = "Травень"; +"Common_Months_June" = "Червень"; +"Common_Months_July" = "Липень"; +"Common_Months_August" = "Серпень"; +"Common_Months_September" = "Вересень"; +"Common_Months_October" = "Жовтень"; +"Common_Months_November" = "Листопад"; +"Common_Months_December" = "Грудень"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Невдало"; +"Measurements_Ok" = "Гаразд"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Логи"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/uk/strings.json b/probe-mobile/uk/strings.json index 191abe4..af0f80c 100644 --- a/probe-mobile/uk/strings.json +++ b/probe-mobile/uk/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Огляд", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Назад", + "Common_Refresh": "refresh", + "Common_Collapse": "Закрити", + "Common_Expand": "Відкрити", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "Січень", + "Common_Months_February": "Лютий", + "Common_Months_March": "Березень", + "Common_Months_April": "Квітень", + "Common_Months_May": "Травень", + "Common_Months_June": "Червень", + "Common_Months_July": "Липень", + "Common_Months_August": "Серпень", + "Common_Months_September": "Вересень", + "Common_Months_October": "Жовтень", + "Common_Months_November": "Листопад", + "Common_Months_December": "Грудень", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Невдало", + "Measurements_Ok": "Гаразд", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Логи", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/uk/strings.xml b/probe-mobile/uk/strings.xml index cbd4af5..6ca950b 100644 --- a/probe-mobile/uk/strings.xml +++ b/probe-mobile/uk/strings.xml @@ -581,4 +581,59 @@ Link updates ready Огляд %s inputs + Назад + refresh + Закрити + Відкрити + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + Січень + Лютий + Березень + Квітень + Травень + Червень + Липень + Серпень + Вересень + Жовтень + Листопад + Грудень + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Невдало + Гаразд + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Логи + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/ur/Localizable.strings b/probe-mobile/ur/Localizable.strings index 063a2a5..2ace5f3 100644 --- a/probe-mobile/ur/Localizable.strings +++ b/probe-mobile/ur/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "پیچھے"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "بکھرجانا"; +"Common_Expand" = "کھولنا"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "ٹھیک ہے"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "لاگز"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/ur/strings.json b/probe-mobile/ur/strings.json index 591b394..d031471 100644 --- a/probe-mobile/ur/strings.json +++ b/probe-mobile/ur/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "پیچھے", + "Common_Refresh": "refresh", + "Common_Collapse": "بکھرجانا", + "Common_Expand": "کھولنا", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "ٹھیک ہے", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "لاگز", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/ur/strings.xml b/probe-mobile/ur/strings.xml index a94bf53..80280b8 100644 --- a/probe-mobile/ur/strings.xml +++ b/probe-mobile/ur/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + پیچھے + refresh + بکھرجانا + کھولنا + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + ٹھیک ہے + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + لاگز + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/vi/Localizable.strings b/probe-mobile/vi/Localizable.strings index 66ab431..dbc4c65 100644 --- a/probe-mobile/vi/Localizable.strings +++ b/probe-mobile/vi/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Duyệt xem"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Lùi"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Thu gọn"; +"Common_Expand" = "Mở rộng"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "05"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Thất bại"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Bất thường"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Ký sự"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Đang thử"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/vi/strings.json b/probe-mobile/vi/strings.json index d067492..9ab3c9b 100644 --- a/probe-mobile/vi/strings.json +++ b/probe-mobile/vi/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Duyệt xem", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Lùi", + "Common_Refresh": "refresh", + "Common_Collapse": "Thu gọn", + "Common_Expand": "Mở rộng", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "05", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Thất bại", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Bất thường", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Ký sự", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Đang thử", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/vi/strings.xml b/probe-mobile/vi/strings.xml index 01b5112..31a730c 100644 --- a/probe-mobile/vi/strings.xml +++ b/probe-mobile/vi/strings.xml @@ -581,4 +581,59 @@ Link updates ready Duyệt xem %s inputs + Lùi + refresh + Thu gọn + Mở rộng + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + 05 + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Thất bại + OK + Bất thường + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Ký sự + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Đang thử + Manual Run + Auto Run + VPN diff --git a/probe-mobile/zh_CN/Localizable.strings b/probe-mobile/zh_CN/Localizable.strings index b2e9c1a..5054daa 100644 --- a/probe-mobile/zh_CN/Localizable.strings +++ b/probe-mobile/zh_CN/Localizable.strings @@ -5,7 +5,7 @@ "Onboarding.ThingsToKnow.Title" = "小心!"; "Onboarding.ThingsToKnow.Bullet.1" = "包含您的网络信息的 OONI 数据将被公开发布。"; "Onboarding.ThingsToKnow.Bullet.2" = "监控您的网络活动的实体(例如政府或运营商)都会知道您在运行 OONI Probe。"; -"Onboarding.ThingsToKnow.Bullet.3" = "您可能想测试被禁止的网站(由你决定测试哪些网站)。"; +"Onboarding.ThingsToKnow.Bullet.3" = "您可能想测试被禁止的网站(由您决定测试哪些网站)。"; "Onboarding.ThingsToKnow.Button" = "明白"; "Onboarding.ThingsToKnow.LearnMore" = "了解更多"; "Onboarding.PopQuiz.Title" = "小测验"; @@ -57,18 +57,18 @@ "Dashboard.Card.Seconds" = "~%@s"; "Dashboard.Websites.Card.Description" = "测试网站是否被屏蔽"; "Dashboard.Websites.Overview.Paragraph" = "使用 OONI 的[网页连通性测试](https://ooni.org/nettest/web-connectivity/)检查网站是否被屏蔽。\n\n每次您点击“运行”时,都会测试公民实验室的[全球](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv)和[特定国家](https://github.com/citizenlab/test-lists/tree/master/lists)列表中的一些网站。\n\n如要测试您自选的网站,点击“选择网站”按钮或通过本卡片的设置选择网站类别。\n\n此测试测量网站是否遭受 DNS 篡改、TCP/IP 封锁或透明 HTTP 代理的屏蔽。\n\n您的测试结果会被发布在 [OONI Explorer](https://explorer.ooni.org/world/) 和 [OONI API](https://api.ooni.io/)。"; -"Dashboard.Websites.Overview.Paragraph.Desktop" = "使用 OONI 的[网络连接测试](https://ooni.org/nettest/web-connectivity/)检查网站是否被屏蔽。\n\n你将测试公民实验室的[全球](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv)和[特定国家](https://github.com/citizenlab/test-lists/tree/master/lists)测试列表中的网站。\n\n这项测试测量网站是否被 DNS 篡改、TCP/IP 封锁或透明的 HTTP 代理所屏蔽。\n\n你的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/)和[OONI API](https://api.ooni.io/)。"; +"Dashboard.Websites.Overview.Paragraph.Desktop" = "使用 OONI 的[网络连接测试](https://ooni.org/nettest/web-connectivity/)检查网站是否被屏蔽。\n\n您将测试公民实验室的[全球](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv)和[特定国家](https://github.com/citizenlab/test-lists/tree/master/lists)测试列表中的网站。\n\n这项测试测量网站是否被 DNS 篡改、TCP/IP 封锁或透明的 HTTP 代理所屏蔽。\n\n您的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/)和[OONI API](https://api.ooni.io/)。"; "Dashboard.Performance.Card.Description" = "测试您的网速和性能"; -"Dashboard.Performance.Overview.Paragraph" = "使用 [NDT](https://ooni.org/nettest/ndt/) 测试测量你的网络速度和性能。\n\n使用 [DASH](https://ooni.org/nettest/dash/) 测试测量视频流性能。\n\n这些测试消耗的数据取决于你的网络速度。\n\n您的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/world/)和[OONI API](https://api.ooni.io/)。\n\n免责声明:这些测试依赖于第三方服务器。因此,我们不能保证你的 IP 地址不会被收集。"; -"Dashboard.Performance.Overview.Paragraph.Updated" = "通过运行选项卡中的测试,你将:\n\n- 测量网速及性能([NDT](https://ooni.org/nettest/ndt/) 测试)\n- 测量视频流播放性能([DASH](https://ooni.org/nettest/dash/) 测试)\n- 检查网络中是否存在 [middlebox technologies](https://ooni.org/support/glossary/#middlebox) ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) 和 [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) 测试)\n\n这些测试消耗的流量取决于你的网速。\n\n你的测量结果将发布在 [OONI Explorer](https://explorer.ooni.org/) 和 [OONI API](https://api.ooni.io/)。\n\n**免责声明**:[NDT](https://ooni.org/nettest/ndt/) 和 [DASH](https://ooni.org/nettest/dash/) 测试由 [Measurement Lab (M-Lab)](https://www.measurementlab.net/) 提供的第三方服务器进行测试。如果你运行这些测试,M-Lab 将会收集你的 IP 地址,并以研究目的进行发表,不受 OONI Probe 设置约束。阅读其[隐私声明](https://www.measurementlab.net/privacy/)了解更多关于 M-Lab 的数据监管。"; +"Dashboard.Performance.Overview.Paragraph" = "使用 [NDT](https://ooni.org/nettest/ndt/) 测试测量您的网络速度和性能。\n\n使用 [DASH](https://ooni.org/nettest/dash/) 测试测量视频流性能。\n\n这些测试消耗的数据取决于您的网络速度。\n\n您的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/world/)和[OONI API](https://api.ooni.io/)。\n\n免责声明:这些测试依赖于第三方服务器。因此,我们不能保证您的 IP 地址不会被收集。"; +"Dashboard.Performance.Overview.Paragraph.Updated" = "通过运行选项卡中的测试,您将:\n\n- 测量网速及性能([NDT](https://ooni.org/nettest/ndt/) 测试)\n- 测量视频流播放性能([DASH](https://ooni.org/nettest/dash/) 测试)\n- 检查网络中是否存在 [middlebox technologies](https://ooni.org/support/glossary/#middlebox) ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) 和 [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) 测试)\n\n这些测试消耗的流量取决于您的网速。\n\n您的测量结果将发布在 [OONI Explorer](https://explorer.ooni.org/) 和 [OONI API](https://api.ooni.io/)。\n\n**免责声明**:[NDT](https://ooni.org/nettest/ndt/) 和 [DASH](https://ooni.org/nettest/dash/) 测试由 [Measurement Lab (M-Lab)](https://www.measurementlab.net/) 提供的第三方服务器进行测试。如果您运行这些测试,M-Lab 将会收集您的 IP 地址,并以研究目的进行发表,不受 OONI Probe 设置约束。阅读其[隐私声明](https://www.measurementlab.net/privacy/)了解更多关于 M-Lab 的数据监管。"; "Dashboard.Middleboxes.Card.Description" = "检测您网络中的 Middlebox"; -"Dashboard.Middleboxes.Overview.Paragraph" = "互联网服务提供商经常使用网络设备(中介箱)来实现各种网络目的(如缓存)。有时这些中介箱被用来实施互联网审查和/或监控。\n\n使用ONI的[HTTP无效请求行](https://ooni.org/nettest/http-invalid-request-line/)和[HTTP头域操纵](https://ooni.org/nettest/http-header-field-manipulation/)测试,找到你网络中的中介箱。\n\n你的结果将公布在[ONI Explorer](https://explorer.ooni.org/world/)和[ONI API](https://api.ooni.io/)。"; +"Dashboard.Middleboxes.Overview.Paragraph" = "互联网服务提供商经常使用网络设备(中介箱)来实现各种网络目的(如缓存)。有时这些中介箱被用来实施互联网审查和/或监控。\n\n使用ONI的[HTTP无效请求行](https://ooni.org/nettest/http-invalid-request-line/)和[HTTP头域操纵](https://ooni.org/nettest/http-header-field-manipulation/)测试,找到您网络中的中介箱。\n\n您的结果将公布在[ONI Explorer](https://explorer.ooni.org/world/)和[ONI API](https://api.ooni.io/)。"; "Dashboard.InstantMessaging.Card.Description" = "测试即时消息应用的屏蔽情况"; -"Dashboard.InstantMessaging.Overview.Paragraph" = "检测 [WhatsApp](https://ooni.org/nettest/whatsapp/)、[Facebook Messenger](https://ooni.org/nettest/facebook-messenger/)、[Telegram](https://ooni.org/nettest/telegram/)和 [Signal](https://ooni.org/nettest/signal) 是否被屏蔽。\n\n你的结果将公布在 [OONI Explorer](https://explorer.ooni.org/world/) 和[OONI API](https://api.ooni.io/)。"; +"Dashboard.InstantMessaging.Overview.Paragraph" = "检测 [WhatsApp](https://ooni.org/nettest/whatsapp/)、[Facebook Messenger](https://ooni.org/nettest/facebook-messenger/)、[Telegram](https://ooni.org/nettest/telegram/)和 [Signal](https://ooni.org/nettest/signal) 是否被屏蔽。\n\n您的结果将公布在 [OONI Explorer](https://explorer.ooni.org/world/) 和[OONI API](https://api.ooni.io/)。"; "Dashboard.Circumvention.Card.Description" = "测试翻墙工具屏蔽状况"; -"Dashboard.Circumvention.Overview.Paragraph" = "检测 [Psiphon](https://ooni.org/nettest/psiphon/)、[Tor](https://ooni.org/nettest/tor/) 或 [RiseupVPN](https://ooni.org/nettest/riseupvpn/) 是否被封锁。\n\n你的结果将公布在 [OONI Explorer](https://explorer.ooni.org/) 和[OONI API](https://api.ooni.io/)。"; +"Dashboard.Circumvention.Overview.Paragraph" = "检测 [Psiphon](https://ooni.org/nettest/psiphon/)、[Tor](https://ooni.org/nettest/tor/) 或 [RiseupVPN](https://ooni.org/nettest/riseupvpn/) 是否被封锁。\n\n您的结果将公布在 [OONI Explorer](https://explorer.ooni.org/) 和[OONI API](https://api.ooni.io/)。"; "Dashboard.Experimental.Card.Description" = "运行新的实验性测试"; -"Dashboard.Experimental.Overview.Paragraph" = "运行由 OONI 团队开发的以下新的实验性测试:\n%@\n\n你的结果将在 [OONI Explorer](https://explorer.ooni.org/)和 [OONI API](https://api.ooni.io/)上公布。"; +"Dashboard.Experimental.Overview.Paragraph" = "运行由 OONI 团队开发的以下新的实验性测试:\n%@\n\n您的结果将在 [OONI Explorer](https://explorer.ooni.org/)和 [OONI API](https://api.ooni.io/)上公布。"; "Dashboard.Experimental.Overview.Paragraph.AutomatedTesting" = "以下测试将只作为自动测试的一部分来运行:"; "Dashboard.DisabledTests.Label" = "禁用的测试"; "TestResults.Gbps" = "Gbit/s"; @@ -288,11 +288,11 @@ "Modal.ResultsNotUploaded.Paragraph" = "您的部分测试结果尚未上传到 OONI 服务器。如果您想为 OONI 数据集做出贡献,请上传它们。"; "Modal.ResultsNotUploaded.Button.Upload" = "上传"; "Modal.ResultsNotUploaded.Uploading" = "正在上传测试 %@ ..."; -"Modal.Autorun.BatteryOptimization" = "如果没有优化电池,OONI 将会无法自动运行。你想再试一次吗?"; +"Modal.Autorun.BatteryOptimization" = "如果没有优化电池,OONI 将会无法自动运行。您想再试一次吗?"; "Modal.DisableVPN.Title" = "请关闭您的 VPN 连接。"; "Modal.DisableVPN.Message" = "如果您在启用 VPN 的情况下运行 OONI,测试结果将可能显示来自错误的国家。请关闭您的 VPN 连接。"; "Modal.UploadVPNResults.Title" = "有些测量是在VPN上进行的。"; -"Modal.UploadVPNResults.Message" = "如果你上传启用VPN时的测量结果,测试结果可能会显示来自错误的国家。"; +"Modal.UploadVPNResults.Message" = "如果您上传启用VPN时的测量结果,测试结果可能会显示来自错误的国家。"; "Toast.ResultsUploaded" = "上传成功"; "Modal.DisplayFailureLog" = "显示失败日志"; "Modal.EnableNotifications.Title" = "获取网络审查的动态"; @@ -401,7 +401,7 @@ "Settings.Proxy.Custom.Username" = "用户名"; "Settings.Proxy.Custom.Password" = "密码"; "Settings.Proxy.Psiphon.Over.Custom" = "在自定义代理上使用 Psiphon"; -"Settings.Proxy.Footer" = "您是否无法使用 OONI Probe?尝试启用 [Psiphon](https://psiphon.ca/) ,以规避潜在的 OONI Probe 屏蔽。或者,你可以使用一个自定义代理。"; +"Settings.Proxy.Footer" = "您是否无法使用 OONI Probe?尝试启用 [Psiphon](https://psiphon.ca/) ,以规避潜在的 OONI Probe 屏蔽。或者,您可以使用一个自定义代理。"; "Settings.Websites.MaxRuntimeEnabled" = "限制测试持续时间"; "Settings.Websites.MaxRuntime" = "测试用时"; "Settings.Websites.Categories.Label" = "要测试的网站类别"; @@ -533,7 +533,7 @@ "CategoryCode.MISC.Description" = "尚未分类的网站"; "Prompt.DontAskAgain" = "不再询问"; "Prompt.EnableTestProgressNotifications.Title" = "启用测试进度通知"; -"Prompt.EnableTestProgressNotifications.Paragraph" = "你想启用 OONI Probe 测试进度通知并在通知抽屉中展示正在运行的测试吗?"; +"Prompt.EnableTestProgressNotifications.Paragraph" = "您想启用 OONI Probe 测试进度通知并在通知抽屉中展示正在运行的测试吗?"; "LoadingScreen.Runv2.Message" = "链接加载"; "LoadingScreen.Runv2.Failure" = "错误"; "LoadingScreen.Runv2.Canceled" = "链接安装被取消了"; @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "卸载链接"; "Dashboard.Runv2.Overview.ReviewUpdates" = "查看更新"; "Dashboard.Runv2.Overview.PreviousRevisions" = "先前更改"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "你将只能从创建者发送的原始链接再次安装此链接。"; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "您将只能从创建者发送的原始链接再次安装此链接。"; "Dashboard.Runv2.Overview.SeeMore" = "查看更多"; "Dashboard.Runv2.Overview.TestWebsites" = "自动测试网站"; "Dashboard.RunV2.ManualUpdate.Error" = "错误"; @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "链接更新已就绪"; "Dashboard.Progress.ReviewLink.Action" = "审查"; "TestResults.TestCount" = "%s 个输入"; +"Common_Back" = "返回"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "折叠"; +"Common_Expand" = "展开"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "一月"; +"Common_Months_February" = "二月"; +"Common_Months_March" = "三月"; +"Common_Months_April" = "四月"; +"Common_Months_May" = "五月"; +"Common_Months_June" = "六月"; +"Common_Months_July" = "七月"; +"Common_Months_August" = "八月"; +"Common_Months_September" = "九月"; +"Common_Months_October" = "十月"; +"Common_Months_November" = "十一月"; +"Common_Months_December" = "十二月"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "失败"; +"Measurements_Ok" = "正常"; +"Measurements_Anomaly" = "异常"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "日志"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "测试中"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/zh_CN/strings.json b/probe-mobile/zh_CN/strings.json index 6a82cdb..bdcfc08 100644 --- a/probe-mobile/zh_CN/strings.json +++ b/probe-mobile/zh_CN/strings.json @@ -6,7 +6,7 @@ "Onboarding.ThingsToKnow.Title": "小心!", "Onboarding.ThingsToKnow.Bullet.1": "包含您的网络信息的 OONI 数据将被公开发布。", "Onboarding.ThingsToKnow.Bullet.2": "监控您的网络活动的实体(例如政府或运营商)都会知道您在运行 OONI Probe。", - "Onboarding.ThingsToKnow.Bullet.3": "您可能想测试被禁止的网站(由你决定测试哪些网站)。", + "Onboarding.ThingsToKnow.Bullet.3": "您可能想测试被禁止的网站(由您决定测试哪些网站)。", "Onboarding.ThingsToKnow.Button": "明白", "Onboarding.ThingsToKnow.LearnMore": "了解更多", "Onboarding.PopQuiz.Title": "小测验", @@ -58,18 +58,18 @@ "Dashboard.Card.Seconds": "~{seconds}s", "Dashboard.Websites.Card.Description": "测试网站是否被屏蔽", "Dashboard.Websites.Overview.Paragraph": "使用 OONI 的[网页连通性测试](https://ooni.org/nettest/web-connectivity/)检查网站是否被屏蔽。\n\n每次您点击“运行”时,都会测试公民实验室的[全球](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv)和[特定国家](https://github.com/citizenlab/test-lists/tree/master/lists)列表中的一些网站。\n\n如要测试您自选的网站,点击“选择网站”按钮或通过本卡片的设置选择网站类别。\n\n此测试测量网站是否遭受 DNS 篡改、TCP/IP 封锁或透明 HTTP 代理的屏蔽。\n\n您的测试结果会被发布在 [OONI Explorer](https://explorer.ooni.org/world/) 和 [OONI API](https://api.ooni.io/)。", - "Dashboard.Websites.Overview.Paragraph.Desktop": "使用 OONI 的[网络连接测试](https://ooni.org/nettest/web-connectivity/)检查网站是否被屏蔽。\n\n你将测试公民实验室的[全球](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv)和[特定国家](https://github.com/citizenlab/test-lists/tree/master/lists)测试列表中的网站。\n\n这项测试测量网站是否被 DNS 篡改、TCP/IP 封锁或透明的 HTTP 代理所屏蔽。\n\n你的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/)和[OONI API](https://api.ooni.io/)。", + "Dashboard.Websites.Overview.Paragraph.Desktop": "使用 OONI 的[网络连接测试](https://ooni.org/nettest/web-connectivity/)检查网站是否被屏蔽。\n\n您将测试公民实验室的[全球](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv)和[特定国家](https://github.com/citizenlab/test-lists/tree/master/lists)测试列表中的网站。\n\n这项测试测量网站是否被 DNS 篡改、TCP/IP 封锁或透明的 HTTP 代理所屏蔽。\n\n您的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/)和[OONI API](https://api.ooni.io/)。", "Dashboard.Performance.Card.Description": "测试您的网速和性能", - "Dashboard.Performance.Overview.Paragraph": "使用 [NDT](https://ooni.org/nettest/ndt/) 测试测量你的网络速度和性能。\n\n使用 [DASH](https://ooni.org/nettest/dash/) 测试测量视频流性能。\n\n这些测试消耗的数据取决于你的网络速度。\n\n您的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/world/)和[OONI API](https://api.ooni.io/)。\n\n免责声明:这些测试依赖于第三方服务器。因此,我们不能保证你的 IP 地址不会被收集。", - "Dashboard.Performance.Overview.Paragraph.Updated": "通过运行选项卡中的测试,你将:\n\n- 测量网速及性能([NDT](https://ooni.org/nettest/ndt/) 测试)\n- 测量视频流播放性能([DASH](https://ooni.org/nettest/dash/) 测试)\n- 检查网络中是否存在 [middlebox technologies](https://ooni.org/support/glossary/#middlebox) ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) 和 [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) 测试)\n\n这些测试消耗的流量取决于你的网速。\n\n你的测量结果将发布在 [OONI Explorer](https://explorer.ooni.org/) 和 [OONI API](https://api.ooni.io/)。\n\n**免责声明**:[NDT](https://ooni.org/nettest/ndt/) 和 [DASH](https://ooni.org/nettest/dash/) 测试由 [Measurement Lab (M-Lab)](https://www.measurementlab.net/) 提供的第三方服务器进行测试。如果你运行这些测试,M-Lab 将会收集你的 IP 地址,并以研究目的进行发表,不受 OONI Probe 设置约束。阅读其[隐私声明](https://www.measurementlab.net/privacy/)了解更多关于 M-Lab 的数据监管。", + "Dashboard.Performance.Overview.Paragraph": "使用 [NDT](https://ooni.org/nettest/ndt/) 测试测量您的网络速度和性能。\n\n使用 [DASH](https://ooni.org/nettest/dash/) 测试测量视频流性能。\n\n这些测试消耗的数据取决于您的网络速度。\n\n您的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/world/)和[OONI API](https://api.ooni.io/)。\n\n免责声明:这些测试依赖于第三方服务器。因此,我们不能保证您的 IP 地址不会被收集。", + "Dashboard.Performance.Overview.Paragraph.Updated": "通过运行选项卡中的测试,您将:\n\n- 测量网速及性能([NDT](https://ooni.org/nettest/ndt/) 测试)\n- 测量视频流播放性能([DASH](https://ooni.org/nettest/dash/) 测试)\n- 检查网络中是否存在 [middlebox technologies](https://ooni.org/support/glossary/#middlebox) ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) 和 [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) 测试)\n\n这些测试消耗的流量取决于您的网速。\n\n您的测量结果将发布在 [OONI Explorer](https://explorer.ooni.org/) 和 [OONI API](https://api.ooni.io/)。\n\n**免责声明**:[NDT](https://ooni.org/nettest/ndt/) 和 [DASH](https://ooni.org/nettest/dash/) 测试由 [Measurement Lab (M-Lab)](https://www.measurementlab.net/) 提供的第三方服务器进行测试。如果您运行这些测试,M-Lab 将会收集您的 IP 地址,并以研究目的进行发表,不受 OONI Probe 设置约束。阅读其[隐私声明](https://www.measurementlab.net/privacy/)了解更多关于 M-Lab 的数据监管。", "Dashboard.Middleboxes.Card.Description": "检测您网络中的 Middlebox", - "Dashboard.Middleboxes.Overview.Paragraph": "互联网服务提供商经常使用网络设备(中介箱)来实现各种网络目的(如缓存)。有时这些中介箱被用来实施互联网审查和/或监控。\n\n使用ONI的[HTTP无效请求行](https://ooni.org/nettest/http-invalid-request-line/)和[HTTP头域操纵](https://ooni.org/nettest/http-header-field-manipulation/)测试,找到你网络中的中介箱。\n\n你的结果将公布在[ONI Explorer](https://explorer.ooni.org/world/)和[ONI API](https://api.ooni.io/)。", + "Dashboard.Middleboxes.Overview.Paragraph": "互联网服务提供商经常使用网络设备(中介箱)来实现各种网络目的(如缓存)。有时这些中介箱被用来实施互联网审查和/或监控。\n\n使用ONI的[HTTP无效请求行](https://ooni.org/nettest/http-invalid-request-line/)和[HTTP头域操纵](https://ooni.org/nettest/http-header-field-manipulation/)测试,找到您网络中的中介箱。\n\n您的结果将公布在[ONI Explorer](https://explorer.ooni.org/world/)和[ONI API](https://api.ooni.io/)。", "Dashboard.InstantMessaging.Card.Description": "测试即时消息应用的屏蔽情况", - "Dashboard.InstantMessaging.Overview.Paragraph": "检测 [WhatsApp](https://ooni.org/nettest/whatsapp/)、[Facebook Messenger](https://ooni.org/nettest/facebook-messenger/)、[Telegram](https://ooni.org/nettest/telegram/)和 [Signal](https://ooni.org/nettest/signal) 是否被屏蔽。\n\n你的结果将公布在 [OONI Explorer](https://explorer.ooni.org/world/) 和[OONI API](https://api.ooni.io/)。", + "Dashboard.InstantMessaging.Overview.Paragraph": "检测 [WhatsApp](https://ooni.org/nettest/whatsapp/)、[Facebook Messenger](https://ooni.org/nettest/facebook-messenger/)、[Telegram](https://ooni.org/nettest/telegram/)和 [Signal](https://ooni.org/nettest/signal) 是否被屏蔽。\n\n您的结果将公布在 [OONI Explorer](https://explorer.ooni.org/world/) 和[OONI API](https://api.ooni.io/)。", "Dashboard.Circumvention.Card.Description": "测试翻墙工具屏蔽状况", - "Dashboard.Circumvention.Overview.Paragraph": "检测 [Psiphon](https://ooni.org/nettest/psiphon/)、[Tor](https://ooni.org/nettest/tor/) 或 [RiseupVPN](https://ooni.org/nettest/riseupvpn/) 是否被封锁。\n\n你的结果将公布在 [OONI Explorer](https://explorer.ooni.org/) 和[OONI API](https://api.ooni.io/)。", + "Dashboard.Circumvention.Overview.Paragraph": "检测 [Psiphon](https://ooni.org/nettest/psiphon/)、[Tor](https://ooni.org/nettest/tor/) 或 [RiseupVPN](https://ooni.org/nettest/riseupvpn/) 是否被封锁。\n\n您的结果将公布在 [OONI Explorer](https://explorer.ooni.org/) 和[OONI API](https://api.ooni.io/)。", "Dashboard.Experimental.Card.Description": "运行新的实验性测试", - "Dashboard.Experimental.Overview.Paragraph": "运行由 OONI 团队开发的以下新的实验性测试:\n{experimental_test_list}\n\n你的结果将在 [OONI Explorer](https://explorer.ooni.org/)和 [OONI API](https://api.ooni.io/)上公布。", + "Dashboard.Experimental.Overview.Paragraph": "运行由 OONI 团队开发的以下新的实验性测试:\n{experimental_test_list}\n\n您的结果将在 [OONI Explorer](https://explorer.ooni.org/)和 [OONI API](https://api.ooni.io/)上公布。", "Dashboard.Experimental.Overview.Paragraph.AutomatedTesting": "以下测试将只作为自动测试的一部分来运行:", "Dashboard.DisabledTests.Label": "禁用的测试", "TestResults.Gbps": "Gbit/s", @@ -289,11 +289,11 @@ "Modal.ResultsNotUploaded.Paragraph": "您的部分测试结果尚未上传到 OONI 服务器。如果您想为 OONI 数据集做出贡献,请上传它们。", "Modal.ResultsNotUploaded.Button.Upload": "上传", "Modal.ResultsNotUploaded.Uploading": "正在上传测试 {testNumber} ...", - "Modal.Autorun.BatteryOptimization": "如果没有优化电池,OONI 将会无法自动运行。你想再试一次吗?", + "Modal.Autorun.BatteryOptimization": "如果没有优化电池,OONI 将会无法自动运行。您想再试一次吗?", "Modal.DisableVPN.Title": "请关闭您的 VPN 连接。", "Modal.DisableVPN.Message": "如果您在启用 VPN 的情况下运行 OONI,测试结果将可能显示来自错误的国家。请关闭您的 VPN 连接。", "Modal.UploadVPNResults.Title": "有些测量是在VPN上进行的。", - "Modal.UploadVPNResults.Message": "如果你上传启用VPN时的测量结果,测试结果可能会显示来自错误的国家。", + "Modal.UploadVPNResults.Message": "如果您上传启用VPN时的测量结果,测试结果可能会显示来自错误的国家。", "Toast.ResultsUploaded": "上传成功", "Modal.DisplayFailureLog": "显示失败日志", "Modal.EnableNotifications.Title": "获取网络审查的动态", @@ -402,7 +402,7 @@ "Settings.Proxy.Custom.Username": "用户名", "Settings.Proxy.Custom.Password": "密码", "Settings.Proxy.Psiphon.Over.Custom": "在自定义代理上使用 Psiphon", - "Settings.Proxy.Footer": "您是否无法使用 OONI Probe?尝试启用 [Psiphon](https://psiphon.ca/) ,以规避潜在的 OONI Probe 屏蔽。或者,你可以使用一个自定义代理。", + "Settings.Proxy.Footer": "您是否无法使用 OONI Probe?尝试启用 [Psiphon](https://psiphon.ca/) ,以规避潜在的 OONI Probe 屏蔽。或者,您可以使用一个自定义代理。", "Settings.Websites.MaxRuntimeEnabled": "限制测试持续时间", "Settings.Websites.MaxRuntime": "测试用时", "Settings.Websites.Categories.Label": "要测试的网站类别", @@ -534,7 +534,7 @@ "CategoryCode.MISC.Description": "尚未分类的网站", "Prompt.DontAskAgain": "不再询问", "Prompt.EnableTestProgressNotifications.Title": "启用测试进度通知", - "Prompt.EnableTestProgressNotifications.Paragraph": "你想启用 OONI Probe 测试进度通知并在通知抽屉中展示正在运行的测试吗?", + "Prompt.EnableTestProgressNotifications.Paragraph": "您想启用 OONI Probe 测试进度通知并在通知抽屉中展示正在运行的测试吗?", "LoadingScreen.Runv2.Message": "链接加载", "LoadingScreen.Runv2.Failure": "错误", "LoadingScreen.Runv2.Canceled": "链接安装被取消了", @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "卸载链接", "Dashboard.Runv2.Overview.ReviewUpdates": "查看更新", "Dashboard.Runv2.Overview.PreviousRevisions": "先前更改", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "你将只能从创建者发送的原始链接再次安装此链接。", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "您将只能从创建者发送的原始链接再次安装此链接。", "Dashboard.Runv2.Overview.SeeMore": "查看更多", "Dashboard.Runv2.Overview.TestWebsites": "自动测试网站", "Dashboard.RunV2.ManualUpdate.Error": "错误", @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "正在加载链接更新", "Dashboard.Progress.ReviewLink.Label": "链接更新已就绪", "Dashboard.Progress.ReviewLink.Action": "审查", - "TestResults.TestCount": "%s 个输入" + "TestResults.TestCount": "%s 个输入", + "Common_Back": "返回", + "Common_Refresh": "refresh", + "Common_Collapse": "折叠", + "Common_Expand": "展开", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "一月", + "Common_Months_February": "二月", + "Common_Months_March": "三月", + "Common_Months_April": "四月", + "Common_Months_May": "五月", + "Common_Months_June": "六月", + "Common_Months_July": "七月", + "Common_Months_August": "八月", + "Common_Months_September": "九月", + "Common_Months_October": "十月", + "Common_Months_November": "十一月", + "Common_Months_December": "十二月", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "失败", + "Measurements_Ok": "正常", + "Measurements_Anomaly": "异常", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "日志", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "测试中", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/zh_CN/strings.xml b/probe-mobile/zh_CN/strings.xml index 15f9c71..2df80bc 100644 --- a/probe-mobile/zh_CN/strings.xml +++ b/probe-mobile/zh_CN/strings.xml @@ -7,7 +7,7 @@ 小心! 包含您的网络信息的 OONI 数据将被公开发布。 监控您的网络活动的实体(例如政府或运营商)都会知道您在运行 OONI Probe。 - 您可能想测试被禁止的网站(由你决定测试哪些网站)。 + 您可能想测试被禁止的网站(由您决定测试哪些网站)。 明白 了解更多 小测验 @@ -59,18 +59,18 @@ ~%1$ss 测试网站是否被屏蔽 使用 OONI 的[网页连通性测试](https://ooni.org/nettest/web-connectivity/)检查网站是否被屏蔽。\n\n每次您点击“运行”时,都会测试公民实验室的[全球](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv)和[特定国家](https://github.com/citizenlab/test-lists/tree/master/lists)列表中的一些网站。\n\n如要测试您自选的网站,点击“选择网站”按钮或通过本卡片的设置选择网站类别。\n\n此测试测量网站是否遭受 DNS 篡改、TCP/IP 封锁或透明 HTTP 代理的屏蔽。\n\n您的测试结果会被发布在 [OONI Explorer](https://explorer.ooni.org/world/) 和 [OONI API](https://api.ooni.io/)。 - 使用 OONI 的[网络连接测试](https://ooni.org/nettest/web-connectivity/)检查网站是否被屏蔽。\n\n你将测试公民实验室的[全球](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv)和[特定国家](https://github.com/citizenlab/test-lists/tree/master/lists)测试列表中的网站。\n\n这项测试测量网站是否被 DNS 篡改、TCP/IP 封锁或透明的 HTTP 代理所屏蔽。\n\n你的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/)和[OONI API](https://api.ooni.io/)。 + 使用 OONI 的[网络连接测试](https://ooni.org/nettest/web-connectivity/)检查网站是否被屏蔽。\n\n您将测试公民实验室的[全球](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv)和[特定国家](https://github.com/citizenlab/test-lists/tree/master/lists)测试列表中的网站。\n\n这项测试测量网站是否被 DNS 篡改、TCP/IP 封锁或透明的 HTTP 代理所屏蔽。\n\n您的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/)和[OONI API](https://api.ooni.io/)。 测试您的网速和性能 - 使用 [NDT](https://ooni.org/nettest/ndt/) 测试测量你的网络速度和性能。\n\n使用 [DASH](https://ooni.org/nettest/dash/) 测试测量视频流性能。\n\n这些测试消耗的数据取决于你的网络速度。\n\n您的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/world/)和[OONI API](https://api.ooni.io/)。\n\n免责声明:这些测试依赖于第三方服务器。因此,我们不能保证你的 IP 地址不会被收集。 - 通过运行选项卡中的测试,你将:\n\n- 测量网速及性能([NDT](https://ooni.org/nettest/ndt/) 测试)\n- 测量视频流播放性能([DASH](https://ooni.org/nettest/dash/) 测试)\n- 检查网络中是否存在 [middlebox technologies](https://ooni.org/support/glossary/#middlebox) ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) 和 [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) 测试)\n\n这些测试消耗的流量取决于你的网速。\n\n你的测量结果将发布在 [OONI Explorer](https://explorer.ooni.org/) 和 [OONI API](https://api.ooni.io/)。\n\n**免责声明**:[NDT](https://ooni.org/nettest/ndt/) 和 [DASH](https://ooni.org/nettest/dash/) 测试由 [Measurement Lab (M-Lab)](https://www.measurementlab.net/) 提供的第三方服务器进行测试。如果你运行这些测试,M-Lab 将会收集你的 IP 地址,并以研究目的进行发表,不受 OONI Probe 设置约束。阅读其[隐私声明](https://www.measurementlab.net/privacy/)了解更多关于 M-Lab 的数据监管。 + 使用 [NDT](https://ooni.org/nettest/ndt/) 测试测量您的网络速度和性能。\n\n使用 [DASH](https://ooni.org/nettest/dash/) 测试测量视频流性能。\n\n这些测试消耗的数据取决于您的网络速度。\n\n您的结果将被发布在 [OONI Explorer](https://explorer.ooni.org/world/)和[OONI API](https://api.ooni.io/)。\n\n免责声明:这些测试依赖于第三方服务器。因此,我们不能保证您的 IP 地址不会被收集。 + 通过运行选项卡中的测试,您将:\n\n- 测量网速及性能([NDT](https://ooni.org/nettest/ndt/) 测试)\n- 测量视频流播放性能([DASH](https://ooni.org/nettest/dash/) 测试)\n- 检查网络中是否存在 [middlebox technologies](https://ooni.org/support/glossary/#middlebox) ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) 和 [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) 测试)\n\n这些测试消耗的流量取决于您的网速。\n\n您的测量结果将发布在 [OONI Explorer](https://explorer.ooni.org/) 和 [OONI API](https://api.ooni.io/)。\n\n**免责声明**:[NDT](https://ooni.org/nettest/ndt/) 和 [DASH](https://ooni.org/nettest/dash/) 测试由 [Measurement Lab (M-Lab)](https://www.measurementlab.net/) 提供的第三方服务器进行测试。如果您运行这些测试,M-Lab 将会收集您的 IP 地址,并以研究目的进行发表,不受 OONI Probe 设置约束。阅读其[隐私声明](https://www.measurementlab.net/privacy/)了解更多关于 M-Lab 的数据监管。 检测您网络中的 Middlebox - 互联网服务提供商经常使用网络设备(中介箱)来实现各种网络目的(如缓存)。有时这些中介箱被用来实施互联网审查和/或监控。\n\n使用ONI的[HTTP无效请求行](https://ooni.org/nettest/http-invalid-request-line/)和[HTTP头域操纵](https://ooni.org/nettest/http-header-field-manipulation/)测试,找到你网络中的中介箱。\n\n你的结果将公布在[ONI Explorer](https://explorer.ooni.org/world/)和[ONI API](https://api.ooni.io/)。 + 互联网服务提供商经常使用网络设备(中介箱)来实现各种网络目的(如缓存)。有时这些中介箱被用来实施互联网审查和/或监控。\n\n使用ONI的[HTTP无效请求行](https://ooni.org/nettest/http-invalid-request-line/)和[HTTP头域操纵](https://ooni.org/nettest/http-header-field-manipulation/)测试,找到您网络中的中介箱。\n\n您的结果将公布在[ONI Explorer](https://explorer.ooni.org/world/)和[ONI API](https://api.ooni.io/)。 测试即时消息应用的屏蔽情况 - 检测 [WhatsApp](https://ooni.org/nettest/whatsapp/)、[Facebook Messenger](https://ooni.org/nettest/facebook-messenger/)、[Telegram](https://ooni.org/nettest/telegram/)和 [Signal](https://ooni.org/nettest/signal) 是否被屏蔽。\n\n你的结果将公布在 [OONI Explorer](https://explorer.ooni.org/world/) 和[OONI API](https://api.ooni.io/)。 + 检测 [WhatsApp](https://ooni.org/nettest/whatsapp/)、[Facebook Messenger](https://ooni.org/nettest/facebook-messenger/)、[Telegram](https://ooni.org/nettest/telegram/)和 [Signal](https://ooni.org/nettest/signal) 是否被屏蔽。\n\n您的结果将公布在 [OONI Explorer](https://explorer.ooni.org/world/) 和[OONI API](https://api.ooni.io/)。 测试翻墙工具屏蔽状况 - 检测 [Psiphon](https://ooni.org/nettest/psiphon/)、[Tor](https://ooni.org/nettest/tor/) 或 [RiseupVPN](https://ooni.org/nettest/riseupvpn/) 是否被封锁。\n\n你的结果将公布在 [OONI Explorer](https://explorer.ooni.org/) 和[OONI API](https://api.ooni.io/)。 + 检测 [Psiphon](https://ooni.org/nettest/psiphon/)、[Tor](https://ooni.org/nettest/tor/) 或 [RiseupVPN](https://ooni.org/nettest/riseupvpn/) 是否被封锁。\n\n您的结果将公布在 [OONI Explorer](https://explorer.ooni.org/) 和[OONI API](https://api.ooni.io/)。 运行新的实验性测试 - 运行由 OONI 团队开发的以下新的实验性测试:\n%1$s\n\n你的结果将在 [OONI Explorer](https://explorer.ooni.org/)和 [OONI API](https://api.ooni.io/)上公布。 + 运行由 OONI 团队开发的以下新的实验性测试:\n%1$s\n\n您的结果将在 [OONI Explorer](https://explorer.ooni.org/)和 [OONI API](https://api.ooni.io/)上公布。 以下测试将只作为自动测试的一部分来运行: 禁用的测试 Gbit/s @@ -290,11 +290,11 @@ 您的部分测试结果尚未上传到 OONI 服务器。如果您想为 OONI 数据集做出贡献,请上传它们。 上传 正在上传测试 %1$s ... - 如果没有优化电池,OONI 将会无法自动运行。你想再试一次吗? + 如果没有优化电池,OONI 将会无法自动运行。您想再试一次吗? 请关闭您的 VPN 连接。 如果您在启用 VPN 的情况下运行 OONI,测试结果将可能显示来自错误的国家。请关闭您的 VPN 连接。 有些测量是在VPN上进行的。 - 如果你上传启用VPN时的测量结果,测试结果可能会显示来自错误的国家。 + 如果您上传启用VPN时的测量结果,测试结果可能会显示来自错误的国家。 上传成功 显示失败日志 获取网络审查的动态 @@ -403,7 +403,7 @@ 用户名 密码 在自定义代理上使用 Psiphon - 您是否无法使用 OONI Probe?尝试启用 [Psiphon](https://psiphon.ca/) ,以规避潜在的 OONI Probe 屏蔽。或者,你可以使用一个自定义代理。 + 您是否无法使用 OONI Probe?尝试启用 [Psiphon](https://psiphon.ca/) ,以规避潜在的 OONI Probe 屏蔽。或者,您可以使用一个自定义代理。 限制测试持续时间 测试用时 要测试的网站类别 @@ -535,7 +535,7 @@ 尚未分类的网站 不再询问 启用测试进度通知 - 你想启用 OONI Probe 测试进度通知并在通知抽屉中展示正在运行的测试吗? + 您想启用 OONI Probe 测试进度通知并在通知抽屉中展示正在运行的测试吗? 链接加载 错误 链接安装被取消了 @@ -543,7 +543,7 @@ 卸载链接 查看更新 先前更改 - 你将只能从创建者发送的原始链接再次安装此链接。 + 您将只能从创建者发送的原始链接再次安装此链接。 查看更多 自动测试网站 错误 @@ -581,4 +581,59 @@ 链接更新已就绪 审查 %s 个输入 + 返回 + refresh + 折叠 + 展开 + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + 一月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 十一月 + 十二月 + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + 失败 + 正常 + 异常 + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + 日志 + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + 测试中 + Manual Run + Auto Run + VPN diff --git a/probe-mobile/zh_HK/Localizable.strings b/probe-mobile/zh_HK/Localizable.strings index 43be7ae..6411f8c 100644 --- a/probe-mobile/zh_HK/Localizable.strings +++ b/probe-mobile/zh_HK/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "返回"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "收起"; +"Common_Expand" = "展開"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "五月"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "失敗"; +"Measurements_Ok" = "確定"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/zh_HK/strings.json b/probe-mobile/zh_HK/strings.json index fc3acf2..c067a49 100644 --- a/probe-mobile/zh_HK/strings.json +++ b/probe-mobile/zh_HK/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "返回", + "Common_Refresh": "refresh", + "Common_Collapse": "收起", + "Common_Expand": "展開", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "五月", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "失敗", + "Measurements_Ok": "確定", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/zh_HK/strings.xml b/probe-mobile/zh_HK/strings.xml index b3fec86..a39121e 100644 --- a/probe-mobile/zh_HK/strings.xml +++ b/probe-mobile/zh_HK/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + 返回 + refresh + 收起 + 展開 + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + 五月 + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + 失敗 + 確定 + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/probe-mobile/zh_TW/Localizable.strings b/probe-mobile/zh_TW/Localizable.strings index a2a1a98..3946aa8 100644 --- a/probe-mobile/zh_TW/Localizable.strings +++ b/probe-mobile/zh_TW/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "複檢"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "返回"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "崩潰"; +"Common_Expand" = " 拓展"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "一月"; +"Common_Months_February" = "二月"; +"Common_Months_March" = "三月"; +"Common_Months_April" = "四月"; +"Common_Months_May" = "五月"; +"Common_Months_June" = "六月"; +"Common_Months_July" = "七月"; +"Common_Months_August" = "八月"; +"Common_Months_September" = "九月"; +"Common_Months_October" = "十月"; +"Common_Months_November" = "十一月"; +"Common_Months_December" = "十二月"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "失敗"; +"Measurements_Ok" = "正常"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "活動記錄"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "測試中"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/zh_TW/strings.json b/probe-mobile/zh_TW/strings.json index f093f0d..6ed5059 100644 --- a/probe-mobile/zh_TW/strings.json +++ b/probe-mobile/zh_TW/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "複檢", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "返回", + "Common_Refresh": "refresh", + "Common_Collapse": "崩潰", + "Common_Expand": " 拓展", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "一月", + "Common_Months_February": "二月", + "Common_Months_March": "三月", + "Common_Months_April": "四月", + "Common_Months_May": "五月", + "Common_Months_June": "六月", + "Common_Months_July": "七月", + "Common_Months_August": "八月", + "Common_Months_September": "九月", + "Common_Months_October": "十月", + "Common_Months_November": "十一月", + "Common_Months_December": "十二月", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "失敗", + "Measurements_Ok": "正常", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "活動記錄", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "測試中", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/zh_TW/strings.xml b/probe-mobile/zh_TW/strings.xml index b11f06b..6253060 100644 --- a/probe-mobile/zh_TW/strings.xml +++ b/probe-mobile/zh_TW/strings.xml @@ -581,4 +581,59 @@ Link updates ready 複檢 %s inputs + 返回 + refresh + 崩潰 + 拓展 + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + 一月 + 二月 + 三月 + 四月 + 五月 + 六月 + 七月 + 八月 + 九月 + 十月 + 十一月 + 十二月 + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + 失敗 + 正常 + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + 活動記錄 + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + 測試中 + Manual Run + Auto Run + VPN diff --git a/probe-mobile/zu_ZA/Localizable.strings b/probe-mobile/zu_ZA/Localizable.strings index d92639f..e8449f6 100644 --- a/probe-mobile/zu_ZA/Localizable.strings +++ b/probe-mobile/zu_ZA/Localizable.strings @@ -579,3 +579,58 @@ "Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; "Dashboard.Progress.ReviewLink.Action" = "Review"; "TestResults.TestCount" = "%s inputs"; +"Common_Back" = "Back"; +"Common_Refresh" = "refresh"; +"Common_Collapse" = "Collapse"; +"Common_Expand" = "Expand"; +"Common_Ago" = "%1$s ago"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d hour"; +"Common_Hour_Other" = "%1$d hours"; +"Common_Hours_Abbreviated" = "%1$dh"; +"Common_Minutes_Abbreviated" = "%1$dm"; +"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Months_January" = "January"; +"Common_Months_February" = "February"; +"Common_Months_March" = "March"; +"Common_Months_April" = "April"; +"Common_Months_May" = "May"; +"Common_Months_June" = "June"; +"Common_Months_July" = "July"; +"Common_Months_August" = "August"; +"Common_Months_September" = "September"; +"Common_Months_October" = "October"; +"Common_Months_November" = "November"; +"Common_Months_December" = "December"; +"Onboarding_QuizAnswer_Correct" = "Correct answer"; +"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; +"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; +"Measurement_Title" = "Measurement"; +"Measurements_Count_One" = "%1$d measurement"; +"Measurements_Count_Other" = "%1$d measurements"; +"Measurements_Failed" = "Failed"; +"Measurements_Ok" = "OK"; +"Measurements_Anomaly" = "Anomaly"; +"Results_TestType_All" = "All Types"; +"Results_TaskOrigin_All" = "All Sources"; +"Results_LimitedNotice" = "Only the last %1$d results are shown"; +"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Settings_Logs" = "Logs"; +"Settings_ShareLogs" = "Share Logs"; +"Settings_ShareLogs_Error" = "Error sharing logs"; +"Settings_FilterLogs" = "Filter Logs"; +"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; +"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; +"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Notification_ChannelName" = "Testing"; +"TaskOrigin_Manual" = "Manual Run"; +"TaskOrigin_AutoRun" = "Auto Run"; +"NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/zu_ZA/strings.json b/probe-mobile/zu_ZA/strings.json index d98089d..5112e88 100644 --- a/probe-mobile/zu_ZA/strings.json +++ b/probe-mobile/zu_ZA/strings.json @@ -579,5 +579,60 @@ "Dashboard.Progress.UpdateLink.Label": "Link updates loading", "Dashboard.Progress.ReviewLink.Label": "Link updates ready", "Dashboard.Progress.ReviewLink.Action": "Review", - "TestResults.TestCount": "%s inputs" + "TestResults.TestCount": "%s inputs", + "Common_Back": "Back", + "Common_Refresh": "refresh", + "Common_Collapse": "Collapse", + "Common_Expand": "Expand", + "Common_Ago": "%1$s ago", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d hour", + "Common_Hour_Other": "%1$d hours", + "Common_Hours_Abbreviated": "%1$dh", + "Common_Minutes_Abbreviated": "%1$dm", + "Common_Seconds_Abbreviated": "%1$ds", + "Common_Months_January": "January", + "Common_Months_February": "February", + "Common_Months_March": "March", + "Common_Months_April": "April", + "Common_Months_May": "May", + "Common_Months_June": "June", + "Common_Months_July": "July", + "Common_Months_August": "August", + "Common_Months_September": "September", + "Common_Months_October": "October", + "Common_Months_November": "November", + "Common_Months_December": "December", + "Onboarding_QuizAnswer_Correct": "Correct answer", + "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", + "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", + "Measurement_Title": "Measurement", + "Measurements_Count_One": "%1$d measurement", + "Measurements_Count_Other": "%1$d measurements", + "Measurements_Failed": "Failed", + "Measurements_Ok": "OK", + "Measurements_Anomaly": "Anomaly", + "Results_TestType_All": "All Types", + "Results_TaskOrigin_All": "All Sources", + "Results_LimitedNotice": "Only the last %1$d results are shown", + "Results_UploadingMissing": "Uploading missing results %1$s", + "Settings_Logs": "Logs", + "Settings_ShareLogs": "Share Logs", + "Settings_ShareLogs_Error": "Error sharing logs", + "Settings_FilterLogs": "Filter Logs", + "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", + "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", + "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", + "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", + "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Notification_ChannelName": "Testing", + "TaskOrigin_Manual": "Manual Run", + "TaskOrigin_AutoRun": "Auto Run", + "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/zu_ZA/strings.xml b/probe-mobile/zu_ZA/strings.xml index 25d07c0..4b8f43a 100644 --- a/probe-mobile/zu_ZA/strings.xml +++ b/probe-mobile/zu_ZA/strings.xml @@ -581,4 +581,59 @@ Link updates ready Review %s inputs + Back + refresh + Collapse + Expand + %1$s ago + %1$d minute + %1$d minutes + %1$d hour + %1$d hours + %1$dh + %1$dm + %1$ds + January + February + March + April + May + June + July + August + September + October + November + December + Correct answer + Incorrect answer + Last updated %1$s + Run %1$d test + Run %1$d tests + Unsupported URL + Measurement + %1$d measurement + %1$d measurements + Failed + OK + Anomaly + All Types + All Sources + Only the last %1$d results are shown + Uploading missing results %1$s + Logs + Share Logs + Error sharing logs + Filter Logs + Go to Settings > General > VPN and disconnect from your VPN. + Skip after this amount of results failed to upload + Results are automatically uploaded to OONI explorer + Limit Websites test duration + Maximum Websites test duration + Tests will run in the background + Only for manual runs + Testing + Manual Run + Auto Run + VPN diff --git a/update_languages_kmp.sh b/update_languages_kmp.sh index 34b40eb..0862db7 100755 --- a/update_languages_kmp.sh +++ b/update_languages_kmp.sh @@ -26,7 +26,7 @@ fi source supported_languages_mobile.sh $app -# ./update-translations.sh $app +./update-translations.sh $app ## We want to avoid copying unrequired strings. ## Read `${PROJDIR}/composeApp/src/commonMain/composeResources/values/strings-common.xml` and extract all the keys. From ec3a184def045b80d6c06f3c241fb076b6e92ed5 Mon Sep 17 00:00:00 2001 From: Norbel AMBANUMBEN Date: Thu, 5 Dec 2024 17:04:22 +0100 Subject: [PATCH 6/9] chore: update translation publish --- convert-from-app-string.py | 17 ++++++++++++++--- update_languages_kmp.sh | 11 ++++++++--- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/convert-from-app-string.py b/convert-from-app-string.py index 523cdae..5872b71 100644 --- a/convert-from-app-string.py +++ b/convert-from-app-string.py @@ -12,6 +12,8 @@ def parse_args(): p.add_argument('--source', metavar='PATH', help='path to multiplatform source', required=True) p.add_argument('--destination', metavar='PATH', help='path to multiplatform source', required=True) p.add_argument('--json', metavar='PATH', help='path to multiplatform source', required=True) + p.add_argument('--app', metavar='STRING', help='app', required=True) + p.add_argument('--base', metavar='PATH', help='ooni base json input path', required=False) p.add_argument('--lang', metavar='STRING', help='language', required=True) opt = p.parse_args() return opt @@ -30,7 +32,8 @@ def load_xml_keys(in_path): result[key] = value return result -def dict_to_android_xml(d, out_path): +def dict_to_android_xml(d, out_path, app): + resources = ET.Element('resources') comment = ET.Comment('This file is generated from https://github.com/ooni/translations. Please do not modify unless you know what youre doing') @@ -73,7 +76,7 @@ def dict_to_android_xml(d, out_path): # replace first `{testDate}` with `%1$s` text = text.replace("{testDate}", "%1$s", 1) - if key == "Modal_EnableNotifications_Paragraph": + if app == 'news-media-scan' and key == "Modal_EnableNotifications_Paragraph": # replace `OONI Probe` with `News Media Scan` text = text.replace("OONI Probe", "News Media Scan", 1) @@ -95,7 +98,15 @@ def main(): if key in source_keys: filtered_data[key] = text - dict_to_android_xml(filtered_data, opt.destination) + if opt.base is not None: + base_data = load_json(opt.base) + + for key, text in base_data.items(): + key = key.replace('.', '_') + if key == "Modal_EnableNotifications_Paragraph": + filtered_data[key] = text + + dict_to_android_xml(filtered_data, opt.destination, opt.app) if __name__ == "__main__": main() diff --git a/update_languages_kmp.sh b/update_languages_kmp.sh index 0862db7..ba672e8 100755 --- a/update_languages_kmp.sh +++ b/update_languages_kmp.sh @@ -53,6 +53,7 @@ for language in ${SUPPORTED_LANGUAGES[@]};do --source ${PROJDIR}/composeApp/src/commonMain/composeResources/values/strings-common.xml \ --json probe-mobile/${language}/strings.json \ --destination ${output_file} \ + --app probe-mobile \ --lang ${language} # Common Resources @@ -62,6 +63,7 @@ for language in ${SUPPORTED_LANGUAGES[@]};do --source ${PROJDIR}/composeApp/src/ooniMain/composeResources/values/strings-organization.xml \ --json probe-mobile/${language}/strings.json \ --destination ${output_file} \ + --app probe-mobile \ --lang ${language} fi @@ -81,16 +83,19 @@ for language in ${SUPPORTED_LANGUAGES[@]};do --source ${PROJDIR}/composeApp/src/commonMain/composeResources/values/strings-common.xml \ --json probe-mobile/${language}/strings.json \ --destination ${output_file} \ + --app news-media-scan \ --lang ${language} - # Common Resources + # Organization Resources output_file=${output_dir}/strings-organization.xml python convert-from-app-string.py \ --source ${PROJDIR}/composeApp/src/dwMain/composeResources/values/strings-organization.xml \ - --json probe-mobile/${language}/strings.json \ + --json news-media-scan/${language}/strings.json \ --destination ${output_file} \ - --lang ${language} + --app news-media-scan \ + --lang ${language} \ + --base probe-mobile/${language}/strings.json fi done \ No newline at end of file From cbc7517137d2bdc59c87ab62576c370aa588e788 Mon Sep 17 00:00:00 2001 From: Norbel Ambanumben Date: Mon, 27 Jan 2025 15:19:21 +0100 Subject: [PATCH 7/9] chore: update translations --- news-media-scan/ar/strings.xml | 6 +- news-media-scan/de/strings.xml | 68 ++++----- news-media-scan/es/strings.xml | 6 +- news-media-scan/fa/strings.xml | 6 +- news-media-scan/fr/strings.xml | 188 ++++++++++++------------ news-media-scan/hi/strings.xml | 6 +- news-media-scan/id/strings.xml | 6 +- news-media-scan/pl/strings.xml | 6 +- news-media-scan/pt_BR/strings.xml | 74 +++++----- news-media-scan/ro/strings.xml | 6 +- news-media-scan/ru/strings.xml | 6 +- news-media-scan/sq/strings.xml | 6 +- news-media-scan/tr/strings.xml | 70 ++++----- probe-mobile/ar/Localizable.strings | 8 +- probe-mobile/ar/strings.json | 8 +- probe-mobile/ar/strings.xml | 8 +- probe-mobile/as/Localizable.strings | 8 +- probe-mobile/as/strings.json | 8 +- probe-mobile/as/strings.xml | 8 +- probe-mobile/be/Localizable.strings | 8 +- probe-mobile/be/strings.json | 8 +- probe-mobile/be/strings.xml | 8 +- probe-mobile/be_BY/Localizable.strings | 8 +- probe-mobile/be_BY/strings.json | 8 +- probe-mobile/be_BY/strings.xml | 8 +- probe-mobile/bn/Localizable.strings | 8 +- probe-mobile/bn/strings.json | 8 +- probe-mobile/bn/strings.xml | 8 +- probe-mobile/br/Localizable.strings | 8 +- probe-mobile/br/strings.json | 8 +- probe-mobile/br/strings.xml | 8 +- probe-mobile/bs/Localizable.strings | 8 +- probe-mobile/bs/strings.json | 8 +- probe-mobile/bs/strings.xml | 8 +- probe-mobile/ca/Localizable.strings | 10 +- probe-mobile/ca/strings.json | 10 +- probe-mobile/ca/strings.xml | 10 +- probe-mobile/cs/Localizable.strings | 8 +- probe-mobile/cs/strings.json | 8 +- probe-mobile/cs/strings.xml | 8 +- probe-mobile/de/Localizable.strings | 70 ++++----- probe-mobile/de/strings.json | 70 ++++----- probe-mobile/de/strings.xml | 70 ++++----- probe-mobile/el/Localizable.strings | 8 +- probe-mobile/el/strings.json | 8 +- probe-mobile/el/strings.xml | 8 +- probe-mobile/en/Localizable.strings | 2 +- probe-mobile/en/strings.csv | 136 +++++++++--------- probe-mobile/en/strings.json | 2 +- probe-mobile/en/strings.xml | 2 +- probe-mobile/es/Localizable.strings | 8 +- probe-mobile/es/strings.json | 8 +- probe-mobile/es/strings.xml | 8 +- probe-mobile/fa/Localizable.strings | 8 +- probe-mobile/fa/strings.json | 8 +- probe-mobile/fa/strings.xml | 8 +- probe-mobile/fi/Localizable.strings | 8 +- probe-mobile/fi/strings.json | 8 +- probe-mobile/fi/strings.xml | 8 +- probe-mobile/fil/Localizable.strings | 8 +- probe-mobile/fil/strings.json | 8 +- probe-mobile/fil/strings.xml | 8 +- probe-mobile/fr/Localizable.strings | 190 ++++++++++++------------- probe-mobile/fr/strings.json | 190 ++++++++++++------------- probe-mobile/fr/strings.xml | 190 ++++++++++++------------- probe-mobile/gl/Localizable.strings | 8 +- probe-mobile/gl/strings.json | 8 +- probe-mobile/gl/strings.xml | 8 +- probe-mobile/hi/Localizable.strings | 8 +- probe-mobile/hi/strings.json | 8 +- probe-mobile/hi/strings.xml | 8 +- probe-mobile/id/Localizable.strings | 8 +- probe-mobile/id/strings.json | 8 +- probe-mobile/id/strings.xml | 8 +- probe-mobile/ig/Localizable.strings | 8 +- probe-mobile/ig/strings.json | 8 +- probe-mobile/ig/strings.xml | 8 +- probe-mobile/is/Localizable.strings | 8 +- probe-mobile/is/strings.json | 8 +- probe-mobile/is/strings.xml | 8 +- probe-mobile/it/Localizable.strings | 8 +- probe-mobile/it/strings.json | 8 +- probe-mobile/it/strings.xml | 8 +- probe-mobile/ja/Localizable.strings | 8 +- probe-mobile/ja/strings.json | 8 +- probe-mobile/ja/strings.xml | 8 +- probe-mobile/km/Localizable.strings | 8 +- probe-mobile/km/strings.json | 8 +- probe-mobile/km/strings.xml | 8 +- probe-mobile/kn/Localizable.strings | 8 +- probe-mobile/kn/strings.json | 8 +- probe-mobile/kn/strings.xml | 8 +- probe-mobile/ko/Localizable.strings | 8 +- probe-mobile/ko/strings.json | 8 +- probe-mobile/ko/strings.xml | 8 +- probe-mobile/mk/Localizable.strings | 8 +- probe-mobile/mk/strings.json | 8 +- probe-mobile/mk/strings.xml | 8 +- probe-mobile/ms/Localizable.strings | 8 +- probe-mobile/ms/strings.json | 8 +- probe-mobile/ms/strings.xml | 8 +- probe-mobile/my/Localizable.strings | 8 +- probe-mobile/my/strings.json | 8 +- probe-mobile/my/strings.xml | 8 +- probe-mobile/nb/Localizable.strings | 8 +- probe-mobile/nb/strings.json | 8 +- probe-mobile/nb/strings.xml | 8 +- probe-mobile/nd/Localizable.strings | 8 +- probe-mobile/nd/strings.json | 8 +- probe-mobile/nd/strings.xml | 8 +- probe-mobile/ne/Localizable.strings | 8 +- probe-mobile/ne/strings.json | 8 +- probe-mobile/ne/strings.xml | 8 +- probe-mobile/nl/Localizable.strings | 8 +- probe-mobile/nl/strings.json | 8 +- probe-mobile/nl/strings.xml | 8 +- probe-mobile/ny/Localizable.strings | 8 +- probe-mobile/ny/strings.json | 8 +- probe-mobile/ny/strings.xml | 8 +- probe-mobile/ny_MW/Localizable.strings | 8 +- probe-mobile/ny_MW/strings.json | 8 +- probe-mobile/ny_MW/strings.xml | 8 +- probe-mobile/pa_IN/Localizable.strings | 8 +- probe-mobile/pa_IN/strings.json | 8 +- probe-mobile/pa_IN/strings.xml | 8 +- probe-mobile/pl/Localizable.strings | 8 +- probe-mobile/pl/strings.json | 8 +- probe-mobile/pl/strings.xml | 8 +- probe-mobile/pt_BR/Localizable.strings | 76 +++++----- probe-mobile/pt_BR/strings.json | 76 +++++----- probe-mobile/pt_BR/strings.xml | 76 +++++----- probe-mobile/pt_MZ/Localizable.strings | 8 +- probe-mobile/pt_MZ/strings.json | 8 +- probe-mobile/pt_MZ/strings.xml | 8 +- probe-mobile/ro/Localizable.strings | 8 +- probe-mobile/ro/strings.json | 8 +- probe-mobile/ro/strings.xml | 8 +- probe-mobile/ru/Localizable.strings | 8 +- probe-mobile/ru/strings.json | 8 +- probe-mobile/ru/strings.xml | 8 +- probe-mobile/sk/Localizable.strings | 8 +- probe-mobile/sk/strings.json | 8 +- probe-mobile/sk/strings.xml | 8 +- probe-mobile/sl/Localizable.strings | 8 +- probe-mobile/sl/strings.json | 8 +- probe-mobile/sl/strings.xml | 8 +- probe-mobile/sn/Localizable.strings | 8 +- probe-mobile/sn/strings.json | 8 +- probe-mobile/sn/strings.xml | 8 +- probe-mobile/sq/Localizable.strings | 8 +- probe-mobile/sq/strings.json | 8 +- probe-mobile/sq/strings.xml | 8 +- probe-mobile/ss/Localizable.strings | 8 +- probe-mobile/ss/strings.json | 8 +- probe-mobile/ss/strings.xml | 8 +- probe-mobile/sv/Localizable.strings | 8 +- probe-mobile/sv/strings.json | 8 +- probe-mobile/sv/strings.xml | 8 +- probe-mobile/sw/Localizable.strings | 8 +- probe-mobile/sw/strings.json | 8 +- probe-mobile/sw/strings.xml | 8 +- probe-mobile/th/Localizable.strings | 8 +- probe-mobile/th/strings.json | 8 +- probe-mobile/th/strings.xml | 8 +- probe-mobile/tk_TM/Localizable.strings | 8 +- probe-mobile/tk_TM/strings.json | 8 +- probe-mobile/tk_TM/strings.xml | 8 +- probe-mobile/tr/Localizable.strings | 72 +++++----- probe-mobile/tr/strings.json | 72 +++++----- probe-mobile/tr/strings.xml | 72 +++++----- probe-mobile/tum/Localizable.strings | 8 +- probe-mobile/tum/strings.json | 8 +- probe-mobile/tum/strings.xml | 8 +- probe-mobile/uk/Localizable.strings | 8 +- probe-mobile/uk/strings.json | 8 +- probe-mobile/uk/strings.xml | 8 +- probe-mobile/ur/Localizable.strings | 10 +- probe-mobile/ur/strings.json | 10 +- probe-mobile/ur/strings.xml | 10 +- probe-mobile/vi/Localizable.strings | 8 +- probe-mobile/vi/strings.json | 8 +- probe-mobile/vi/strings.xml | 8 +- probe-mobile/zh_CN/Localizable.strings | 70 ++++----- probe-mobile/zh_CN/strings.json | 70 ++++----- probe-mobile/zh_CN/strings.xml | 70 ++++----- probe-mobile/zh_HK/Localizable.strings | 8 +- probe-mobile/zh_HK/strings.json | 8 +- probe-mobile/zh_HK/strings.xml | 8 +- probe-mobile/zh_TW/Localizable.strings | 8 +- probe-mobile/zh_TW/strings.json | 8 +- probe-mobile/zh_TW/strings.xml | 8 +- probe-mobile/zu_ZA/Localizable.strings | 8 +- probe-mobile/zu_ZA/strings.json | 8 +- probe-mobile/zu_ZA/strings.xml | 8 +- 194 files changed, 1669 insertions(+), 1669 deletions(-) diff --git a/news-media-scan/ar/strings.xml b/news-media-scan/ar/strings.xml index 3659c5e..1c6d01c 100644 --- a/news-media-scan/ar/strings.xml +++ b/news-media-scan/ar/strings.xml @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s جانفي فيفري مارس diff --git a/news-media-scan/de/strings.xml b/news-media-scan/de/strings.xml index c4cc6b7..1f64077 100644 --- a/news-media-scan/de/strings.xml +++ b/news-media-scan/de/strings.xml @@ -582,17 +582,17 @@ Überprüfen %s Eingaben Zurück - refresh + aktualisieren Einklappen Ausklappen - %1$s ago - %1$d minute - %1$d minutes - %1$d hour - %1$d hours - %1$dh - %1$dm - %1$ds + Vor %1$s + %1$d Minute + %1$d Minuten + %1$d Stunde + %1$d Stunden + %1$d Std + %1$d Min + %1$d Sek Januar Februar März @@ -605,35 +605,35 @@ Oktober November Dezember - Correct answer - Incorrect answer - Last updated %1$s - Run %1$d test - Run %1$d tests - Unsupported URL - Measurement - %1$d measurement - %1$d measurements + Richtige Antwort + Falsche Antwort + Zuletzt aktualisiert %1$s + Führe %1$d Test aus + Führe %1$d Tests aus + Nicht unterstützte URL + Messung + %1$d Messung + %1$d Messungen Fehlgeschlagen OK Anomalie - All Types - All Sources - Only the last %1$d results are shown - Uploading missing results %1$s + Alle Typen + Alle Quellen + Nur die letzten %1$d Resultate werden angezeigt + Hochladen fehlender Ergebnisse %1$s Protokolle - Share Logs - Error sharing logs - Filter Logs - Go to Settings > General > VPN and disconnect from your VPN. - Skip after this amount of results failed to upload - Results are automatically uploaded to OONI explorer - Limit Websites test duration - Maximum Websites test duration - Tests will run in the background - Only for manual runs + Protokolle teilen + Fehler beim Teilen der Protokolle + Protokolle filtern + Gehe zu Einstellungen > Allgemein > VPN und trenne die Verbindung zu deinem VPN. + Überspringen, nachdem diese Anzahl von Ergebnissen nicht hochgeladen wurde + Die Ergebnisse werden automatisch in OONI-Explorer hochgeladen + Testdauer der Websites begrenzen + Maximale Testdauer der Websites + Tests werden im Hintergrund laufen + Nur für manuelle Ausführungen Testvorgang - Manual Run - Auto Run + Manuelle Ausführung + Automatischer Start VPN diff --git a/news-media-scan/es/strings.xml b/news-media-scan/es/strings.xml index 235b2e4..819d9b5 100644 --- a/news-media-scan/es/strings.xml +++ b/news-media-scan/es/strings.xml @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Enero Febrero Marzo diff --git a/news-media-scan/fa/strings.xml b/news-media-scan/fa/strings.xml index e350bca..af2d270 100644 --- a/news-media-scan/fa/strings.xml +++ b/news-media-scan/fa/strings.xml @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s ژانویه فوریه مارچ diff --git a/news-media-scan/fr/strings.xml b/news-media-scan/fr/strings.xml index a7fddbd..696c239 100644 --- a/news-media-scan/fr/strings.xml +++ b/news-media-scan/fr/strings.xml @@ -53,7 +53,7 @@ Afficher le journal Fermer le journal Arrêt du test… - Achèvement des tests en attente, veuillez patienter… + Achèvement des tests en attente, patientez… Le mandataire est en fonction Toucher la carte pour en savoir plus ~%1$ss @@ -72,7 +72,7 @@ Effectuer les nouveaux tests expérimentaux Effectuer les nouveaux tests expérimentaux suivants conçus par l’équipe d’OONI :\n%1$s\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/) et l’[API d’OONI](https://api.ooni.io/) (site en anglais). Les tests suivants ne seront exécutés que dans le cadre des tests automatisés : - Disabled Tests + Tests désactivés Gbit/s Mbit/s kbit/s @@ -279,20 +279,20 @@ Lancer quand même Désactiver le RPV Toujours exécuter - Impossible d’effectuer le test. Veuillez vérifier votre connexion à Internet. - Impossible de télécharger la liste des URL. Veuillez réessayer. - Veuillez attendre la fin du test en cours avant de lancer un nouveau test. - Les autorisations de notification sont nécessaires. Veuillez les activer dans les paramètres de votre téléphone, puis les activer dans votre appli OONI Probe. + Impossible d’effectuer le test. Vérifiez votre connexion à Internet. + Impossible de télécharger la liste des URL. Réessayez. + Attendez la fin du test en cours avant de lancer un nouveau test. + Les autorisations de notification sont nécessaires. Activez-les dans les paramètres de votre appareil, puis dans votre appli OONI Probe. Aller dans les Paramètres Cet écran est verrouillé pendant qu’un test est en cours. Vous devez être connecté à Internet pour télécharger les données brutes de mesure. Les résultats n’ont pas été téléversés - Certains de vos résultats de test n’ont pas été téléversés vers les serveurs de l’OONI. Si vous souhaitez contribuer à l’ensemble de données de l’OONI, veuillez les téléverser. + Certains de vos résultats de test n’ont pas été téléversés vers les serveurs de l’OONI. Si vous souhaitez contribuer à l’ensemble de données de l’OONI, téléversez-les. Téléversement Téléversement de %1$s… - OONI Probe ne peut pas fonctionner automatiquement sans optimisation de la pile. Voulez-vous réessayer ? - Veuillez désactiver votre connexion RPV. - Si vous exécutez OONI Probe alors qu’un RPV (réseau privé virtuel) est activé, les résultats des tests pourraient sembler provenir du mauvais pays. Veuillez désactiver votre connexion RPV. + OONI Probe ne peut pas fonctionner automatiquement sans optimisation de la batterie. Voulez-vous réessayer ? + Désactivez votre connexion RPV. + Si vous exécutez OONI Probe alors qu’un RPV (réseau privé virtuel) est activé, les résultats des tests pourraient sembler provenir du mauvais pays. Désactivez votre connexion RPV. Certaines mesures ont été prises connecté à un RPV. Si vous téléversez des mesures prises alors qu’un RPV est activé, les résultats du test pourraient sembler provenir du mauvais pays. Téléversement réussi @@ -302,8 +302,8 @@ Pour améliorer la précision des tests, nous avons besoin des autorisations Position. OONI ne recueillera qu’une position GPS approximative. Voulez-vous supprimer tous les résultats de test ? Voulez-vous supprimer ce test ? - Veuillez activer au moins un test - Veuillez ne saisir que des chiffres dans ce champ. + Activez au moins un test + Ne saisissez que des chiffres dans ce champ. Relancer le test Ce test a échoué. Relancer le test ? Vous êtes sur le point de retester %1$s sites Web. @@ -323,7 +323,7 @@ Le test en cours sera interrompu à partir de maintenant. Voulez-vous effectuer les tests automatiquement ? En activant les tests automatisés, vous enverrez des mesures OONI sur une base régulière. - Veuillez autoriser l’appli à fonctionner en arrière-plan. + Autorisez l’appli à fonctionner en arrière-plan. Me rappeler plus tard Copié dans le presse-papiers N’a pas été téléversé @@ -366,7 +366,7 @@ Dernier test automatisé : %1$s. Seulement par Wi-Fi Seulement pendant la charge - En activant les tests automatiques, les tests d’OONI Probe auront lieu automatiquement plusieurs fois par jour. Les résultats de vos tests seront publiés automatiquement sur l’Explorateur OONI : https://explorer.ooni.org/ (site en anglais)\n\nImportant : Si vous utilisez un RPV et qu’il est activé, OONI Probe n’effectuera pas de test automatique. Afin que les tests automatisés d’OONI Probe aient lieu, veuillez désactiver votre RPV. Apprenez-en davantage : https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn (site en anglais) + En activant les tests automatiques, les tests d’OONI Probe auront lieu automatiquement plusieurs fois par jour. Les résultats de vos tests seront publiés automatiquement sur l’Explorateur OONI : https://explorer.ooni.org/ (site en anglais)\n\nImportant : Si vous utilisez un RPV et qu’il est activé, OONI Probe n’effectuera pas de test automatique. Afin que les tests automatisés d’OONI Probe aient lieu, désactivez votre RPV. Apprenez-en davantage : https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn (site en anglais) Partage Publier automatiquement les résultats Téléversement manuel des résultats @@ -442,8 +442,8 @@ Tester RiseupVPN Avertir quand un RPV est utilisé Envoyer un courriel à l’assistance - Veuillez décrire le problème que vous rencontrez : - Veuillez envoyer un courriel à bugs@openobservatory.org avec des renseignements sur la version de l’appli et d’iOS. Touchez « Copier dans le presse-papiers » ci-dessous pour copier votre adresse courriel. + Décrivez le problème que vous rencontrez : + Envoyez un courriel à bugs@openobservatory.org avec des renseignements sur la version de l’appli et d’iOS. Touchez « Copier dans le presse-papiers » ci-dessous pour copier votre adresse courriel. La langue actuelle de l’appli est %1$s Langue Utilisation de l’espace de stockage @@ -455,7 +455,7 @@ Arrêter le test Essayer un miroir Chargement… - Une erreur inattendue s’est produite. Veuillez recharger cette page. + Une erreur inattendue s’est produite. Rechargez cette page. Vous êtes sur le point d’effectuer un test OONI Probe. %1$s URL Nom du test @@ -468,9 +468,9 @@ Un paramètre est invalide Soit le lien OONI Run est malformé soit votre appli n’est pas à jour. Vous testerez un échantillon aléatoire de sites Web. - Veuillez attendre la fin du test avant d’ouvrir un lien OONI Run. - Read more > - Read less > + Attendez la fin du test avant d’ouvrir un lien OONI Run. + Afficher plus > + Afficher moins > Drogues et alcool Religion Pornographie @@ -533,66 +533,66 @@ Contenu bénin ou inoffensif utilisé pour le contrôle Organisations intergouvernementales, dont les Nations Unies Sites qui n’ont pas encore été catégorisés - Don’t ask again - Enable test progress notifications - Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? - Link Loading + Ne plus demander + Activer les notifications de progression des tests + Voulez-vous afficher des notifications sur la progression des tests OONI Probe et afficher les tests en cours dans le tiroir de notification ? + Chargement du lien Erreur - Link installation cancelled - Created by %s on %s\n\n%s - Uninstall Link - Review Updates - Previous revisions - You will be able to install this link again only from the original link sent by the creator. - See More - Test websites automatically + L’installation du lien a été annulée + Créé par %s le %s\n\n%s + Désinstaller le lien + Mise à jour des révisions + Révisions précédentes + Vous ne pourrez réinstaller ce lien qu’à partir du lien original envoyé par le créateur. + Afficher plus + Tester les sites Web automatiquement Erreur - OONI Tests - OONI Run Links - Run finished. Tap to view results. - EXPIRED - UPDATED - Install New Link + Tests OONI + Liens OONI Run + L’exécution est terminée. Touchez pour afficher les résultats. + EXPIRÉ + MIS À JOUR + Installer un nouveau lien Auteur : Tester les paramètres - Install updates automatically + Installer les mises à jour automatiquement Lancer les tests automatiquement - Link installed - Install Link - Link installation cancelled - UPDATES - Test %s URLs - Test URLs - Link Update - Link(s) updated - Link Update (%1$s of %2$s) - UPDATE AND FINISH (%1$s of %2$s) - UPDATE (%1$s of %2$s) + Le lien a été installé + Installer le lien + L’installation du lien a été annulée + MISES À JOUR + Tester %s URL + Tester les URL + Mise à jour du lien + Les liens ont été mis à jour + Mise à jour des liens (%1$s de %2$s) + METTRE À JOUR ET TERMINER (%1$s de %2$s) + METTRE À JOUR (%1$s de %2$s) Mettre à jour - Run tests + Exécuter les tests Effectuer des tests - Please select test to run - Run %s test(s) - Select the tests to run - Select all tests - Deselect all tests - Link Loading - Link updates loading - Link updates ready + Choisissez le test à exécuter + Exécuter %s test(s) + Choisissez les tests à exécuter + Sélectionner tous les tests + Dessélectionner tous les tests + Chargement du lien + Chargement des mises à jour des liens + Les mises à jour des liens sont prêtes Révision - %s inputs + %s entrées Retour - refresh + actualiser Réduire Développer - %1$s ago - %1$d minute - %1$d minutes - %1$d hour - %1$d hours - %1$dh - %1$dm - %1$ds + il y a %1$s + %1$d minute + %1$d minutes + %1$d heure + %1$d heures + %1$d h + %1$d min + %1$d s janvier février mars @@ -605,35 +605,35 @@ octobre novembre décembre - Correct answer - Incorrect answer - Last updated %1$s - Run %1$d test - Run %1$d tests - Unsupported URL - Measurement - %1$d measurement - %1$d measurements + Bonne réponse + Mauvaise réponse + Dernière mise à jour le %1$s + Exécuter %1$d test + Exécuter %1$d tests + Cette URL n’est pas prise en charge + Mesure + %1$d mesure + %1$d mesures Échec Valider Anomalie - All Types - All Sources - Only the last %1$d results are shown - Uploading missing results %1$s + Tous les types + Toutes les sources + Seuls les %1$d derniers résultats sont affichés + Téléversements des résultats manquants %1$s Journaux - Share Logs - Error sharing logs - Filter Logs - Go to Settings > General > VPN and disconnect from your VPN. - Skip after this amount of results failed to upload - Results are automatically uploaded to OONI explorer - Limit Websites test duration - Maximum Websites test duration - Tests will run in the background - Only for manual runs + Partager les journaux + Erreur de partage des journaux + Filtrer les journaux + Accédez à Réglages > Général > VPN et déconnectez-vous de votre RPV. + Ignorer si ce nombre de résultats ne se téléversent pas + Les résultats sont téléversés automatiquement vers l’Explorateur OONI + Limiter la durée de test des sites Web + Durée maximale de test des sites Web + Les tests s’exécuteront en arrière-plan + Seulement pour les exécutions manuelles Test - Manual Run - Auto Run + Exécution manuelle + Exécution automatique RPV diff --git a/news-media-scan/hi/strings.xml b/news-media-scan/hi/strings.xml index d29f661..dba76f5 100644 --- a/news-media-scan/hi/strings.xml +++ b/news-media-scan/hi/strings.xml @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/news-media-scan/id/strings.xml b/news-media-scan/id/strings.xml index 7e2aa1a..5272806 100644 --- a/news-media-scan/id/strings.xml +++ b/news-media-scan/id/strings.xml @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Januari Februari Maret diff --git a/news-media-scan/pl/strings.xml b/news-media-scan/pl/strings.xml index 3bb0171..994c827 100644 --- a/news-media-scan/pl/strings.xml +++ b/news-media-scan/pl/strings.xml @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s styczeń luty marzec diff --git a/news-media-scan/pt_BR/strings.xml b/news-media-scan/pt_BR/strings.xml index b70bee3..1de52cf 100644 --- a/news-media-scan/pt_BR/strings.xml +++ b/news-media-scan/pt_BR/strings.xml @@ -580,19 +580,19 @@ Carregamento de atualizações de link Atualizações de link prontas Revisar - %s Entradas - Voltar - refresh + %s Entradas + Voltar + Refrescar Colapso Expandir - %1$s ago - %1$d minute - %1$d minutes - %1$d hour - %1$d hours - %1$dh - %1$dm - %1$ds + %1$satrás + %1$d minuto + %1$dminutos + %1$dhora + %1$dhoras + %1$d h + %1$d m + %1$d s Janeiro Fevereiro Março @@ -605,35 +605,35 @@ Outubro Novembro Dezembro - Correct answer - Incorrect answer - Last updated %1$s - Run %1$d test - Run %1$d tests - Unsupported URL - Measurement - %1$d measurement - %1$d measurements - Falha + Resposta correta + Resposta incorreta + Última atualização%1$s + Rodar %1$dteste + Rodar%1$dtestes + URL sem suporte + Medição + %1$dmedições + %1$dmedições + Falhou OK Anomalia - All Types - All Sources - Only the last %1$d results are shown - Uploading missing results %1$s + Todos os tipos + Todas as fontes + Somente os últimos%1$dresultados são mostrados + Subindo resultados pendentes %1$s Logs - Share Logs - Error sharing logs - Filter Logs - Go to Settings > General > VPN and disconnect from your VPN. - Skip after this amount of results failed to upload - Results are automatically uploaded to OONI explorer - Limit Websites test duration - Maximum Websites test duration - Tests will run in the background - Only for manual runs + Compartilhar logs + Erro de compartilhamento de logs + Filtro de logs + Vá para Configurações > Geral > VPN e desconecte da sua VPN. + Ignorar após esta quantidade de falhas ao carregar + Resultados são automaticamente subidos para o explorador do OONI. + Limitar a duração de testes de websites + Duração Máxima do teste de duração de websites + Testes rodarão no plano de fundo + Somente para execuções manuais Testando - Manual Run - Auto Run + Execução manual + Execução automática VPN diff --git a/news-media-scan/ro/strings.xml b/news-media-scan/ro/strings.xml index 014bc09..145ceaa 100644 --- a/news-media-scan/ro/strings.xml +++ b/news-media-scan/ro/strings.xml @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Ianuarie Februarie Martie diff --git a/news-media-scan/ru/strings.xml b/news-media-scan/ru/strings.xml index cf805ed..16e3bf2 100644 --- a/news-media-scan/ru/strings.xml +++ b/news-media-scan/ru/strings.xml @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Январь Февраль Март diff --git a/news-media-scan/sq/strings.xml b/news-media-scan/sq/strings.xml index 43ebe12..b75c529 100644 --- a/news-media-scan/sq/strings.xml +++ b/news-media-scan/sq/strings.xml @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Janar Shkurt Mars diff --git a/news-media-scan/tr/strings.xml b/news-media-scan/tr/strings.xml index 7d746d1..cbb4c1f 100644 --- a/news-media-scan/tr/strings.xml +++ b/news-media-scan/tr/strings.xml @@ -582,17 +582,17 @@ Gözden geçir %s giriş Geri - refresh + yenile Daralt Genişlet - %1$s ago - %1$d minute - %1$d minutes - %1$d hour - %1$d hours - %1$dh - %1$dm - %1$ds + %1$s önce + %1$d dakika + %1$d dakika + %1$d saat + %1$d saat + %1$d s + %1$d d + %1$d sn Ocak Şubat Mart @@ -605,35 +605,35 @@ Ekim Kasım Aralık - Correct answer - Incorrect answer - Last updated %1$s - Run %1$d test - Run %1$d tests - Unsupported URL - Measurement - %1$d measurement - %1$d measurements + Doğru yanıt + Yanlış yanıt + Son güncellenme: %1$s + %1$d sınamayı çalıştır + %1$d sınamayı çalıştır + Adres desteklenmiyor + Ölçüm + %1$d ölçüm + %1$d ölçüm Tamamlanamadı Tamam Anormallik - All Types - All Sources - Only the last %1$d results are shown - Uploading missing results %1$s + Tüm türler + Tüm kaynaklar + Yalnızca son %1$d sonuç görüntüleniyor + Eksik sonuçlar yükleniyor %1$s Günlükler - Share Logs - Error sharing logs - Filter Logs - Go to Settings > General > VPN and disconnect from your VPN. - Skip after this amount of results failed to upload - Results are automatically uploaded to OONI explorer - Limit Websites test duration - Maximum Websites test duration - Tests will run in the background - Only for manual runs - Testing - Manual Run - Auto Run + Günlüğü paylaş + Günlük paylaşılırken sorun çıktı + Günlüğü süz + Ayarlar > Genel > VPN bölümüne giderek VPN bağlantınızı kesin. + Şu kadar başarısız yüklemeden sonra atlansın + Sonuçlar OONI explorer üzerine otomatik olarak yüklenir + Site sınama süresi sınırlansın + En uzun site sınama süresi + Sınamalar arka planda yapılacak + Yalnızca el ile çalıştırmalar için + Sınanıyor + El ile çalıştırma + Otomatik çalıştırma VPN diff --git a/probe-mobile/ar/Localizable.strings b/probe-mobile/ar/Localizable.strings index 7828d19..923bfbf 100644 --- a/probe-mobile/ar/Localizable.strings +++ b/probe-mobile/ar/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "المراجعات السابقة"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "خطأ"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "جانفي"; "Common_Months_February" = "فيفري"; "Common_Months_March" = "مارس"; diff --git a/probe-mobile/ar/strings.json b/probe-mobile/ar/strings.json index bfa7758..c705108 100644 --- a/probe-mobile/ar/strings.json +++ b/probe-mobile/ar/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "المراجعات السابقة", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "خطأ", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "جانفي", "Common_Months_February": "فيفري", "Common_Months_March": "مارس", diff --git a/probe-mobile/ar/strings.xml b/probe-mobile/ar/strings.xml index 6c1ac6b..4fae293 100644 --- a/probe-mobile/ar/strings.xml +++ b/probe-mobile/ar/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates المراجعات السابقة - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically خطأ @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s جانفي فيفري مارس diff --git a/probe-mobile/as/Localizable.strings b/probe-mobile/as/Localizable.strings index 445ea20..3edddf6 100644 --- a/probe-mobile/as/Localizable.strings +++ b/probe-mobile/as/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "ত্ৰুটি"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/as/strings.json b/probe-mobile/as/strings.json index 20880df..3bc8f91 100644 --- a/probe-mobile/as/strings.json +++ b/probe-mobile/as/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "ত্ৰুটি", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/as/strings.xml b/probe-mobile/as/strings.xml index d2645e0..0e096d2 100644 --- a/probe-mobile/as/strings.xml +++ b/probe-mobile/as/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically ত্ৰুটি @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/be/Localizable.strings b/probe-mobile/be/Localizable.strings index 1fb924e..cffa6c6 100644 --- a/probe-mobile/be/Localizable.strings +++ b/probe-mobile/be/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Памылка"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/be/strings.json b/probe-mobile/be/strings.json index 64d7d78..79f1156 100644 --- a/probe-mobile/be/strings.json +++ b/probe-mobile/be/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Памылка", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/be/strings.xml b/probe-mobile/be/strings.xml index 65b7aef..1141399 100644 --- a/probe-mobile/be/strings.xml +++ b/probe-mobile/be/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Памылка @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/be_BY/Localizable.strings b/probe-mobile/be_BY/Localizable.strings index fba1dc1..0ebfece 100644 --- a/probe-mobile/be_BY/Localizable.strings +++ b/probe-mobile/be_BY/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Памылка"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/be_BY/strings.json b/probe-mobile/be_BY/strings.json index 90e30fe..7fc8438 100644 --- a/probe-mobile/be_BY/strings.json +++ b/probe-mobile/be_BY/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Памылка", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/be_BY/strings.xml b/probe-mobile/be_BY/strings.xml index f29f4c6..ff1b4ef 100644 --- a/probe-mobile/be_BY/strings.xml +++ b/probe-mobile/be_BY/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Памылка @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/bn/Localizable.strings b/probe-mobile/bn/Localizable.strings index 6e83e26..f1ba31c 100644 --- a/probe-mobile/bn/Localizable.strings +++ b/probe-mobile/bn/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "ভুল"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/bn/strings.json b/probe-mobile/bn/strings.json index 63b9def..2d0c4e1 100644 --- a/probe-mobile/bn/strings.json +++ b/probe-mobile/bn/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "ভুল", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/bn/strings.xml b/probe-mobile/bn/strings.xml index d014206..4698257 100644 --- a/probe-mobile/bn/strings.xml +++ b/probe-mobile/bn/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically ভুল @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/br/Localizable.strings b/probe-mobile/br/Localizable.strings index b6bcd76..d81a69a 100644 --- a/probe-mobile/br/Localizable.strings +++ b/probe-mobile/br/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Fazi"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/br/strings.json b/probe-mobile/br/strings.json index b8a2544..591cb3f 100644 --- a/probe-mobile/br/strings.json +++ b/probe-mobile/br/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Fazi", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/br/strings.xml b/probe-mobile/br/strings.xml index 9e87dfa..fe3421b 100644 --- a/probe-mobile/br/strings.xml +++ b/probe-mobile/br/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Fazi @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/bs/Localizable.strings b/probe-mobile/bs/Localizable.strings index 4d97b9b..550d1a4 100644 --- a/probe-mobile/bs/Localizable.strings +++ b/probe-mobile/bs/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/bs/strings.json b/probe-mobile/bs/strings.json index cea57a9..1820a0d 100644 --- a/probe-mobile/bs/strings.json +++ b/probe-mobile/bs/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/bs/strings.xml b/probe-mobile/bs/strings.xml index b1ddeb6..99e4c52 100644 --- a/probe-mobile/bs/strings.xml +++ b/probe-mobile/bs/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/ca/Localizable.strings b/probe-mobile/ca/Localizable.strings index 526bb95..2584d7c 100644 --- a/probe-mobile/ca/Localizable.strings +++ b/probe-mobile/ca/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -583,14 +583,14 @@ "Common_Refresh" = "refresh"; "Common_Collapse" = "Plega"; "Common_Expand" = "Desplega"; -"Common_Ago" = "%1$s ago"; +"Common_Ago" = "fa %1$s"; "Common_Minutes_One" = "%1$d minute"; "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "gener"; "Common_Months_February" = "febrer"; "Common_Months_March" = "març"; diff --git a/probe-mobile/ca/strings.json b/probe-mobile/ca/strings.json index f17dbca..d2cb7c3 100644 --- a/probe-mobile/ca/strings.json +++ b/probe-mobile/ca/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -584,14 +584,14 @@ "Common_Refresh": "refresh", "Common_Collapse": "Plega", "Common_Expand": "Desplega", - "Common_Ago": "%1$s ago", + "Common_Ago": "fa %1$s", "Common_Minutes_One": "%1$d minute", "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "gener", "Common_Months_February": "febrer", "Common_Months_March": "març", diff --git a/probe-mobile/ca/strings.xml b/probe-mobile/ca/strings.xml index b8d4541..3bb2bf4 100644 --- a/probe-mobile/ca/strings.xml +++ b/probe-mobile/ca/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -585,14 +585,14 @@ refresh Plega Desplega - %1$s ago + fa %1$s %1$d minute %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s gener febrer març diff --git a/probe-mobile/cs/Localizable.strings b/probe-mobile/cs/Localizable.strings index b719b58..4a5ac16 100644 --- a/probe-mobile/cs/Localizable.strings +++ b/probe-mobile/cs/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Chyba"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Leden"; "Common_Months_February" = "Únor"; "Common_Months_March" = "Březen"; diff --git a/probe-mobile/cs/strings.json b/probe-mobile/cs/strings.json index a883ba9..fe94da7 100644 --- a/probe-mobile/cs/strings.json +++ b/probe-mobile/cs/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Chyba", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Leden", "Common_Months_February": "Únor", "Common_Months_March": "Březen", diff --git a/probe-mobile/cs/strings.xml b/probe-mobile/cs/strings.xml index 4c08d47..04b0503 100644 --- a/probe-mobile/cs/strings.xml +++ b/probe-mobile/cs/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Chyba @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Leden Únor Březen diff --git a/probe-mobile/de/Localizable.strings b/probe-mobile/de/Localizable.strings index 333a40c..3d373b8 100644 --- a/probe-mobile/de/Localizable.strings +++ b/probe-mobile/de/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Link deinstallieren"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Überprüfung der Aktualisierungen"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Frühere Überarbeitungen"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "Du kannst diesen Link nur über den Original-Link installieren, den der Ersteller geschickt hat."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "Weitere Informationen"; "Dashboard.Runv2.Overview.TestWebsites" = "Websites automatisch testen"; "Dashboard.RunV2.ManualUpdate.Error" = "Fehler"; @@ -580,17 +580,17 @@ "Dashboard.Progress.ReviewLink.Action" = "Überprüfen"; "TestResults.TestCount" = "%s Eingaben"; "Common_Back" = "Zurück"; -"Common_Refresh" = "refresh"; +"Common_Refresh" = "aktualisieren"; "Common_Collapse" = "Einklappen"; "Common_Expand" = "Ausklappen"; -"Common_Ago" = "%1$s ago"; -"Common_Minutes_One" = "%1$d minute"; -"Common_Minutes_Other" = "%1$d minutes"; -"Common_Hour_One" = "%1$d hour"; -"Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Ago" = "Vor %1$s"; +"Common_Minutes_One" = "%1$d Minute"; +"Common_Minutes_Other" = "%1$d Minuten"; +"Common_Hour_One" = "%1$d Stunde"; +"Common_Hour_Other" = "%1$d Stunden"; +"Common_Hours_Abbreviated" = "%1$d Std"; +"Common_Minutes_Abbreviated" = "%1$d Min"; +"Common_Seconds_Abbreviated" = "%1$d Sek"; "Common_Months_January" = "Januar"; "Common_Months_February" = "Februar"; "Common_Months_March" = "März"; @@ -603,34 +603,34 @@ "Common_Months_October" = "Oktober"; "Common_Months_November" = "November"; "Common_Months_December" = "Dezember"; -"Onboarding_QuizAnswer_Correct" = "Correct answer"; -"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; -"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; -"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; -"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; -"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; -"Measurement_Title" = "Measurement"; -"Measurements_Count_One" = "%1$d measurement"; -"Measurements_Count_Other" = "%1$d measurements"; +"Onboarding_QuizAnswer_Correct" = "Richtige Antwort"; +"Onboarding_QuizAnswer_Incorrect" = "Falsche Antwort"; +"Dashboard_Runv2_Overview_LastUpdated" = "Zuletzt aktualisiert %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Führe %1$d Test aus"; +"Dashboard_RunTests_RunButton_Label_Other" = "Führe %1$d Tests aus"; +"AddDescriptor_Toasts_Unsupported_Url" = "Nicht unterstützte URL"; +"Measurement_Title" = "Messung"; +"Measurements_Count_One" = "%1$d Messung"; +"Measurements_Count_Other" = "%1$d Messungen"; "Measurements_Failed" = "Fehlgeschlagen"; "Measurements_Ok" = "OK"; "Measurements_Anomaly" = "Anomalie"; -"Results_TestType_All" = "All Types"; -"Results_TaskOrigin_All" = "All Sources"; -"Results_LimitedNotice" = "Only the last %1$d results are shown"; -"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Results_TestType_All" = "Alle Typen"; +"Results_TaskOrigin_All" = "Alle Quellen"; +"Results_LimitedNotice" = "Nur die letzten %1$d Resultate werden angezeigt"; +"Results_UploadingMissing" = "Hochladen fehlender Ergebnisse %1$s"; "Settings_Logs" = "Protokolle"; -"Settings_ShareLogs" = "Share Logs"; -"Settings_ShareLogs_Error" = "Error sharing logs"; -"Settings_FilterLogs" = "Filter Logs"; -"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; -"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; -"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; -"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; -"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; -"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; -"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Settings_ShareLogs" = "Protokolle teilen"; +"Settings_ShareLogs_Error" = "Fehler beim Teilen der Protokolle"; +"Settings_FilterLogs" = "Protokolle filtern"; +"Settings_DisableVpnInstructions" = "Gehe zu Einstellungen > Allgemein > VPN und trenne die Verbindung zu deinem VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Überspringen, nachdem diese Anzahl von Ergebnissen nicht hochgeladen wurde"; +"Settings_Sharing_UploadResults_Description" = "Die Ergebnisse werden automatisch in OONI-Explorer hochgeladen"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Testdauer der Websites begrenzen"; +"Settings_Websites_MaxRuntime_New" = "Maximale Testdauer der Websites"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests werden im Hintergrund laufen"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Nur für manuelle Ausführungen"; "Notification_ChannelName" = "Testvorgang"; -"TaskOrigin_Manual" = "Manual Run"; -"TaskOrigin_AutoRun" = "Auto Run"; +"TaskOrigin_Manual" = "Manuelle Ausführung"; +"TaskOrigin_AutoRun" = "Automatischer Start"; "NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/de/strings.json b/probe-mobile/de/strings.json index 71d24d2..f66c3ac 100644 --- a/probe-mobile/de/strings.json +++ b/probe-mobile/de/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Link deinstallieren", "Dashboard.Runv2.Overview.ReviewUpdates": "Überprüfung der Aktualisierungen", "Dashboard.Runv2.Overview.PreviousRevisions": "Frühere Überarbeitungen", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "Du kannst diesen Link nur über den Original-Link installieren, den der Ersteller geschickt hat.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "Weitere Informationen", "Dashboard.Runv2.Overview.TestWebsites": "Websites automatisch testen", "Dashboard.RunV2.ManualUpdate.Error": "Fehler", @@ -581,17 +581,17 @@ "Dashboard.Progress.ReviewLink.Action": "Überprüfen", "TestResults.TestCount": "%s Eingaben", "Common_Back": "Zurück", - "Common_Refresh": "refresh", + "Common_Refresh": "aktualisieren", "Common_Collapse": "Einklappen", "Common_Expand": "Ausklappen", - "Common_Ago": "%1$s ago", - "Common_Minutes_One": "%1$d minute", - "Common_Minutes_Other": "%1$d minutes", - "Common_Hour_One": "%1$d hour", - "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Ago": "Vor %1$s", + "Common_Minutes_One": "%1$d Minute", + "Common_Minutes_Other": "%1$d Minuten", + "Common_Hour_One": "%1$d Stunde", + "Common_Hour_Other": "%1$d Stunden", + "Common_Hours_Abbreviated": "%1$d Std", + "Common_Minutes_Abbreviated": "%1$d Min", + "Common_Seconds_Abbreviated": "%1$d Sek", "Common_Months_January": "Januar", "Common_Months_February": "Februar", "Common_Months_March": "März", @@ -604,35 +604,35 @@ "Common_Months_October": "Oktober", "Common_Months_November": "November", "Common_Months_December": "Dezember", - "Onboarding_QuizAnswer_Correct": "Correct answer", - "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", - "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", - "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", - "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", - "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", - "Measurement_Title": "Measurement", - "Measurements_Count_One": "%1$d measurement", - "Measurements_Count_Other": "%1$d measurements", + "Onboarding_QuizAnswer_Correct": "Richtige Antwort", + "Onboarding_QuizAnswer_Incorrect": "Falsche Antwort", + "Dashboard_Runv2_Overview_LastUpdated": "Zuletzt aktualisiert %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Führe %1$d Test aus", + "Dashboard_RunTests_RunButton_Label_Other": "Führe %1$d Tests aus", + "AddDescriptor_Toasts_Unsupported_Url": "Nicht unterstützte URL", + "Measurement_Title": "Messung", + "Measurements_Count_One": "%1$d Messung", + "Measurements_Count_Other": "%1$d Messungen", "Measurements_Failed": "Fehlgeschlagen", "Measurements_Ok": "OK", "Measurements_Anomaly": "Anomalie", - "Results_TestType_All": "All Types", - "Results_TaskOrigin_All": "All Sources", - "Results_LimitedNotice": "Only the last %1$d results are shown", - "Results_UploadingMissing": "Uploading missing results %1$s", + "Results_TestType_All": "Alle Typen", + "Results_TaskOrigin_All": "Alle Quellen", + "Results_LimitedNotice": "Nur die letzten %1$d Resultate werden angezeigt", + "Results_UploadingMissing": "Hochladen fehlender Ergebnisse %1$s", "Settings_Logs": "Protokolle", - "Settings_ShareLogs": "Share Logs", - "Settings_ShareLogs_Error": "Error sharing logs", - "Settings_FilterLogs": "Filter Logs", - "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", - "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", - "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", - "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", - "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", - "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", - "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Settings_ShareLogs": "Protokolle teilen", + "Settings_ShareLogs_Error": "Fehler beim Teilen der Protokolle", + "Settings_FilterLogs": "Protokolle filtern", + "Settings_DisableVpnInstructions": "Gehe zu Einstellungen > Allgemein > VPN und trenne die Verbindung zu deinem VPN.", + "Settings_AutoTest_NotUploadedLimit": "Überspringen, nachdem diese Anzahl von Ergebnissen nicht hochgeladen wurde", + "Settings_Sharing_UploadResults_Description": "Die Ergebnisse werden automatisch in OONI-Explorer hochgeladen", + "Settings_Websites_MaxRuntimeEnabled_New": "Testdauer der Websites begrenzen", + "Settings_Websites_MaxRuntime_New": "Maximale Testdauer der Websites", + "Settings_AutomatedTesting_RunAutomatically_Description": "Tests werden im Hintergrund laufen", + "Settings_Websites_MaxRuntimeEnabled_Description": "Nur für manuelle Ausführungen", "Notification_ChannelName": "Testvorgang", - "TaskOrigin_Manual": "Manual Run", - "TaskOrigin_AutoRun": "Auto Run", + "TaskOrigin_Manual": "Manuelle Ausführung", + "TaskOrigin_AutoRun": "Automatischer Start", "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/de/strings.xml b/probe-mobile/de/strings.xml index a7251c4..d2ac1f8 100644 --- a/probe-mobile/de/strings.xml +++ b/probe-mobile/de/strings.xml @@ -543,7 +543,7 @@ Link deinstallieren Überprüfung der Aktualisierungen Frühere Überarbeitungen - Du kannst diesen Link nur über den Original-Link installieren, den der Ersteller geschickt hat. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. Weitere Informationen Websites automatisch testen Fehler @@ -582,17 +582,17 @@ Überprüfen %s Eingaben Zurück - refresh + aktualisieren Einklappen Ausklappen - %1$s ago - %1$d minute - %1$d minutes - %1$d hour - %1$d hours - %1$dh - %1$dm - %1$ds + Vor %1$s + %1$d Minute + %1$d Minuten + %1$d Stunde + %1$d Stunden + %1$d Std + %1$d Min + %1$d Sek Januar Februar März @@ -605,35 +605,35 @@ Oktober November Dezember - Correct answer - Incorrect answer - Last updated %1$s - Run %1$d test - Run %1$d tests - Unsupported URL - Measurement - %1$d measurement - %1$d measurements + Richtige Antwort + Falsche Antwort + Zuletzt aktualisiert %1$s + Führe %1$d Test aus + Führe %1$d Tests aus + Nicht unterstützte URL + Messung + %1$d Messung + %1$d Messungen Fehlgeschlagen OK Anomalie - All Types - All Sources - Only the last %1$d results are shown - Uploading missing results %1$s + Alle Typen + Alle Quellen + Nur die letzten %1$d Resultate werden angezeigt + Hochladen fehlender Ergebnisse %1$s Protokolle - Share Logs - Error sharing logs - Filter Logs - Go to Settings > General > VPN and disconnect from your VPN. - Skip after this amount of results failed to upload - Results are automatically uploaded to OONI explorer - Limit Websites test duration - Maximum Websites test duration - Tests will run in the background - Only for manual runs + Protokolle teilen + Fehler beim Teilen der Protokolle + Protokolle filtern + Gehe zu Einstellungen > Allgemein > VPN und trenne die Verbindung zu deinem VPN. + Überspringen, nachdem diese Anzahl von Ergebnissen nicht hochgeladen wurde + Die Ergebnisse werden automatisch in OONI-Explorer hochgeladen + Testdauer der Websites begrenzen + Maximale Testdauer der Websites + Tests werden im Hintergrund laufen + Nur für manuelle Ausführungen Testvorgang - Manual Run - Auto Run + Manuelle Ausführung + Automatischer Start VPN diff --git a/probe-mobile/el/Localizable.strings b/probe-mobile/el/Localizable.strings index e9a154e..a254baf 100644 --- a/probe-mobile/el/Localizable.strings +++ b/probe-mobile/el/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Σφάλμα"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Ιανουάριος"; "Common_Months_February" = "Φεβρουάριος"; "Common_Months_March" = "Μάρτιος"; diff --git a/probe-mobile/el/strings.json b/probe-mobile/el/strings.json index b809f63..bf0fefb 100644 --- a/probe-mobile/el/strings.json +++ b/probe-mobile/el/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Σφάλμα", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Ιανουάριος", "Common_Months_February": "Φεβρουάριος", "Common_Months_March": "Μάρτιος", diff --git a/probe-mobile/el/strings.xml b/probe-mobile/el/strings.xml index 033a94b..cdfabb2 100644 --- a/probe-mobile/el/strings.xml +++ b/probe-mobile/el/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Σφάλμα @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Ιανουάριος Φεβρουάριος Μάρτιος diff --git a/probe-mobile/en/Localizable.strings b/probe-mobile/en/Localizable.strings index 3145d21..40de2fc 100644 --- a/probe-mobile/en/Localizable.strings +++ b/probe-mobile/en/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; diff --git a/probe-mobile/en/strings.csv b/probe-mobile/en/strings.csv index cb8ae36..43f9a00 100644 --- a/probe-mobile/en/strings.csv +++ b/probe-mobile/en/strings.csv @@ -1,10 +1,10 @@ Key,Text,Max length,Mobile,Desktop General.AppName,OONI Probe,,, Onboarding.WhatIsOONIProbe.Title,What is OONI Probe?,,, -Onboarding.WhatIsOONIProbe.Paragraph,"Your app for measuring internet censorship. - -Are websites and social media apps blocked? Is your internet connection unusually slow? - +Onboarding.WhatIsOONIProbe.Paragraph,"Your app for measuring internet censorship. + +Are websites and social media apps blocked? Is your internet connection unusually slow? + Run OONI Probe to find out!",,, Onboarding.WhatIsOONIProbe.GotIt,Got It,,, Onboarding.ThingsToKnow.Title,Heads-up!,,, @@ -27,14 +27,14 @@ Onboarding.PopQuiz.2.Question,"Every time I run OONI Probe, the network data I c Onboarding.PopQuiz.2.Wrong.Title,Warning,,, Onboarding.PopQuiz.2.Wrong.Paragraph,"To increase transparency of internet censorship, the network data of all OONI Probe users is automatically published (unless they opt-out in the settings).",,, Onboarding.AutomatedTesting.Title,Automated testing,,, -Onboarding.AutomatedTesting.Paragraph,"To measure internet censorship every day, please enable automated testing so that OONI Probe can run tests periodically. - -Don't worry, we'll be mindful of battery usage. - +Onboarding.AutomatedTesting.Paragraph,"To measure internet censorship every day, please enable automated testing so that OONI Probe can run tests periodically. + +Don't worry, we'll be mindful of battery usage. + You can disable automated testing from the settings at any time.",,, Onboarding.Crash.Title,Crash Reporting,,, -Onboarding.Crash.Paragraph,"To improve OONI Probe we would like to collect anonymous crash reports when the app does not work properly. - +Onboarding.Crash.Paragraph,"To improve OONI Probe we would like to collect anonymous crash reports when the app does not work properly. + Would you like to opt-in to submitting crash reports to the OONI development team?",,, Onboarding.Crash.Button.Yes,Yes,,, Onboarding.Crash.Button.No,No,,, @@ -43,8 +43,8 @@ Onboarding.DefaultSettings.Header,We collect and publish:,,, Onboarding.DefaultSettings.Bullet.1,Country code (e.g. IT for Italy),,, Onboarding.DefaultSettings.Bullet.2,Network information (including Autonomous System Number),,, Onboarding.DefaultSettings.Bullet.3,Time & date of testing,,, -Onboarding.DefaultSettings.Paragraph,"We do our best not to publish your IP address or any other potentially personally identifiable information. - +Onboarding.DefaultSettings.Paragraph,"We do our best not to publish your IP address or any other potentially personally identifiable information. + Learn more through [OONI's Data Policy](https://ooni.org/about/data-policy/).",,, Onboarding.DefaultSettings.Paragraph.1,"By tapping ""OK"", you will share crash reports to help us improve OONI Probe. ",,, Onboarding.DefaultSettings.Button.Go,Let's go,12,, @@ -69,61 +69,61 @@ Dashboard.Running.ProxyInUse,Proxy in use,,, Dashboard.Card.Subtitle,Tap card for more,,FALSE, Dashboard.Card.Seconds,~{{seconds}}s,,FALSE, Dashboard.Websites.Card.Description,Test the blocking of websites,,, -Dashboard.Websites.Overview.Paragraph,"Check whether websites are blocked using OONI's [Web Connectivity test](https://ooni.org/nettest/web-connectivity/). - -Every time you tap Run, you test different websites from the Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists. - -To test the sites of your choice, tap the Choose websites button or select categories of sites via the settings of this card. - -This test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy. - +Dashboard.Websites.Overview.Paragraph,"Check whether websites are blocked using OONI's [Web Connectivity test](https://ooni.org/nettest/web-connectivity/). + +Every time you tap Run, you test different websites from the Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists. + +To test the sites of your choice, tap the Choose websites button or select categories of sites via the settings of this card. + +This test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy. + Your results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/).",,, -Dashboard.Websites.Overview.Paragraph.Desktop,"Check whether websites are blocked using OONI's [Web Connectivity test](https://ooni.org/nettest/web-connectivity/). - -You will test the websites included in the Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists. - -This test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy. - +Dashboard.Websites.Overview.Paragraph.Desktop,"Check whether websites are blocked using OONI's [Web Connectivity test](https://ooni.org/nettest/web-connectivity/). + +You will test the websites included in the Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) and [country-specific](https://github.com/citizenlab/test-lists/tree/master/lists) test lists. + +This test measures whether websites are blocked by means of DNS tampering, TCP/IP blocking or by a transparent HTTP proxy. + Your results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/).",,, Dashboard.Performance.Card.Description,Test your network speed and performance,,, -Dashboard.Performance.Overview.Paragraph,"Measure the speed and performance of your network using the [NDT](https://ooni.org/nettest/ndt/) test. - -Measure video streaming performance using the [DASH](https://ooni.org/nettest/dash/) test. - -These tests consume data depending on your network speed. - -Your results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). - +Dashboard.Performance.Overview.Paragraph,"Measure the speed and performance of your network using the [NDT](https://ooni.org/nettest/ndt/) test. + +Measure video streaming performance using the [DASH](https://ooni.org/nettest/dash/) test. + +These tests consume data depending on your network speed. + +Your results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/). + Disclaimer: These tests rely on third party servers. We therefore cannot guarantee that your IP address will not be collected.",,, -Dashboard.Performance.Overview.Paragraph.Updated,"By running the tests in this card, you will: - -- Measure the speed and performance of your network ([NDT](https://ooni.org/nettest/ndt/) test) -- Measure video streaming performance ([DASH](https://ooni.org/nettest/dash/) test) -- Check for the presence of [middlebox technologies](https://ooni.org/support/glossary/#middlebox) on your network ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests) - -These tests consume data depending on your network speed. - -Your test results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). - +Dashboard.Performance.Overview.Paragraph.Updated,"By running the tests in this card, you will: + +- Measure the speed and performance of your network ([NDT](https://ooni.org/nettest/ndt/) test) +- Measure video streaming performance ([DASH](https://ooni.org/nettest/dash/) test) +- Check for the presence of [middlebox technologies](https://ooni.org/support/glossary/#middlebox) on your network ([HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests) + +These tests consume data depending on your network speed. + +Your test results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/). + **Disclaimer:** The [NDT](https://ooni.org/nettest/ndt/) and [DASH](https://ooni.org/nettest/dash/) tests are conducted against third-party servers provided by [Measurement Lab (M-Lab)](https://www.measurementlab.net/). If you run these tests, M-Lab will collect and publish your IP address (for research purposes), irrespective of your OONI Probe settings. Learn more about M-Lab’s data governance through its [privacy statement](https://www.measurementlab.net/privacy/).",,, Dashboard.Middleboxes.Card.Description,Detect middleboxes in your network,,DEPRECATED, -Dashboard.Middleboxes.Overview.Paragraph,"Internet Service Providers often use network appliances (middleboxes) for various networking purposes (such as caching). Sometimes these middleboxes are used to implement internet censorship and/or surveillance. - -Find middleboxes in your network using OONI's [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests. - +Dashboard.Middleboxes.Overview.Paragraph,"Internet Service Providers often use network appliances (middleboxes) for various networking purposes (such as caching). Sometimes these middleboxes are used to implement internet censorship and/or surveillance. + +Find middleboxes in your network using OONI's [HTTP Invalid Request Line](https://ooni.org/nettest/http-invalid-request-line/) and [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests. + Your results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/).",,DEPRECATED, Dashboard.InstantMessaging.Card.Description,Test the blocking of instant messaging apps,,, -Dashboard.InstantMessaging.Overview.Paragraph,"Check whether [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), and [Signal](https://ooni.org/nettest/signal) are blocked. - +Dashboard.InstantMessaging.Overview.Paragraph,"Check whether [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), and [Signal](https://ooni.org/nettest/signal) are blocked. + Your results will be published on [OONI Explorer](https://explorer.ooni.org/world/) and [OONI API](https://api.ooni.io/).",,, Dashboard.Circumvention.Card.Description,Test the blocking of censorship circumvention tools,,, -Dashboard.Circumvention.Overview.Paragraph,"Check whether [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) or [RiseupVPN](https://ooni.org/nettest/riseupvpn/) are blocked. - +Dashboard.Circumvention.Overview.Paragraph,"Check whether [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) or [RiseupVPN](https://ooni.org/nettest/riseupvpn/) are blocked. + Your results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/).",,, Dashboard.Experimental.Card.Description,Run new experimental tests,,, -Dashboard.Experimental.Overview.Paragraph,"Run the following new experimental tests developed by the OONI team: -{{experimental_test_list}} - +Dashboard.Experimental.Overview.Paragraph,"Run the following new experimental tests developed by the OONI team: +{{experimental_test_list}} + Your results will be published on [OONI Explorer](https://explorer.ooni.org/) and [OONI API](https://api.ooni.io/).",,, Dashboard.Experimental.Overview.Paragraph.AutomatedTesting,The following tests will only be run as part of automated testing:,,, Dashboard.DisabledTests.Label,Disabled Tests,,, @@ -222,8 +222,8 @@ TestResults.Details.Methodology.Paragraph,Learn how this test works [here]({{Lin TestResults.Details.Websites.Reachable.Hero.Title,Accessible,,, TestResults.Details.Websites.Reachable.Content.Paragraph,{{WebsiteURL}} is accessible.,,, TestResults.Details.Websites.LikelyBlocked.Hero.Title,Likely blocked,,, -TestResults.Details.Websites.LikelyBlocked.Content.Paragraph,"{{WebsiteURL}} is likely blocked by means of {{BlockingReason}}. - +TestResults.Details.Websites.LikelyBlocked.Content.Paragraph,"{{WebsiteURL}} is likely blocked by means of {{BlockingReason}}. + Note: False positives can occur. Learn more [here](https://ooni.org/support/faq/#what-are-false-positives).",,, TestResults.Details.Websites.LikelyBlocked.Content.LearnToCircumvent,Censorship Circumvention,,, TestResults.Details.Websites.LikelyBlocked.BlockingReason.DNS,**DNS tampering**,,, @@ -270,14 +270,14 @@ TestResults.Details.InstantMessaging.Signal.Reachable.Content.Paragraph,This tes TestResults.Details.Middleboxes.HTTPInvalidRequestLine.NotFound.Hero.Title,No middleboxes detected,,, TestResults.Details.Middleboxes.HTTPInvalidRequestLine.NotFound.Content.Paragraph,No network anomaly was detected when communicating with our servers. ,,, TestResults.Details.Middleboxes.HTTPInvalidRequestLine.Found.Hero.Title,Network tampering,,, -TestResults.Details.Middleboxes.HTTPInvalidRequestLine.Found.Content.Paragraph,"Network traffic was manipulated when contacting our control servers. - +TestResults.Details.Middleboxes.HTTPInvalidRequestLine.Found.Content.Paragraph,"Network traffic was manipulated when contacting our control servers. + This means that there may be a middlebox in your network, which could be responsible for censorship and/or surveillance.",,, TestResults.Details.Middleboxes.HTTPHeaderFieldManipulation.NotFound.Hero.Title,No middleboxes detected,,, TestResults.Details.Middleboxes.HTTPHeaderFieldManipulation.NotFound.Content.Paragraph,No network anomaly was detected when communicating with our servers. ,,, TestResults.Details.Middleboxes.HTTPHeaderFieldManipulation.Found.Hero.Title,Network tampering,,, -TestResults.Details.Middleboxes.HTTPHeaderFieldManipulation.Found.Content.Paragraph,"Network traffic was manipulated when contacting our control servers. - +TestResults.Details.Middleboxes.HTTPHeaderFieldManipulation.Found.Content.Paragraph,"Network traffic was manipulated when contacting our control servers. + This means that there may be a middlebox in your network, which could be responsible for censorship and/or surveillance.",,, TestResults.Details.Middleboxes.HTTPInvalidRequestLine.YouSent,You Sent,,, TestResults.Details.Middleboxes.HTTPInvalidRequestLine.YouReceived,You Received,,, @@ -411,8 +411,8 @@ Test.Signal.Fullname,Signal Test,,, Settings.Title,Settings,22,, Settings.Error.TestDurationTooLow,The amount of time you have set for the test duration is too low.,,, Settings.About.Label,About OONI,,, -Settings.About.Content.Paragraph,"The Open Observatory of Network Interference (OONI) is a free software project under The Tor Project that aims to increase transparency of internet censorship around the world. - +Settings.About.Content.Paragraph,"The Open Observatory of Network Interference (OONI) is a free software project under The Tor Project that aims to increase transparency of internet censorship around the world. + Since 2012, OONI's global community has been measuring networks in more than 200 countries. Some of these measurements serve as evidence of internet censorship.",,, Settings.About.Content.LearnMore,Learn more,20,, Settings.About.Content.Blog,Blog,,, @@ -428,8 +428,8 @@ Settings.AutomatedTesting.RunAutomatically.Number,Number of automated tests: {{t Settings.AutomatedTesting.RunAutomatically.DateLast,Last automated test: {{testDate}}.,,, Settings.AutomatedTesting.RunAutomatically.WiFiOnly,Only on WiFi,,NEW, Settings.AutomatedTesting.RunAutomatically.ChargingOnly,Only while charging,,, -Settings.AutomatedTesting.RunAutomatically.Footer,"By enabling automatic testing, OONI Probe tests will run automatically multiple times per day. Your test results will automatically get published on OONI Explorer: https://explorer.ooni.org/ - +Settings.AutomatedTesting.RunAutomatically.Footer,"By enabling automatic testing, OONI Probe tests will run automatically multiple times per day. Your test results will automatically get published on OONI Explorer: https://explorer.ooni.org/ + Important: If you have a VPN enabled, OONI Probe will not run tests automatically. Please turn off your VPN for automated OONI Probe testing. Learn more: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn",,, Settings.Sharing.Label,Sharing,,FALSE, Settings.Sharing.UploadResults,Automatically Publish Results,,, @@ -439,8 +439,8 @@ Settings.Sharing.GPS,Include approximate geo-location,,FALSE, Settings.Sharing.IncludeIP,Include my IP address,,FALSE, Settings.Sharing.IncludeCountryCode,Include Country Code,,FALSE, Settings.Sharing.IncludeCountryCode.PopUp,This information (e.g. IT for Italy) is required to identify which country the measurements are collected from. Are you sure you want to disable this option? ,,FALSE, -Settings.Sharing.Footer,"By publishing results, you are increasing transparency of network interference and supporting the OONI community. - +Settings.Sharing.Footer,"By publishing results, you are increasing transparency of network interference and supporting the OONI community. + Network information (i.e. Autonomous System Number) is required for identifying Internet Service Providers.",,FALSE, Settings.TestOptions.Label,Test options,,, Settings.TestOptions.Footer,"What you configure through the above test settings (e.g. disabling the WhatsApp test) will apply to tests run manually, as well as to tests run automatically (when automated testing is enabled). ",,, @@ -609,7 +609,7 @@ Dashboard.Runv2.Overview.Description,Created by %s on %s\n\n%s,,, Dashboard.Runv2.Overview.UninstallLink,Uninstall Link,,, Dashboard.Runv2.Overview.ReviewUpdates,Review Updates,,, Dashboard.Runv2.Overview.PreviousRevisions,Previous revisions,,, -Dashboard.Runv2.Overview.Uninstall.Prompt,You will be able to install this link again only from the original link sent by the creator.,,, +Dashboard.Runv2.Overview.Uninstall.Prompt,"You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.",,, Dashboard.Runv2.Overview.SeeMore,See More,,, Dashboard.Runv2.Overview.TestWebsites,Test websites automatically,,, Dashboard.RunV2.ManualUpdate.Error,Error,,, diff --git a/probe-mobile/en/strings.json b/probe-mobile/en/strings.json index 65cc8d7..fdfe70b 100644 --- a/probe-mobile/en/strings.json +++ b/probe-mobile/en/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", diff --git a/probe-mobile/en/strings.xml b/probe-mobile/en/strings.xml index 605235b..d418fc5 100644 --- a/probe-mobile/en/strings.xml +++ b/probe-mobile/en/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error diff --git a/probe-mobile/es/Localizable.strings b/probe-mobile/es/Localizable.strings index 0e6ea18..5244697 100644 --- a/probe-mobile/es/Localizable.strings +++ b/probe-mobile/es/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Enlace de Desinstalación"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Revisar Actualizaciones"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "Ver más"; "Dashboard.Runv2.Overview.TestWebsites" = "Probar sitios web automáticamente"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Enero"; "Common_Months_February" = "Febrero"; "Common_Months_March" = "Marzo"; diff --git a/probe-mobile/es/strings.json b/probe-mobile/es/strings.json index 68f2917..4ea7b21 100644 --- a/probe-mobile/es/strings.json +++ b/probe-mobile/es/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Enlace de Desinstalación", "Dashboard.Runv2.Overview.ReviewUpdates": "Revisar Actualizaciones", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "Ver más", "Dashboard.Runv2.Overview.TestWebsites": "Probar sitios web automáticamente", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Enero", "Common_Months_February": "Febrero", "Common_Months_March": "Marzo", diff --git a/probe-mobile/es/strings.xml b/probe-mobile/es/strings.xml index d1a54b0..21858a6 100644 --- a/probe-mobile/es/strings.xml +++ b/probe-mobile/es/strings.xml @@ -543,7 +543,7 @@ Enlace de Desinstalación Revisar Actualizaciones Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. Ver más Probar sitios web automáticamente Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Enero Febrero Marzo diff --git a/probe-mobile/fa/Localizable.strings b/probe-mobile/fa/Localizable.strings index d6a3a19..064cb86 100644 --- a/probe-mobile/fa/Localizable.strings +++ b/probe-mobile/fa/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "بازنگری‌های قبلی"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "خطا"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "ژانویه"; "Common_Months_February" = "فوریه"; "Common_Months_March" = "مارچ"; diff --git a/probe-mobile/fa/strings.json b/probe-mobile/fa/strings.json index 144ca12..b88d207 100644 --- a/probe-mobile/fa/strings.json +++ b/probe-mobile/fa/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "بازنگری‌های قبلی", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "خطا", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "ژانویه", "Common_Months_February": "فوریه", "Common_Months_March": "مارچ", diff --git a/probe-mobile/fa/strings.xml b/probe-mobile/fa/strings.xml index e0309f4..997d025 100644 --- a/probe-mobile/fa/strings.xml +++ b/probe-mobile/fa/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates بازنگری‌های قبلی - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically خطا @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s ژانویه فوریه مارچ diff --git a/probe-mobile/fi/Localizable.strings b/probe-mobile/fi/Localizable.strings index 36af8cd..1a34a57 100644 --- a/probe-mobile/fi/Localizable.strings +++ b/probe-mobile/fi/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Virhe"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Tammikuu"; "Common_Months_February" = "Helmikuu"; "Common_Months_March" = "Maaliskuu"; diff --git a/probe-mobile/fi/strings.json b/probe-mobile/fi/strings.json index e0bebb9..15b3049 100644 --- a/probe-mobile/fi/strings.json +++ b/probe-mobile/fi/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Virhe", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Tammikuu", "Common_Months_February": "Helmikuu", "Common_Months_March": "Maaliskuu", diff --git a/probe-mobile/fi/strings.xml b/probe-mobile/fi/strings.xml index ebd83d1..7b0ae53 100644 --- a/probe-mobile/fi/strings.xml +++ b/probe-mobile/fi/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Virhe @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Tammikuu Helmikuu Maaliskuu diff --git a/probe-mobile/fil/Localizable.strings b/probe-mobile/fil/Localizable.strings index d185015..807679b 100644 --- a/probe-mobile/fil/Localizable.strings +++ b/probe-mobile/fil/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/fil/strings.json b/probe-mobile/fil/strings.json index b9f9c7d..8859875 100644 --- a/probe-mobile/fil/strings.json +++ b/probe-mobile/fil/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/fil/strings.xml b/probe-mobile/fil/strings.xml index cadc850..9f9c839 100644 --- a/probe-mobile/fil/strings.xml +++ b/probe-mobile/fil/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/fr/Localizable.strings b/probe-mobile/fr/Localizable.strings index b60352a..d0d4f97 100644 --- a/probe-mobile/fr/Localizable.strings +++ b/probe-mobile/fr/Localizable.strings @@ -22,7 +22,7 @@ "Onboarding.PopQuiz.2.Wrong.Title" = "Avertissement"; "Onboarding.PopQuiz.2.Wrong.Paragraph" = "Afin d’accroître la transparence de la censure d’Internet, les données réseau de tous les utilisateurs d’OONI Probe sont publiées automatiquement (à moins qu’ils ne décident de ne pas y participer dans les paramètres)."; "Onboarding.AutomatedTesting.Title" = "Test automatisé"; -"Onboarding.AutomatedTesting.Paragraph" = "Pour mesurer la censure d’Internet tous les jours, veuillez activer les tests automatisés afin qu’OONI Probe puisse effectuer des tests régulièrement. Ne vous inquiétez pas, nous ferons attention à l’utilisation de la pile. Vous pouvez désactiver les tests automatisés n’importe quand dans les paramètres."; +"Onboarding.AutomatedTesting.Paragraph" = "Pour mesurer la censure d’Internet tous les jours, activez les tests automatisés afin qu’OONI Probe puisse effectuer des tests régulièrement. Ne vous inquiétez pas, nous ferons attention à l’utilisation de la batterie. Vous pouvez désactiver les tests automatisés n’importe quand dans les paramètres."; "Onboarding.Crash.Title" = "Signaler un plantage"; "Onboarding.Crash.Paragraph" = "Afin d’améliorer OONI Probe, nous souhaitons recueillir des relevés anonymes de plantage quand l’appli ne fonctionne pas correctement. Acceptez-vous d’envoyer des rapports de plantage à l’équipe de développement d’OONI ?"; "Onboarding.Crash.Button.Yes" = "Oui"; @@ -51,7 +51,7 @@ "Dashboard.Running.ShowLog" = "Afficher le journal"; "Dashboard.Running.CloseLog" = "Fermer le journal"; "Dashboard.Running.Stopping.Title" = "Arrêt du test…"; -"Dashboard.Running.Stopping.Notice" = "Achèvement des tests en attente, veuillez patienter…"; +"Dashboard.Running.Stopping.Notice" = "Achèvement des tests en attente, patientez…"; "Dashboard.Running.ProxyInUse" = "Le mandataire est en fonction"; "Dashboard.Card.Subtitle" = "Toucher la carte pour en savoir plus"; "Dashboard.Card.Seconds" = "~%@s"; @@ -70,7 +70,7 @@ "Dashboard.Experimental.Card.Description" = "Effectuer les nouveaux tests expérimentaux"; "Dashboard.Experimental.Overview.Paragraph" = "Effectuer les nouveaux tests expérimentaux suivants conçus par l’équipe d’OONI :\n%@\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/) et l’[API d’OONI](https://api.ooni.io/) (site en anglais)."; "Dashboard.Experimental.Overview.Paragraph.AutomatedTesting" = "Les tests suivants ne seront exécutés que dans le cadre des tests automatisés :"; -"Dashboard.DisabledTests.Label" = "Disabled Tests"; +"Dashboard.DisabledTests.Label" = "Tests désactivés"; "TestResults.Gbps" = "Gbit/s"; "TestResults.Mbps" = "Mbit/s"; "TestResults.Kbps" = "kbit/s"; @@ -277,20 +277,20 @@ "Modal.RunAnyway" = "Lancer quand même"; "Modal.DisableVPN" = "Désactiver le RPV"; "Modal.AlwaysRun" = "Toujours exécuter"; -"Modal.Error.NoInternet" = "Impossible d’effectuer le test. Veuillez vérifier votre connexion à Internet."; -"Modal.Error.CantDownloadURLs" = "Impossible de télécharger la liste des URL. Veuillez réessayer."; -"Modal.Error.TestAlreadyRunning" = "Veuillez attendre la fin du test en cours avant de lancer un nouveau test."; -"Modal.Error.NotificationNotEnabled" = "Les autorisations de notification sont nécessaires. Veuillez les activer dans les paramètres de votre téléphone, puis les activer dans votre appli OONI Probe."; +"Modal.Error.NoInternet" = "Impossible d’effectuer le test. Vérifiez votre connexion à Internet."; +"Modal.Error.CantDownloadURLs" = "Impossible de télécharger la liste des URL. Réessayez."; +"Modal.Error.TestAlreadyRunning" = "Attendez la fin du test en cours avant de lancer un nouveau test."; +"Modal.Error.NotificationNotEnabled" = "Les autorisations de notification sont nécessaires. Activez-les dans les paramètres de votre appareil, puis dans votre appli OONI Probe."; "Modal.Error.NotificationNotEnabled.GoToSettings" = "Aller dans les Paramètres"; "Modal.Error.CantCloseScreen" = "Cet écran est verrouillé pendant qu’un test est en cours."; "Modal.Error.RawDataNoInternet" = "Vous devez être connecté à Internet pour télécharger les données brutes de mesure."; "Modal.ResultsNotUploaded.Title" = "Les résultats n’ont pas été téléversés"; -"Modal.ResultsNotUploaded.Paragraph" = "Certains de vos résultats de test n’ont pas été téléversés vers les serveurs de l’OONI. Si vous souhaitez contribuer à l’ensemble de données de l’OONI, veuillez les téléverser."; +"Modal.ResultsNotUploaded.Paragraph" = "Certains de vos résultats de test n’ont pas été téléversés vers les serveurs de l’OONI. Si vous souhaitez contribuer à l’ensemble de données de l’OONI, téléversez-les."; "Modal.ResultsNotUploaded.Button.Upload" = "Téléversement"; "Modal.ResultsNotUploaded.Uploading" = "Téléversement de %@…"; -"Modal.Autorun.BatteryOptimization" = "OONI Probe ne peut pas fonctionner automatiquement sans optimisation de la pile. Voulez-vous réessayer ?"; -"Modal.DisableVPN.Title" = "Veuillez désactiver votre connexion RPV."; -"Modal.DisableVPN.Message" = "Si vous exécutez OONI Probe alors qu’un RPV (réseau privé virtuel) est activé, les résultats des tests pourraient sembler provenir du mauvais pays. Veuillez désactiver votre connexion RPV."; +"Modal.Autorun.BatteryOptimization" = "OONI Probe ne peut pas fonctionner automatiquement sans optimisation de la batterie. Voulez-vous réessayer ?"; +"Modal.DisableVPN.Title" = "Désactivez votre connexion RPV."; +"Modal.DisableVPN.Message" = "Si vous exécutez OONI Probe alors qu’un RPV (réseau privé virtuel) est activé, les résultats des tests pourraient sembler provenir du mauvais pays. Désactivez votre connexion RPV."; "Modal.UploadVPNResults.Title" = "Certaines mesures ont été prises connecté à un RPV."; "Modal.UploadVPNResults.Message" = "Si vous téléversez des mesures prises alors qu’un RPV est activé, les résultats du test pourraient sembler provenir du mauvais pays."; "Toast.ResultsUploaded" = "Téléversement réussi"; @@ -300,8 +300,8 @@ "Modal.EnableGPS" = "Pour améliorer la précision des tests, nous avons besoin des autorisations Position. OONI ne recueillera qu’une position GPS approximative."; "Modal.DoYouWantToDeleteAllTests" = "Voulez-vous supprimer tous les résultats de test ?"; "Modal.DoYouWantToDeleteThisTest" = "Voulez-vous supprimer ce test ?"; -"Modal.EnableAtLeastOneTest" = "Veuillez activer au moins un test"; -"Modal.OnlyDigits" = "Veuillez ne saisir que des chiffres dans ce champ."; +"Modal.EnableAtLeastOneTest" = "Activez au moins un test"; +"Modal.OnlyDigits" = "Ne saisissez que des chiffres dans ce champ."; "Modal.ReRun.Title" = "Relancer le test"; "Modal.ReRun.Paragraph" = "Ce test a échoué. Relancer le test ?"; "Modal.ReRun.Websites.Title" = "Vous êtes sur le point de retester %@ sites Web."; @@ -321,7 +321,7 @@ "Modal.InterruptTest.Paragraph" = "Le test en cours sera interrompu à partir de maintenant."; "Modal.Autorun.Modal.Title" = "Voulez-vous effectuer les tests automatiquement ?"; "Modal.Autorun.Modal.Text" = "En activant les tests automatisés, vous enverrez des mesures OONI sur une base régulière."; -"Modal.Autorun.Modal.Text.Android" = "Veuillez autoriser l’appli à fonctionner en arrière-plan."; +"Modal.Autorun.Modal.Text.Android" = "Autorisez l’appli à fonctionner en arrière-plan."; "Modal.Autorun.Modal.Button.RemindLater" = "Me rappeler plus tard"; "Toast.CopiedToClipboard" = "Copié dans le presse-papiers"; "Snackbar.ResultsNotUploaded.Text" = "N’a pas été téléversé"; @@ -364,7 +364,7 @@ "Settings.AutomatedTesting.RunAutomatically.DateLast" = "Dernier test automatisé : %@."; "Settings.AutomatedTesting.RunAutomatically.WiFiOnly" = "Seulement par Wi-Fi"; "Settings.AutomatedTesting.RunAutomatically.ChargingOnly" = "Seulement pendant la charge"; -"Settings.AutomatedTesting.RunAutomatically.Footer" = "En activant les tests automatiques, les tests d’OONI Probe auront lieu automatiquement plusieurs fois par jour. Les résultats de vos tests seront publiés automatiquement sur l’Explorateur OONI : https://explorer.ooni.org/ (site en anglais)\n\nImportant : Si vous utilisez un RPV et qu’il est activé, OONI Probe n’effectuera pas de test automatique. Afin que les tests automatisés d’OONI Probe aient lieu, veuillez désactiver votre RPV. Apprenez-en davantage : https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn (site en anglais)"; +"Settings.AutomatedTesting.RunAutomatically.Footer" = "En activant les tests automatiques, les tests d’OONI Probe auront lieu automatiquement plusieurs fois par jour. Les résultats de vos tests seront publiés automatiquement sur l’Explorateur OONI : https://explorer.ooni.org/ (site en anglais)\n\nImportant : Si vous utilisez un RPV et qu’il est activé, OONI Probe n’effectuera pas de test automatique. Afin que les tests automatisés d’OONI Probe aient lieu, désactivez votre RPV. Apprenez-en davantage : https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn (site en anglais)"; "Settings.Sharing.Label" = "Partage"; "Settings.Sharing.UploadResults" = "Publier automatiquement les résultats"; "Settings.Sharing.UploadResultsManually" = "Téléversement manuel des résultats"; @@ -440,8 +440,8 @@ "Settings.Circumvention.TestRiseupVPN" = "Tester RiseupVPN"; "Settings.WarmVPNInUse.Label" = "Avertir quand un RPV est utilisé"; "Settings.SendEmail.Label" = "Envoyer un courriel à l’assistance"; -"Settings.SendEmail.Message" = "Veuillez décrire le problème que vous rencontrez :"; -"Settings.SendEmail.Error" = "Veuillez envoyer un courriel à bugs@openobservatory.org avec des renseignements sur la version de l’appli et d’iOS. Touchez « Copier dans le presse-papiers » ci-dessous pour copier votre adresse courriel."; +"Settings.SendEmail.Message" = "Décrivez le problème que vous rencontrez :"; +"Settings.SendEmail.Error" = "Envoyez un courriel à bugs@openobservatory.org avec des renseignements sur la version de l’appli et d’iOS. Touchez « Copier dans le presse-papiers » ci-dessous pour copier votre adresse courriel."; "Settings.Language.Current" = "La langue actuelle de l’appli est %@"; "Settings.Language.Label" = "Langue"; "Settings.Storage.Label" = "Utilisation de l’espace de stockage"; @@ -453,7 +453,7 @@ "Notification.StopTest" = "Arrêter le test"; "OONIBrowser.TryMirror" = "Essayer un miroir"; "OONIBrowser.Loading" = "Chargement…"; -"OONIBrowser.Error" = "Une erreur inattendue s’est produite. Veuillez recharger cette page."; +"OONIBrowser.Error" = "Une erreur inattendue s’est produite. Rechargez cette page."; "OONIRun.YouAreAboutToRun" = "Vous êtes sur le point d’effectuer un test OONI Probe."; "OONIRun.URLs" = "%@ URL"; "OONIRun.TestName" = "Nom du test"; @@ -466,9 +466,9 @@ "OONIRun.InvalidParameter" = "Un paramètre est invalide"; "OONIRun.InvalidParameter.Msg" = "Soit le lien OONI Run est malformé soit votre appli n’est pas à jour."; "OONIRun.RandomSamplingOfURLs" = "Vous testerez un échantillon aléatoire de sites Web."; -"OONIRun.TestRunningError" = "Veuillez attendre la fin du test avant d’ouvrir un lien OONI Run."; -"OONIRun.ReadMore" = "Read more >"; -"OONIRun.ReadLess" = "Read less >"; +"OONIRun.TestRunningError" = "Attendez la fin du test avant d’ouvrir un lien OONI Run."; +"OONIRun.ReadMore" = "Afficher plus >"; +"OONIRun.ReadLess" = "Afficher moins >"; "CategoryCode.ALDR.Name" = "Drogues et alcool"; "CategoryCode.REL.Name" = "Religion"; "CategoryCode.PORN.Name" = "Pornographie"; @@ -531,66 +531,66 @@ "CategoryCode.CTRL.Description" = "Contenu bénin ou inoffensif utilisé pour le contrôle"; "CategoryCode.IGO.Description" = "Organisations intergouvernementales, dont les Nations Unies"; "CategoryCode.MISC.Description" = "Sites qui n’ont pas encore été catégorisés"; -"Prompt.DontAskAgain" = "Don’t ask again"; -"Prompt.EnableTestProgressNotifications.Title" = "Enable test progress notifications"; -"Prompt.EnableTestProgressNotifications.Paragraph" = "Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer?"; -"LoadingScreen.Runv2.Message" = "Link Loading"; +"Prompt.DontAskAgain" = "Ne plus demander"; +"Prompt.EnableTestProgressNotifications.Title" = "Activer les notifications de progression des tests"; +"Prompt.EnableTestProgressNotifications.Paragraph" = "Voulez-vous afficher des notifications sur la progression des tests OONI Probe et afficher les tests en cours dans le tiroir de notification ?"; +"LoadingScreen.Runv2.Message" = "Chargement du lien"; "LoadingScreen.Runv2.Failure" = "Erreur"; -"LoadingScreen.Runv2.Canceled" = "Link installation cancelled"; -"Dashboard.Runv2.Overview.Description" = "Created by %s on %s\n\n%s"; -"Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; -"Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; -"Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; -"Dashboard.Runv2.Overview.SeeMore" = "See More"; -"Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; +"LoadingScreen.Runv2.Canceled" = "L’installation du lien a été annulée"; +"Dashboard.Runv2.Overview.Description" = "Créé par %s le %s\n\n%s"; +"Dashboard.Runv2.Overview.UninstallLink" = "Désinstaller le lien"; +"Dashboard.Runv2.Overview.ReviewUpdates" = "Mise à jour des révisions"; +"Dashboard.Runv2.Overview.PreviousRevisions" = "Révisions précédentes"; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; +"Dashboard.Runv2.Overview.SeeMore" = "Afficher plus"; +"Dashboard.Runv2.Overview.TestWebsites" = "Tester les sites Web automatiquement"; "Dashboard.RunV2.ManualUpdate.Error" = "Erreur"; -"Dashboard.RunV2.Ooni.Title" = "OONI Tests"; -"Dashboard.RunV2.Title" = "OONI Run Links"; -"Dashboard.RunV2.RunFinished" = "Run finished. Tap to view results."; -"Dashboard.RunV2.ExpiredTag" = "EXPIRED"; -"Dashboard.RunV2.UpdatedTag" = "UPDATED"; -"AddDescriptor.Title" = "Install New Link"; +"Dashboard.RunV2.Ooni.Title" = "Tests OONI"; +"Dashboard.RunV2.Title" = "Liens OONI Run"; +"Dashboard.RunV2.RunFinished" = "L’exécution est terminée. Touchez pour afficher les résultats."; +"Dashboard.RunV2.ExpiredTag" = "EXPIRÉ"; +"Dashboard.RunV2.UpdatedTag" = "MIS À JOUR"; +"AddDescriptor.Title" = "Installer un nouveau lien"; "AddDescriptor.Author" = "Auteur :"; "AddDescriptor.Settings" = "Tester les paramètres"; -"AddDescriptor.AutoUpdate" = "Install updates automatically"; +"AddDescriptor.AutoUpdate" = "Installer les mises à jour automatiquement"; "AddDescriptor.AutoRun" = "Lancer les tests automatiquement"; -"AddDescriptor.Toasts.Installed" = "Link installed"; -"AddDescriptor.Action" = "Install Link"; -"AddDescriptor.Toasts.Canceled" = "Link installation cancelled"; -"DescriptorUpdate.Updates" = "UPDATES"; -"CustomWebsites.Fab.Text" = "Test %s URLs"; -"CustomWebsites.Fab.Default" = "Test URLs"; -"Dashboard.ReviewDescriptor.Title" = "Link Update"; -"Dashboard.ReviewDescriptor.Success" = "Link(s) updated"; -"Dashboard.ReviewDescriptor.Label" = "Link Update (%1$s of %2$s)"; -"Dashboard.ReviewDescriptor.Button.Last" = "UPDATE AND FINISH (%1$s of %2$s)"; -"Dashboard.ReviewDescriptor.Button.Default" = "UPDATE (%1$s of %2$s)"; +"AddDescriptor.Toasts.Installed" = "Le lien a été installé"; +"AddDescriptor.Action" = "Installer le lien"; +"AddDescriptor.Toasts.Canceled" = "L’installation du lien a été annulée"; +"DescriptorUpdate.Updates" = "MISES À JOUR"; +"CustomWebsites.Fab.Text" = "Tester %s URL"; +"CustomWebsites.Fab.Default" = "Tester les URL"; +"Dashboard.ReviewDescriptor.Title" = "Mise à jour du lien"; +"Dashboard.ReviewDescriptor.Success" = "Les liens ont été mis à jour"; +"Dashboard.ReviewDescriptor.Label" = "Mise à jour des liens (%1$s de %2$s)"; +"Dashboard.ReviewDescriptor.Button.Last" = "METTRE À JOUR ET TERMINER (%1$s de %2$s)"; +"Dashboard.ReviewDescriptor.Button.Default" = "METTRE À JOUR (%1$s de %2$s)"; "Dashboard.ReviewDescriptor.Update" = "Mettre à jour"; -"Dashboard.RunTests.Title" = "Run tests"; +"Dashboard.RunTests.Title" = "Exécuter les tests"; "Dashboard.RunTests.RunButton.Default" = "Effectuer des tests"; -"Dashboard.RunTests.RunButton.Empty" = "Please select test to run"; -"Dashboard.RunTests.RunButton.Label" = "Run %s test(s)"; -"Dashboard.RunTests.Description" = "Select the tests to run"; -"Dashboard.RunTests.SelectAll" = "Select all tests"; -"Dashboard.RunTests.SelectNone" = "Deselect all tests"; -"Dashboard.Progress.AddLink.Label" = "Link Loading"; -"Dashboard.Progress.UpdateLink.Label" = "Link updates loading"; -"Dashboard.Progress.ReviewLink.Label" = "Link updates ready"; +"Dashboard.RunTests.RunButton.Empty" = "Choisissez le test à exécuter"; +"Dashboard.RunTests.RunButton.Label" = "Exécuter %s test(s)"; +"Dashboard.RunTests.Description" = "Choisissez les tests à exécuter"; +"Dashboard.RunTests.SelectAll" = "Sélectionner tous les tests"; +"Dashboard.RunTests.SelectNone" = "Dessélectionner tous les tests"; +"Dashboard.Progress.AddLink.Label" = "Chargement du lien"; +"Dashboard.Progress.UpdateLink.Label" = "Chargement des mises à jour des liens"; +"Dashboard.Progress.ReviewLink.Label" = "Les mises à jour des liens sont prêtes"; "Dashboard.Progress.ReviewLink.Action" = "Révision"; -"TestResults.TestCount" = "%s inputs"; +"TestResults.TestCount" = "%s entrées"; "Common_Back" = "Retour"; -"Common_Refresh" = "refresh"; +"Common_Refresh" = "actualiser"; "Common_Collapse" = "Réduire"; "Common_Expand" = "Développer"; -"Common_Ago" = "%1$s ago"; -"Common_Minutes_One" = "%1$d minute"; -"Common_Minutes_Other" = "%1$d minutes"; -"Common_Hour_One" = "%1$d hour"; -"Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Ago" = "il y a %1$s"; +"Common_Minutes_One" = "%1$d minute"; +"Common_Minutes_Other" = "%1$d minutes"; +"Common_Hour_One" = "%1$d heure"; +"Common_Hour_Other" = "%1$d heures"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d min"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "janvier"; "Common_Months_February" = "février"; "Common_Months_March" = "mars"; @@ -603,34 +603,34 @@ "Common_Months_October" = "octobre"; "Common_Months_November" = "novembre"; "Common_Months_December" = "décembre"; -"Onboarding_QuizAnswer_Correct" = "Correct answer"; -"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; -"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; -"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; -"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; -"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; -"Measurement_Title" = "Measurement"; -"Measurements_Count_One" = "%1$d measurement"; -"Measurements_Count_Other" = "%1$d measurements"; +"Onboarding_QuizAnswer_Correct" = "Bonne réponse"; +"Onboarding_QuizAnswer_Incorrect" = "Mauvaise réponse"; +"Dashboard_Runv2_Overview_LastUpdated" = "Dernière mise à jour le %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Exécuter %1$d test"; +"Dashboard_RunTests_RunButton_Label_Other" = "Exécuter %1$d tests"; +"AddDescriptor_Toasts_Unsupported_Url" = "Cette URL n’est pas prise en charge"; +"Measurement_Title" = "Mesure"; +"Measurements_Count_One" = "%1$d mesure"; +"Measurements_Count_Other" = "%1$d mesures"; "Measurements_Failed" = "Échec"; "Measurements_Ok" = "Valider"; "Measurements_Anomaly" = "Anomalie"; -"Results_TestType_All" = "All Types"; -"Results_TaskOrigin_All" = "All Sources"; -"Results_LimitedNotice" = "Only the last %1$d results are shown"; -"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Results_TestType_All" = "Tous les types"; +"Results_TaskOrigin_All" = "Toutes les sources"; +"Results_LimitedNotice" = "Seuls les %1$d derniers résultats sont affichés"; +"Results_UploadingMissing" = "Téléversements des résultats manquants %1$s"; "Settings_Logs" = "Journaux"; -"Settings_ShareLogs" = "Share Logs"; -"Settings_ShareLogs_Error" = "Error sharing logs"; -"Settings_FilterLogs" = "Filter Logs"; -"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; -"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; -"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; -"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; -"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; -"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; -"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Settings_ShareLogs" = "Partager les journaux "; +"Settings_ShareLogs_Error" = "Erreur de partage des journaux"; +"Settings_FilterLogs" = "Filtrer les journaux"; +"Settings_DisableVpnInstructions" = "Accédez à Réglages > Général > VPN et déconnectez-vous de votre RPV."; +"Settings_AutoTest_NotUploadedLimit" = "Ignorer si ce nombre de résultats ne se téléversent pas"; +"Settings_Sharing_UploadResults_Description" = "Les résultats sont téléversés automatiquement vers l’Explorateur OONI"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limiter la durée de test des sites Web"; +"Settings_Websites_MaxRuntime_New" = "Durée maximale de test des sites Web"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Les tests s’exécuteront en arrière-plan"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Seulement pour les exécutions manuelles"; "Notification_ChannelName" = "Test"; -"TaskOrigin_Manual" = "Manual Run"; -"TaskOrigin_AutoRun" = "Auto Run"; +"TaskOrigin_Manual" = "Exécution manuelle"; +"TaskOrigin_AutoRun" = "Exécution automatique"; "NetworkType_Vpn" = "RPV"; diff --git a/probe-mobile/fr/strings.json b/probe-mobile/fr/strings.json index 61e29bb..b4939b1 100644 --- a/probe-mobile/fr/strings.json +++ b/probe-mobile/fr/strings.json @@ -23,7 +23,7 @@ "Onboarding.PopQuiz.2.Wrong.Title": "Avertissement", "Onboarding.PopQuiz.2.Wrong.Paragraph": "Afin d’accroître la transparence de la censure d’Internet, les données réseau de tous les utilisateurs d’OONI Probe sont publiées automatiquement (à moins qu’ils ne décident de ne pas y participer dans les paramètres).", "Onboarding.AutomatedTesting.Title": "Test automatisé", - "Onboarding.AutomatedTesting.Paragraph": "Pour mesurer la censure d’Internet tous les jours, veuillez activer les tests automatisés afin qu’OONI Probe puisse effectuer des tests régulièrement. Ne vous inquiétez pas, nous ferons attention à l’utilisation de la pile. Vous pouvez désactiver les tests automatisés n’importe quand dans les paramètres.", + "Onboarding.AutomatedTesting.Paragraph": "Pour mesurer la censure d’Internet tous les jours, activez les tests automatisés afin qu’OONI Probe puisse effectuer des tests régulièrement. Ne vous inquiétez pas, nous ferons attention à l’utilisation de la batterie. Vous pouvez désactiver les tests automatisés n’importe quand dans les paramètres.", "Onboarding.Crash.Title": "Signaler un plantage", "Onboarding.Crash.Paragraph": "Afin d’améliorer OONI Probe, nous souhaitons recueillir des relevés anonymes de plantage quand l’appli ne fonctionne pas correctement. Acceptez-vous d’envoyer des rapports de plantage à l’équipe de développement d’OONI ?", "Onboarding.Crash.Button.Yes": "Oui", @@ -52,7 +52,7 @@ "Dashboard.Running.ShowLog": "Afficher le journal", "Dashboard.Running.CloseLog": "Fermer le journal", "Dashboard.Running.Stopping.Title": "Arrêt du test…", - "Dashboard.Running.Stopping.Notice": "Achèvement des tests en attente, veuillez patienter…", + "Dashboard.Running.Stopping.Notice": "Achèvement des tests en attente, patientez…", "Dashboard.Running.ProxyInUse": "Le mandataire est en fonction", "Dashboard.Card.Subtitle": "Toucher la carte pour en savoir plus", "Dashboard.Card.Seconds": "~{secondes}s", @@ -71,7 +71,7 @@ "Dashboard.Experimental.Card.Description": "Effectuer les nouveaux tests expérimentaux", "Dashboard.Experimental.Overview.Paragraph": "Effectuer les nouveaux tests expérimentaux suivants conçus par l’équipe d’OONI :\n{experimental_test_list}\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/) et l’[API d’OONI](https://api.ooni.io/) (site en anglais).", "Dashboard.Experimental.Overview.Paragraph.AutomatedTesting": "Les tests suivants ne seront exécutés que dans le cadre des tests automatisés :", - "Dashboard.DisabledTests.Label": "Disabled Tests", + "Dashboard.DisabledTests.Label": "Tests désactivés", "TestResults.Gbps": "Gbit/s", "TestResults.Mbps": "Mbit/s", "TestResults.Kbps": "kbit/s", @@ -278,20 +278,20 @@ "Modal.RunAnyway": "Lancer quand même", "Modal.DisableVPN": "Désactiver le RPV", "Modal.AlwaysRun": "Toujours exécuter", - "Modal.Error.NoInternet": "Impossible d’effectuer le test. Veuillez vérifier votre connexion à Internet.", - "Modal.Error.CantDownloadURLs": "Impossible de télécharger la liste des URL. Veuillez réessayer.", - "Modal.Error.TestAlreadyRunning": "Veuillez attendre la fin du test en cours avant de lancer un nouveau test.", - "Modal.Error.NotificationNotEnabled": "Les autorisations de notification sont nécessaires. Veuillez les activer dans les paramètres de votre téléphone, puis les activer dans votre appli OONI Probe.", + "Modal.Error.NoInternet": "Impossible d’effectuer le test. Vérifiez votre connexion à Internet.", + "Modal.Error.CantDownloadURLs": "Impossible de télécharger la liste des URL. Réessayez.", + "Modal.Error.TestAlreadyRunning": "Attendez la fin du test en cours avant de lancer un nouveau test.", + "Modal.Error.NotificationNotEnabled": "Les autorisations de notification sont nécessaires. Activez-les dans les paramètres de votre appareil, puis dans votre appli OONI Probe.", "Modal.Error.NotificationNotEnabled.GoToSettings": "Aller dans les Paramètres", "Modal.Error.CantCloseScreen": "Cet écran est verrouillé pendant qu’un test est en cours.", "Modal.Error.RawDataNoInternet": "Vous devez être connecté à Internet pour télécharger les données brutes de mesure.", "Modal.ResultsNotUploaded.Title": "Les résultats n’ont pas été téléversés", - "Modal.ResultsNotUploaded.Paragraph": "Certains de vos résultats de test n’ont pas été téléversés vers les serveurs de l’OONI. Si vous souhaitez contribuer à l’ensemble de données de l’OONI, veuillez les téléverser.", + "Modal.ResultsNotUploaded.Paragraph": "Certains de vos résultats de test n’ont pas été téléversés vers les serveurs de l’OONI. Si vous souhaitez contribuer à l’ensemble de données de l’OONI, téléversez-les.", "Modal.ResultsNotUploaded.Button.Upload": "Téléversement", "Modal.ResultsNotUploaded.Uploading": "Téléversement de {testNumber}…", - "Modal.Autorun.BatteryOptimization": "OONI Probe ne peut pas fonctionner automatiquement sans optimisation de la pile. Voulez-vous réessayer ?", - "Modal.DisableVPN.Title": "Veuillez désactiver votre connexion RPV.", - "Modal.DisableVPN.Message": "Si vous exécutez OONI Probe alors qu’un RPV (réseau privé virtuel) est activé, les résultats des tests pourraient sembler provenir du mauvais pays. Veuillez désactiver votre connexion RPV.", + "Modal.Autorun.BatteryOptimization": "OONI Probe ne peut pas fonctionner automatiquement sans optimisation de la batterie. Voulez-vous réessayer ?", + "Modal.DisableVPN.Title": "Désactivez votre connexion RPV.", + "Modal.DisableVPN.Message": "Si vous exécutez OONI Probe alors qu’un RPV (réseau privé virtuel) est activé, les résultats des tests pourraient sembler provenir du mauvais pays. Désactivez votre connexion RPV.", "Modal.UploadVPNResults.Title": "Certaines mesures ont été prises connecté à un RPV.", "Modal.UploadVPNResults.Message": "Si vous téléversez des mesures prises alors qu’un RPV est activé, les résultats du test pourraient sembler provenir du mauvais pays.", "Toast.ResultsUploaded": "Téléversement réussi", @@ -301,8 +301,8 @@ "Modal.EnableGPS": "Pour améliorer la précision des tests, nous avons besoin des autorisations Position. OONI ne recueillera qu’une position GPS approximative.", "Modal.DoYouWantToDeleteAllTests": "Voulez-vous supprimer tous les résultats de test ?", "Modal.DoYouWantToDeleteThisTest": "Voulez-vous supprimer ce test ?", - "Modal.EnableAtLeastOneTest": "Veuillez activer au moins un test", - "Modal.OnlyDigits": "Veuillez ne saisir que des chiffres dans ce champ.", + "Modal.EnableAtLeastOneTest": "Activez au moins un test", + "Modal.OnlyDigits": "Ne saisissez que des chiffres dans ce champ.", "Modal.ReRun.Title": "Relancer le test", "Modal.ReRun.Paragraph": "Ce test a échoué. Relancer le test ?", "Modal.ReRun.Websites.Title": "Vous êtes sur le point de retester {websitesNumber} sites Web.", @@ -322,7 +322,7 @@ "Modal.InterruptTest.Paragraph": "Le test en cours sera interrompu à partir de maintenant.", "Modal.Autorun.Modal.Title": "Voulez-vous effectuer les tests automatiquement ?", "Modal.Autorun.Modal.Text": "En activant les tests automatisés, vous enverrez des mesures OONI sur une base régulière.", - "Modal.Autorun.Modal.Text.Android": "Veuillez autoriser l’appli à fonctionner en arrière-plan.", + "Modal.Autorun.Modal.Text.Android": "Autorisez l’appli à fonctionner en arrière-plan.", "Modal.Autorun.Modal.Button.RemindLater": "Me rappeler plus tard", "Toast.CopiedToClipboard": "Copié dans le presse-papiers", "Snackbar.ResultsNotUploaded.Text": "N’a pas été téléversé", @@ -365,7 +365,7 @@ "Settings.AutomatedTesting.RunAutomatically.DateLast": "Dernier test automatisé : {testDate}.", "Settings.AutomatedTesting.RunAutomatically.WiFiOnly": "Seulement par Wi-Fi", "Settings.AutomatedTesting.RunAutomatically.ChargingOnly": "Seulement pendant la charge", - "Settings.AutomatedTesting.RunAutomatically.Footer": "En activant les tests automatiques, les tests d’OONI Probe auront lieu automatiquement plusieurs fois par jour. Les résultats de vos tests seront publiés automatiquement sur l’Explorateur OONI : https://explorer.ooni.org/ (site en anglais)\n\nImportant : Si vous utilisez un RPV et qu’il est activé, OONI Probe n’effectuera pas de test automatique. Afin que les tests automatisés d’OONI Probe aient lieu, veuillez désactiver votre RPV. Apprenez-en davantage : https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn (site en anglais)", + "Settings.AutomatedTesting.RunAutomatically.Footer": "En activant les tests automatiques, les tests d’OONI Probe auront lieu automatiquement plusieurs fois par jour. Les résultats de vos tests seront publiés automatiquement sur l’Explorateur OONI : https://explorer.ooni.org/ (site en anglais)\n\nImportant : Si vous utilisez un RPV et qu’il est activé, OONI Probe n’effectuera pas de test automatique. Afin que les tests automatisés d’OONI Probe aient lieu, désactivez votre RPV. Apprenez-en davantage : https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn (site en anglais)", "Settings.Sharing.Label": "Partage", "Settings.Sharing.UploadResults": "Publier automatiquement les résultats", "Settings.Sharing.UploadResultsManually": "Téléversement manuel des résultats", @@ -441,8 +441,8 @@ "Settings.Circumvention.TestRiseupVPN": "Tester RiseupVPN", "Settings.WarmVPNInUse.Label": "Avertir quand un RPV est utilisé", "Settings.SendEmail.Label": "Envoyer un courriel à l’assistance", - "Settings.SendEmail.Message": "Veuillez décrire le problème que vous rencontrez :", - "Settings.SendEmail.Error": "Veuillez envoyer un courriel à bugs@openobservatory.org avec des renseignements sur la version de l’appli et d’iOS. Touchez « Copier dans le presse-papiers » ci-dessous pour copier votre adresse courriel.", + "Settings.SendEmail.Message": "Décrivez le problème que vous rencontrez :", + "Settings.SendEmail.Error": "Envoyez un courriel à bugs@openobservatory.org avec des renseignements sur la version de l’appli et d’iOS. Touchez « Copier dans le presse-papiers » ci-dessous pour copier votre adresse courriel.", "Settings.Language.Current": "La langue actuelle de l’appli est {lang}", "Settings.Language.Label": "Langue", "Settings.Storage.Label": "Utilisation de l’espace de stockage", @@ -454,7 +454,7 @@ "Notification.StopTest": "Arrêter le test", "OONIBrowser.TryMirror": "Essayer un miroir", "OONIBrowser.Loading": "Chargement…", - "OONIBrowser.Error": "Une erreur inattendue s’est produite. Veuillez recharger cette page.", + "OONIBrowser.Error": "Une erreur inattendue s’est produite. Rechargez cette page.", "OONIRun.YouAreAboutToRun": "Vous êtes sur le point d’effectuer un test OONI Probe.", "OONIRun.URLs": "{Count} URL", "OONIRun.TestName": "Nom du test", @@ -467,9 +467,9 @@ "OONIRun.InvalidParameter": "Un paramètre est invalide", "OONIRun.InvalidParameter.Msg": "Soit le lien OONI Run est malformé soit votre appli n’est pas à jour.", "OONIRun.RandomSamplingOfURLs": "Vous testerez un échantillon aléatoire de sites Web.", - "OONIRun.TestRunningError": "Veuillez attendre la fin du test avant d’ouvrir un lien OONI Run.", - "OONIRun.ReadMore": "Read more >", - "OONIRun.ReadLess": "Read less >", + "OONIRun.TestRunningError": "Attendez la fin du test avant d’ouvrir un lien OONI Run.", + "OONIRun.ReadMore": "Afficher plus >", + "OONIRun.ReadLess": "Afficher moins >", "CategoryCode.ALDR.Name": "Drogues et alcool", "CategoryCode.REL.Name": "Religion", "CategoryCode.PORN.Name": "Pornographie", @@ -532,66 +532,66 @@ "CategoryCode.CTRL.Description": "Contenu bénin ou inoffensif utilisé pour le contrôle", "CategoryCode.IGO.Description": "Organisations intergouvernementales, dont les Nations Unies", "CategoryCode.MISC.Description": "Sites qui n’ont pas encore été catégorisés", - "Prompt.DontAskAgain": "Don\u2019t ask again", - "Prompt.EnableTestProgressNotifications.Title": "Enable test progress notifications", - "Prompt.EnableTestProgressNotifications.Paragraph": "Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer?", - "LoadingScreen.Runv2.Message": "Link Loading", + "Prompt.DontAskAgain": "Ne plus demander", + "Prompt.EnableTestProgressNotifications.Title": "Activer les notifications de progression des tests", + "Prompt.EnableTestProgressNotifications.Paragraph": "Voulez-vous afficher des notifications sur la progression des tests OONI Probe et afficher les tests en cours dans le tiroir de notification ?", + "LoadingScreen.Runv2.Message": "Chargement du lien", "LoadingScreen.Runv2.Failure": "Erreur", - "LoadingScreen.Runv2.Canceled": "Link installation cancelled", - "Dashboard.Runv2.Overview.Description": "Created by %s on %s\\n\\n%s", - "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", - "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", - "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", - "Dashboard.Runv2.Overview.SeeMore": "See More", - "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", + "LoadingScreen.Runv2.Canceled": "L’installation du lien a été annulée", + "Dashboard.Runv2.Overview.Description": "Créé par %s le %s\\n\\n%s", + "Dashboard.Runv2.Overview.UninstallLink": "Désinstaller le lien", + "Dashboard.Runv2.Overview.ReviewUpdates": "Mise à jour des révisions", + "Dashboard.Runv2.Overview.PreviousRevisions": "Révisions précédentes", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", + "Dashboard.Runv2.Overview.SeeMore": "Afficher plus", + "Dashboard.Runv2.Overview.TestWebsites": "Tester les sites Web automatiquement", "Dashboard.RunV2.ManualUpdate.Error": "Erreur", - "Dashboard.RunV2.Ooni.Title": "OONI Tests", - "Dashboard.RunV2.Title": "OONI Run Links", - "Dashboard.RunV2.RunFinished": "Run finished. Tap to view results.", - "Dashboard.RunV2.ExpiredTag": "EXPIRED", - "Dashboard.RunV2.UpdatedTag": "UPDATED", - "AddDescriptor.Title": "Install New Link", + "Dashboard.RunV2.Ooni.Title": "Tests OONI", + "Dashboard.RunV2.Title": "Liens OONI Run", + "Dashboard.RunV2.RunFinished": "L’exécution est terminée. Touchez pour afficher les résultats.", + "Dashboard.RunV2.ExpiredTag": "EXPIRÉ", + "Dashboard.RunV2.UpdatedTag": "MIS À JOUR", + "AddDescriptor.Title": "Installer un nouveau lien", "AddDescriptor.Author": "Auteur :", "AddDescriptor.Settings": "Tester les paramètres", - "AddDescriptor.AutoUpdate": "Install updates automatically", + "AddDescriptor.AutoUpdate": "Installer les mises à jour automatiquement", "AddDescriptor.AutoRun": "Lancer les tests automatiquement", - "AddDescriptor.Toasts.Installed": "Link installed", - "AddDescriptor.Action": "Install Link", - "AddDescriptor.Toasts.Canceled": "Link installation cancelled", - "DescriptorUpdate.Updates": "UPDATES", - "CustomWebsites.Fab.Text": "Test %s URLs", - "CustomWebsites.Fab.Default": "Test URLs", - "Dashboard.ReviewDescriptor.Title": "Link Update", - "Dashboard.ReviewDescriptor.Success": "Link(s) updated", - "Dashboard.ReviewDescriptor.Label": "Link Update (%1$s of %2$s)", - "Dashboard.ReviewDescriptor.Button.Last": "UPDATE AND FINISH (%1$s of %2$s)", - "Dashboard.ReviewDescriptor.Button.Default": "UPDATE (%1$s of %2$s)", + "AddDescriptor.Toasts.Installed": "Le lien a été installé", + "AddDescriptor.Action": "Installer le lien", + "AddDescriptor.Toasts.Canceled": "L’installation du lien a été annulée", + "DescriptorUpdate.Updates": "MISES À JOUR", + "CustomWebsites.Fab.Text": "Tester %s URL", + "CustomWebsites.Fab.Default": "Tester les URL", + "Dashboard.ReviewDescriptor.Title": "Mise à jour du lien", + "Dashboard.ReviewDescriptor.Success": "Les liens ont été mis à jour", + "Dashboard.ReviewDescriptor.Label": "Mise à jour des liens (%1$s de %2$s)", + "Dashboard.ReviewDescriptor.Button.Last": "METTRE À JOUR ET TERMINER (%1$s de %2$s)", + "Dashboard.ReviewDescriptor.Button.Default": "METTRE À JOUR (%1$s de %2$s)", "Dashboard.ReviewDescriptor.Update": "Mettre à jour", - "Dashboard.RunTests.Title": "Run tests", + "Dashboard.RunTests.Title": "Exécuter les tests", "Dashboard.RunTests.RunButton.Default": "Effectuer des tests", - "Dashboard.RunTests.RunButton.Empty": "Please select test to run", - "Dashboard.RunTests.RunButton.Label": "Run %s test(s)", - "Dashboard.RunTests.Description": "Select the tests to run", - "Dashboard.RunTests.SelectAll": "Select all tests", - "Dashboard.RunTests.SelectNone": "Deselect all tests", - "Dashboard.Progress.AddLink.Label": "Link Loading", - "Dashboard.Progress.UpdateLink.Label": "Link updates loading", - "Dashboard.Progress.ReviewLink.Label": "Link updates ready", + "Dashboard.RunTests.RunButton.Empty": "Choisissez le test à exécuter", + "Dashboard.RunTests.RunButton.Label": "Exécuter %s test(s)", + "Dashboard.RunTests.Description": "Choisissez les tests à exécuter", + "Dashboard.RunTests.SelectAll": "Sélectionner tous les tests", + "Dashboard.RunTests.SelectNone": "Dessélectionner tous les tests", + "Dashboard.Progress.AddLink.Label": "Chargement du lien", + "Dashboard.Progress.UpdateLink.Label": "Chargement des mises à jour des liens", + "Dashboard.Progress.ReviewLink.Label": "Les mises à jour des liens sont prêtes", "Dashboard.Progress.ReviewLink.Action": "Révision", - "TestResults.TestCount": "%s inputs", + "TestResults.TestCount": "%s entrées", "Common_Back": "Retour", - "Common_Refresh": "refresh", + "Common_Refresh": "actualiser", "Common_Collapse": "Réduire", "Common_Expand": "Développer", - "Common_Ago": "%1$s ago", - "Common_Minutes_One": "%1$d minute", - "Common_Minutes_Other": "%1$d minutes", - "Common_Hour_One": "%1$d hour", - "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Ago": "il y a %1$s", + "Common_Minutes_One": "%1$d minute", + "Common_Minutes_Other": "%1$d minutes", + "Common_Hour_One": "%1$d heure", + "Common_Hour_Other": "%1$d heures", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d min", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "janvier", "Common_Months_February": "février", "Common_Months_March": "mars", @@ -604,35 +604,35 @@ "Common_Months_October": "octobre", "Common_Months_November": "novembre", "Common_Months_December": "décembre", - "Onboarding_QuizAnswer_Correct": "Correct answer", - "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", - "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", - "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", - "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", - "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", - "Measurement_Title": "Measurement", - "Measurements_Count_One": "%1$d measurement", - "Measurements_Count_Other": "%1$d measurements", + "Onboarding_QuizAnswer_Correct": "Bonne réponse", + "Onboarding_QuizAnswer_Incorrect": "Mauvaise réponse", + "Dashboard_Runv2_Overview_LastUpdated": "Dernière mise à jour le %1$s", + "Dashboard_RunTests_RunButton_Label_One": "Exécuter %1$d test", + "Dashboard_RunTests_RunButton_Label_Other": "Exécuter %1$d tests", + "AddDescriptor_Toasts_Unsupported_Url": "Cette URL n’est pas prise en charge", + "Measurement_Title": "Mesure", + "Measurements_Count_One": "%1$d mesure", + "Measurements_Count_Other": "%1$d mesures", "Measurements_Failed": "Échec", "Measurements_Ok": "Valider", "Measurements_Anomaly": "Anomalie", - "Results_TestType_All": "All Types", - "Results_TaskOrigin_All": "All Sources", - "Results_LimitedNotice": "Only the last %1$d results are shown", - "Results_UploadingMissing": "Uploading missing results %1$s", + "Results_TestType_All": "Tous les types", + "Results_TaskOrigin_All": "Toutes les sources", + "Results_LimitedNotice": "Seuls les %1$d derniers résultats sont affichés", + "Results_UploadingMissing": "Téléversements des résultats manquants %1$s", "Settings_Logs": "Journaux", - "Settings_ShareLogs": "Share Logs", - "Settings_ShareLogs_Error": "Error sharing logs", - "Settings_FilterLogs": "Filter Logs", - "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", - "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", - "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", - "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", - "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", - "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", - "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Settings_ShareLogs": "Partager les journaux ", + "Settings_ShareLogs_Error": "Erreur de partage des journaux", + "Settings_FilterLogs": "Filtrer les journaux", + "Settings_DisableVpnInstructions": "Accédez à Réglages > Général > VPN et déconnectez-vous de votre RPV.", + "Settings_AutoTest_NotUploadedLimit": "Ignorer si ce nombre de résultats ne se téléversent pas", + "Settings_Sharing_UploadResults_Description": "Les résultats sont téléversés automatiquement vers l’Explorateur OONI", + "Settings_Websites_MaxRuntimeEnabled_New": "Limiter la durée de test des sites Web", + "Settings_Websites_MaxRuntime_New": "Durée maximale de test des sites Web", + "Settings_AutomatedTesting_RunAutomatically_Description": "Les tests s’exécuteront en arrière-plan", + "Settings_Websites_MaxRuntimeEnabled_Description": "Seulement pour les exécutions manuelles", "Notification_ChannelName": "Test", - "TaskOrigin_Manual": "Manual Run", - "TaskOrigin_AutoRun": "Auto Run", + "TaskOrigin_Manual": "Exécution manuelle", + "TaskOrigin_AutoRun": "Exécution automatique", "NetworkType_Vpn": "RPV" } \ No newline at end of file diff --git a/probe-mobile/fr/strings.xml b/probe-mobile/fr/strings.xml index 86f2f4a..a942ea4 100644 --- a/probe-mobile/fr/strings.xml +++ b/probe-mobile/fr/strings.xml @@ -24,7 +24,7 @@ Avertissement Afin d’accroître la transparence de la censure d’Internet, les données réseau de tous les utilisateurs d’OONI Probe sont publiées automatiquement (à moins qu’ils ne décident de ne pas y participer dans les paramètres). Test automatisé - Pour mesurer la censure d’Internet tous les jours, veuillez activer les tests automatisés afin qu’OONI Probe puisse effectuer des tests régulièrement. Ne vous inquiétez pas, nous ferons attention à l’utilisation de la pile. Vous pouvez désactiver les tests automatisés n’importe quand dans les paramètres. + Pour mesurer la censure d’Internet tous les jours, activez les tests automatisés afin qu’OONI Probe puisse effectuer des tests régulièrement. Ne vous inquiétez pas, nous ferons attention à l’utilisation de la batterie. Vous pouvez désactiver les tests automatisés n’importe quand dans les paramètres. Signaler un plantage Afin d’améliorer OONI Probe, nous souhaitons recueillir des relevés anonymes de plantage quand l’appli ne fonctionne pas correctement. Acceptez-vous d’envoyer des rapports de plantage à l’équipe de développement d’OONI ? Oui @@ -53,7 +53,7 @@ Afficher le journal Fermer le journal Arrêt du test… - Achèvement des tests en attente, veuillez patienter… + Achèvement des tests en attente, patientez… Le mandataire est en fonction Toucher la carte pour en savoir plus ~%1$ss @@ -72,7 +72,7 @@ Effectuer les nouveaux tests expérimentaux Effectuer les nouveaux tests expérimentaux suivants conçus par l’équipe d’OONI :\n%1$s\n\nVos résultats seront publiés dans l’[Explorateur OONI](https://explorer.ooni.org/) et l’[API d’OONI](https://api.ooni.io/) (site en anglais). Les tests suivants ne seront exécutés que dans le cadre des tests automatisés : - Disabled Tests + Tests désactivés Gbit/s Mbit/s kbit/s @@ -279,20 +279,20 @@ Lancer quand même Désactiver le RPV Toujours exécuter - Impossible d’effectuer le test. Veuillez vérifier votre connexion à Internet. - Impossible de télécharger la liste des URL. Veuillez réessayer. - Veuillez attendre la fin du test en cours avant de lancer un nouveau test. - Les autorisations de notification sont nécessaires. Veuillez les activer dans les paramètres de votre téléphone, puis les activer dans votre appli OONI Probe. + Impossible d’effectuer le test. Vérifiez votre connexion à Internet. + Impossible de télécharger la liste des URL. Réessayez. + Attendez la fin du test en cours avant de lancer un nouveau test. + Les autorisations de notification sont nécessaires. Activez-les dans les paramètres de votre appareil, puis dans votre appli OONI Probe. Aller dans les Paramètres Cet écran est verrouillé pendant qu’un test est en cours. Vous devez être connecté à Internet pour télécharger les données brutes de mesure. Les résultats n’ont pas été téléversés - Certains de vos résultats de test n’ont pas été téléversés vers les serveurs de l’OONI. Si vous souhaitez contribuer à l’ensemble de données de l’OONI, veuillez les téléverser. + Certains de vos résultats de test n’ont pas été téléversés vers les serveurs de l’OONI. Si vous souhaitez contribuer à l’ensemble de données de l’OONI, téléversez-les. Téléversement Téléversement de %1$s… - OONI Probe ne peut pas fonctionner automatiquement sans optimisation de la pile. Voulez-vous réessayer ? - Veuillez désactiver votre connexion RPV. - Si vous exécutez OONI Probe alors qu’un RPV (réseau privé virtuel) est activé, les résultats des tests pourraient sembler provenir du mauvais pays. Veuillez désactiver votre connexion RPV. + OONI Probe ne peut pas fonctionner automatiquement sans optimisation de la batterie. Voulez-vous réessayer ? + Désactivez votre connexion RPV. + Si vous exécutez OONI Probe alors qu’un RPV (réseau privé virtuel) est activé, les résultats des tests pourraient sembler provenir du mauvais pays. Désactivez votre connexion RPV. Certaines mesures ont été prises connecté à un RPV. Si vous téléversez des mesures prises alors qu’un RPV est activé, les résultats du test pourraient sembler provenir du mauvais pays. Téléversement réussi @@ -302,8 +302,8 @@ Pour améliorer la précision des tests, nous avons besoin des autorisations Position. OONI ne recueillera qu’une position GPS approximative. Voulez-vous supprimer tous les résultats de test ? Voulez-vous supprimer ce test ? - Veuillez activer au moins un test - Veuillez ne saisir que des chiffres dans ce champ. + Activez au moins un test + Ne saisissez que des chiffres dans ce champ. Relancer le test Ce test a échoué. Relancer le test ? Vous êtes sur le point de retester %1$s sites Web. @@ -323,7 +323,7 @@ Le test en cours sera interrompu à partir de maintenant. Voulez-vous effectuer les tests automatiquement ? En activant les tests automatisés, vous enverrez des mesures OONI sur une base régulière. - Veuillez autoriser l’appli à fonctionner en arrière-plan. + Autorisez l’appli à fonctionner en arrière-plan. Me rappeler plus tard Copié dans le presse-papiers N’a pas été téléversé @@ -366,7 +366,7 @@ Dernier test automatisé : %1$s. Seulement par Wi-Fi Seulement pendant la charge - En activant les tests automatiques, les tests d’OONI Probe auront lieu automatiquement plusieurs fois par jour. Les résultats de vos tests seront publiés automatiquement sur l’Explorateur OONI : https://explorer.ooni.org/ (site en anglais)\n\nImportant : Si vous utilisez un RPV et qu’il est activé, OONI Probe n’effectuera pas de test automatique. Afin que les tests automatisés d’OONI Probe aient lieu, veuillez désactiver votre RPV. Apprenez-en davantage : https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn (site en anglais) + En activant les tests automatiques, les tests d’OONI Probe auront lieu automatiquement plusieurs fois par jour. Les résultats de vos tests seront publiés automatiquement sur l’Explorateur OONI : https://explorer.ooni.org/ (site en anglais)\n\nImportant : Si vous utilisez un RPV et qu’il est activé, OONI Probe n’effectuera pas de test automatique. Afin que les tests automatisés d’OONI Probe aient lieu, désactivez votre RPV. Apprenez-en davantage : https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn (site en anglais) Partage Publier automatiquement les résultats Téléversement manuel des résultats @@ -442,8 +442,8 @@ Tester RiseupVPN Avertir quand un RPV est utilisé Envoyer un courriel à l’assistance - Veuillez décrire le problème que vous rencontrez : - Veuillez envoyer un courriel à bugs@openobservatory.org avec des renseignements sur la version de l’appli et d’iOS. Touchez « Copier dans le presse-papiers » ci-dessous pour copier votre adresse courriel. + Décrivez le problème que vous rencontrez : + Envoyez un courriel à bugs@openobservatory.org avec des renseignements sur la version de l’appli et d’iOS. Touchez « Copier dans le presse-papiers » ci-dessous pour copier votre adresse courriel. La langue actuelle de l’appli est %1$s Langue Utilisation de l’espace de stockage @@ -455,7 +455,7 @@ Arrêter le test Essayer un miroir Chargement… - Une erreur inattendue s’est produite. Veuillez recharger cette page. + Une erreur inattendue s’est produite. Rechargez cette page. Vous êtes sur le point d’effectuer un test OONI Probe. %1$s URL Nom du test @@ -468,9 +468,9 @@ Un paramètre est invalide Soit le lien OONI Run est malformé soit votre appli n’est pas à jour. Vous testerez un échantillon aléatoire de sites Web. - Veuillez attendre la fin du test avant d’ouvrir un lien OONI Run. - Read more > - Read less > + Attendez la fin du test avant d’ouvrir un lien OONI Run. + Afficher plus > + Afficher moins > Drogues et alcool Religion Pornographie @@ -533,66 +533,66 @@ Contenu bénin ou inoffensif utilisé pour le contrôle Organisations intergouvernementales, dont les Nations Unies Sites qui n’ont pas encore été catégorisés - Don’t ask again - Enable test progress notifications - Would you like to enable notifications on OONI Probe test progress and display running tests in the notifications drawer? - Link Loading + Ne plus demander + Activer les notifications de progression des tests + Voulez-vous afficher des notifications sur la progression des tests OONI Probe et afficher les tests en cours dans le tiroir de notification ? + Chargement du lien Erreur - Link installation cancelled - Created by %s on %s\n\n%s - Uninstall Link - Review Updates - Previous revisions - You will be able to install this link again only from the original link sent by the creator. - See More - Test websites automatically + L’installation du lien a été annulée + Créé par %s le %s\n\n%s + Désinstaller le lien + Mise à jour des révisions + Révisions précédentes + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. + Afficher plus + Tester les sites Web automatiquement Erreur - OONI Tests - OONI Run Links - Run finished. Tap to view results. - EXPIRED - UPDATED - Install New Link + Tests OONI + Liens OONI Run + L’exécution est terminée. Touchez pour afficher les résultats. + EXPIRÉ + MIS À JOUR + Installer un nouveau lien Auteur : Tester les paramètres - Install updates automatically + Installer les mises à jour automatiquement Lancer les tests automatiquement - Link installed - Install Link - Link installation cancelled - UPDATES - Test %s URLs - Test URLs - Link Update - Link(s) updated - Link Update (%1$s of %2$s) - UPDATE AND FINISH (%1$s of %2$s) - UPDATE (%1$s of %2$s) + Le lien a été installé + Installer le lien + L’installation du lien a été annulée + MISES À JOUR + Tester %s URL + Tester les URL + Mise à jour du lien + Les liens ont été mis à jour + Mise à jour des liens (%1$s de %2$s) + METTRE À JOUR ET TERMINER (%1$s de %2$s) + METTRE À JOUR (%1$s de %2$s) Mettre à jour - Run tests + Exécuter les tests Effectuer des tests - Please select test to run - Run %s test(s) - Select the tests to run - Select all tests - Deselect all tests - Link Loading - Link updates loading - Link updates ready + Choisissez le test à exécuter + Exécuter %s test(s) + Choisissez les tests à exécuter + Sélectionner tous les tests + Dessélectionner tous les tests + Chargement du lien + Chargement des mises à jour des liens + Les mises à jour des liens sont prêtes Révision - %s inputs + %s entrées Retour - refresh + actualiser Réduire Développer - %1$s ago - %1$d minute - %1$d minutes - %1$d hour - %1$d hours - %1$dh - %1$dm - %1$ds + il y a %1$s + %1$d minute + %1$d minutes + %1$d heure + %1$d heures + %1$d h + %1$d min + %1$d s janvier février mars @@ -605,35 +605,35 @@ octobre novembre décembre - Correct answer - Incorrect answer - Last updated %1$s - Run %1$d test - Run %1$d tests - Unsupported URL - Measurement - %1$d measurement - %1$d measurements + Bonne réponse + Mauvaise réponse + Dernière mise à jour le %1$s + Exécuter %1$d test + Exécuter %1$d tests + Cette URL n’est pas prise en charge + Mesure + %1$d mesure + %1$d mesures Échec Valider Anomalie - All Types - All Sources - Only the last %1$d results are shown - Uploading missing results %1$s + Tous les types + Toutes les sources + Seuls les %1$d derniers résultats sont affichés + Téléversements des résultats manquants %1$s Journaux - Share Logs - Error sharing logs - Filter Logs - Go to Settings > General > VPN and disconnect from your VPN. - Skip after this amount of results failed to upload - Results are automatically uploaded to OONI explorer - Limit Websites test duration - Maximum Websites test duration - Tests will run in the background - Only for manual runs + Partager les journaux + Erreur de partage des journaux + Filtrer les journaux + Accédez à Réglages > Général > VPN et déconnectez-vous de votre RPV. + Ignorer si ce nombre de résultats ne se téléversent pas + Les résultats sont téléversés automatiquement vers l’Explorateur OONI + Limiter la durée de test des sites Web + Durée maximale de test des sites Web + Les tests s’exécuteront en arrière-plan + Seulement pour les exécutions manuelles Test - Manual Run - Auto Run + Exécution manuelle + Exécution automatique RPV diff --git a/probe-mobile/gl/Localizable.strings b/probe-mobile/gl/Localizable.strings index d2a945a..8c72305 100644 --- a/probe-mobile/gl/Localizable.strings +++ b/probe-mobile/gl/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Erro"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/gl/strings.json b/probe-mobile/gl/strings.json index ee91030..10a2601 100644 --- a/probe-mobile/gl/strings.json +++ b/probe-mobile/gl/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Erro", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/gl/strings.xml b/probe-mobile/gl/strings.xml index d7cdf1c..32ddd95 100644 --- a/probe-mobile/gl/strings.xml +++ b/probe-mobile/gl/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Erro @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/hi/Localizable.strings b/probe-mobile/hi/Localizable.strings index b86387e..aee995f 100644 --- a/probe-mobile/hi/Localizable.strings +++ b/probe-mobile/hi/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "त्रुटि"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/hi/strings.json b/probe-mobile/hi/strings.json index 15f3b08..b59b1ba 100644 --- a/probe-mobile/hi/strings.json +++ b/probe-mobile/hi/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "त्रुटि", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/hi/strings.xml b/probe-mobile/hi/strings.xml index 51fbd8f..9e6b9fd 100644 --- a/probe-mobile/hi/strings.xml +++ b/probe-mobile/hi/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically त्रुटि @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/id/Localizable.strings b/probe-mobile/id/Localizable.strings index c69e906..6b33b13 100644 --- a/probe-mobile/id/Localizable.strings +++ b/probe-mobile/id/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Copot Tautan"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Tinjau Pembaruan"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Revisi sebelumnya"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "Anda dapat memasang kembali tautan ini hanya dari tautan asli yang dikirim oleh pembuatnya."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "Lihat Lebih Lanjut"; "Dashboard.Runv2.Overview.TestWebsites" = "Tes situs web secara otomatis"; "Dashboard.RunV2.ManualUpdate.Error" = "Galat"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Januari"; "Common_Months_February" = "Februari"; "Common_Months_March" = "Maret"; diff --git a/probe-mobile/id/strings.json b/probe-mobile/id/strings.json index 38d0601..db5baac 100644 --- a/probe-mobile/id/strings.json +++ b/probe-mobile/id/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Copot Tautan", "Dashboard.Runv2.Overview.ReviewUpdates": "Tinjau Pembaruan", "Dashboard.Runv2.Overview.PreviousRevisions": "Revisi sebelumnya", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "Anda dapat memasang kembali tautan ini hanya dari tautan asli yang dikirim oleh pembuatnya.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "Lihat Lebih Lanjut", "Dashboard.Runv2.Overview.TestWebsites": "Tes situs web secara otomatis", "Dashboard.RunV2.ManualUpdate.Error": "Galat", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Januari", "Common_Months_February": "Februari", "Common_Months_March": "Maret", diff --git a/probe-mobile/id/strings.xml b/probe-mobile/id/strings.xml index 6d18e8c..21b836b 100644 --- a/probe-mobile/id/strings.xml +++ b/probe-mobile/id/strings.xml @@ -543,7 +543,7 @@ Copot Tautan Tinjau Pembaruan Revisi sebelumnya - Anda dapat memasang kembali tautan ini hanya dari tautan asli yang dikirim oleh pembuatnya. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. Lihat Lebih Lanjut Tes situs web secara otomatis Galat @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Januari Februari Maret diff --git a/probe-mobile/ig/Localizable.strings b/probe-mobile/ig/Localizable.strings index 3145d21..410b2a1 100644 --- a/probe-mobile/ig/Localizable.strings +++ b/probe-mobile/ig/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/ig/strings.json b/probe-mobile/ig/strings.json index 65cc8d7..35e06cd 100644 --- a/probe-mobile/ig/strings.json +++ b/probe-mobile/ig/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/ig/strings.xml b/probe-mobile/ig/strings.xml index 605235b..ce5df0f 100644 --- a/probe-mobile/ig/strings.xml +++ b/probe-mobile/ig/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/is/Localizable.strings b/probe-mobile/is/Localizable.strings index b5b6fb5..5168a93 100644 --- a/probe-mobile/is/Localizable.strings +++ b/probe-mobile/is/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Villa"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "janúar"; "Common_Months_February" = "febrúar"; "Common_Months_March" = "mars"; diff --git a/probe-mobile/is/strings.json b/probe-mobile/is/strings.json index 68f0d2f..c02cc51 100644 --- a/probe-mobile/is/strings.json +++ b/probe-mobile/is/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Villa", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "janúar", "Common_Months_February": "febrúar", "Common_Months_March": "mars", diff --git a/probe-mobile/is/strings.xml b/probe-mobile/is/strings.xml index b7d997d..321043a 100644 --- a/probe-mobile/is/strings.xml +++ b/probe-mobile/is/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Villa @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s janúar febrúar mars diff --git a/probe-mobile/it/Localizable.strings b/probe-mobile/it/Localizable.strings index b935ecd..90ff422 100644 --- a/probe-mobile/it/Localizable.strings +++ b/probe-mobile/it/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Errore"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Gennaio"; "Common_Months_February" = "Febbraio"; "Common_Months_March" = "Marzo"; diff --git a/probe-mobile/it/strings.json b/probe-mobile/it/strings.json index 6f23ede..12e48ab 100644 --- a/probe-mobile/it/strings.json +++ b/probe-mobile/it/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Errore", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Gennaio", "Common_Months_February": "Febbraio", "Common_Months_March": "Marzo", diff --git a/probe-mobile/it/strings.xml b/probe-mobile/it/strings.xml index e47b132..d95acc3 100644 --- a/probe-mobile/it/strings.xml +++ b/probe-mobile/it/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Errore @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Gennaio Febbraio Marzo diff --git a/probe-mobile/ja/Localizable.strings b/probe-mobile/ja/Localizable.strings index c5513b4..872d16f 100644 --- a/probe-mobile/ja/Localizable.strings +++ b/probe-mobile/ja/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "エラー"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "1 月"; "Common_Months_February" = "2 月"; "Common_Months_March" = "3 月"; diff --git a/probe-mobile/ja/strings.json b/probe-mobile/ja/strings.json index 1c8dd67..35e69d5 100644 --- a/probe-mobile/ja/strings.json +++ b/probe-mobile/ja/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "エラー", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "1 月", "Common_Months_February": "2 月", "Common_Months_March": "3 月", diff --git a/probe-mobile/ja/strings.xml b/probe-mobile/ja/strings.xml index f87126b..d744dae 100644 --- a/probe-mobile/ja/strings.xml +++ b/probe-mobile/ja/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically エラー @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s 1 月 2 月 3 月 diff --git a/probe-mobile/km/Localizable.strings b/probe-mobile/km/Localizable.strings index 9636d49..be288b5 100644 --- a/probe-mobile/km/Localizable.strings +++ b/probe-mobile/km/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "លុបតំណរភ្ជាប់"; "Dashboard.Runv2.Overview.ReviewUpdates" = "ពិនិត្យមើលបច្ចុប្បន្នភាព"; "Dashboard.Runv2.Overview.PreviousRevisions" = "ការត្រួតពិនិត្យលើកមុន"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "អ្នកអាចដំឡើងតំណរភ្ជាប់បន្ថែមទាល់តែបានតំណរភ្ជាប់ផ្ញើពីម្ចាស់ដើម"; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "មើលបន្ថែម"; "Dashboard.Runv2.Overview.TestWebsites" = "តេស្តវែបសាយស្វ័យប្រវត្តិ"; "Dashboard.RunV2.ManualUpdate.Error" = "កំហុស"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/km/strings.json b/probe-mobile/km/strings.json index 37c917d..883ccdf 100644 --- a/probe-mobile/km/strings.json +++ b/probe-mobile/km/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "លុបតំណរភ្ជាប់", "Dashboard.Runv2.Overview.ReviewUpdates": "ពិនិត្យមើលបច្ចុប្បន្នភាព", "Dashboard.Runv2.Overview.PreviousRevisions": "ការត្រួតពិនិត្យលើកមុន", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "អ្នកអាចដំឡើងតំណរភ្ជាប់បន្ថែមទាល់តែបានតំណរភ្ជាប់ផ្ញើពីម្ចាស់ដើម", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "មើលបន្ថែម", "Dashboard.Runv2.Overview.TestWebsites": "តេស្តវែបសាយស្វ័យប្រវត្តិ", "Dashboard.RunV2.ManualUpdate.Error": "កំហុស", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/km/strings.xml b/probe-mobile/km/strings.xml index c9f6b12..af5a033 100644 --- a/probe-mobile/km/strings.xml +++ b/probe-mobile/km/strings.xml @@ -543,7 +543,7 @@ លុបតំណរភ្ជាប់ ពិនិត្យមើលបច្ចុប្បន្នភាព ការត្រួតពិនិត្យលើកមុន - អ្នកអាចដំឡើងតំណរភ្ជាប់បន្ថែមទាល់តែបានតំណរភ្ជាប់ផ្ញើពីម្ចាស់ដើម + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. មើលបន្ថែម តេស្តវែបសាយស្វ័យប្រវត្តិ កំហុស @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/kn/Localizable.strings b/probe-mobile/kn/Localizable.strings index 5ebbbff..72e18c1 100644 --- a/probe-mobile/kn/Localizable.strings +++ b/probe-mobile/kn/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "ದೋಷ"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/kn/strings.json b/probe-mobile/kn/strings.json index 21963d1..e0b668f 100644 --- a/probe-mobile/kn/strings.json +++ b/probe-mobile/kn/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "ದೋಷ", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/kn/strings.xml b/probe-mobile/kn/strings.xml index 2f1ef29..e71044e 100644 --- a/probe-mobile/kn/strings.xml +++ b/probe-mobile/kn/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically ದೋಷ @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/ko/Localizable.strings b/probe-mobile/ko/Localizable.strings index fd56bec..9e34f7b 100644 --- a/probe-mobile/ko/Localizable.strings +++ b/probe-mobile/ko/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "오류"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "1월"; "Common_Months_February" = "2월"; "Common_Months_March" = "3월"; diff --git a/probe-mobile/ko/strings.json b/probe-mobile/ko/strings.json index 254ebbd..178123f 100644 --- a/probe-mobile/ko/strings.json +++ b/probe-mobile/ko/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "오류", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "1월", "Common_Months_February": "2월", "Common_Months_March": "3월", diff --git a/probe-mobile/ko/strings.xml b/probe-mobile/ko/strings.xml index adabcbc..c9826a3 100644 --- a/probe-mobile/ko/strings.xml +++ b/probe-mobile/ko/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically 오류 @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s 1월 2월 3월 diff --git a/probe-mobile/mk/Localizable.strings b/probe-mobile/mk/Localizable.strings index ee97fa0..83d4e2d 100644 --- a/probe-mobile/mk/Localizable.strings +++ b/probe-mobile/mk/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Грешка"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Јануари"; "Common_Months_February" = "Февруари"; "Common_Months_March" = "Март"; diff --git a/probe-mobile/mk/strings.json b/probe-mobile/mk/strings.json index 940de66..65cc2b3 100644 --- a/probe-mobile/mk/strings.json +++ b/probe-mobile/mk/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Грешка", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Јануари", "Common_Months_February": "Февруари", "Common_Months_March": "Март", diff --git a/probe-mobile/mk/strings.xml b/probe-mobile/mk/strings.xml index 7f1b5bb..726b181 100644 --- a/probe-mobile/mk/strings.xml +++ b/probe-mobile/mk/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Грешка @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Јануари Февруари Март diff --git a/probe-mobile/ms/Localizable.strings b/probe-mobile/ms/Localizable.strings index 2ce6ed6..9a23b76 100644 --- a/probe-mobile/ms/Localizable.strings +++ b/probe-mobile/ms/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Ralat"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/ms/strings.json b/probe-mobile/ms/strings.json index d29bd07..2e33bff 100644 --- a/probe-mobile/ms/strings.json +++ b/probe-mobile/ms/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Ralat", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/ms/strings.xml b/probe-mobile/ms/strings.xml index 7f3a5da..0c530da 100644 --- a/probe-mobile/ms/strings.xml +++ b/probe-mobile/ms/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Ralat @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/my/Localizable.strings b/probe-mobile/my/Localizable.strings index 781a720..deb8731 100644 --- a/probe-mobile/my/Localizable.strings +++ b/probe-mobile/my/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "ပြဿနာ"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/my/strings.json b/probe-mobile/my/strings.json index b7054be..0288146 100644 --- a/probe-mobile/my/strings.json +++ b/probe-mobile/my/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "ပြဿနာ", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/my/strings.xml b/probe-mobile/my/strings.xml index 7c7192c..716d5f2 100644 --- a/probe-mobile/my/strings.xml +++ b/probe-mobile/my/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically ပြဿနာ @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/nb/Localizable.strings b/probe-mobile/nb/Localizable.strings index 6c86943..cca5f91 100644 --- a/probe-mobile/nb/Localizable.strings +++ b/probe-mobile/nb/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Feil"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/nb/strings.json b/probe-mobile/nb/strings.json index adb91ff..7a92593 100644 --- a/probe-mobile/nb/strings.json +++ b/probe-mobile/nb/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Feil", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/nb/strings.xml b/probe-mobile/nb/strings.xml index f535329..6083094 100644 --- a/probe-mobile/nb/strings.xml +++ b/probe-mobile/nb/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Feil @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/nd/Localizable.strings b/probe-mobile/nd/Localizable.strings index f23aa11..f15c091 100644 --- a/probe-mobile/nd/Localizable.strings +++ b/probe-mobile/nd/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/nd/strings.json b/probe-mobile/nd/strings.json index a3007ef..fbfccd5 100644 --- a/probe-mobile/nd/strings.json +++ b/probe-mobile/nd/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/nd/strings.xml b/probe-mobile/nd/strings.xml index b089eab..eca2f19 100644 --- a/probe-mobile/nd/strings.xml +++ b/probe-mobile/nd/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/ne/Localizable.strings b/probe-mobile/ne/Localizable.strings index d2589e5..312b90e 100644 --- a/probe-mobile/ne/Localizable.strings +++ b/probe-mobile/ne/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/ne/strings.json b/probe-mobile/ne/strings.json index 63d137a..e68d575 100644 --- a/probe-mobile/ne/strings.json +++ b/probe-mobile/ne/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/ne/strings.xml b/probe-mobile/ne/strings.xml index 244499f..4f06c0c 100644 --- a/probe-mobile/ne/strings.xml +++ b/probe-mobile/ne/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/nl/Localizable.strings b/probe-mobile/nl/Localizable.strings index 1240102..a8c05f9 100644 --- a/probe-mobile/nl/Localizable.strings +++ b/probe-mobile/nl/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Fout"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "januari"; "Common_Months_February" = "februari"; "Common_Months_March" = "maart"; diff --git a/probe-mobile/nl/strings.json b/probe-mobile/nl/strings.json index e5233bc..8b6fc02 100644 --- a/probe-mobile/nl/strings.json +++ b/probe-mobile/nl/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Fout", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "januari", "Common_Months_February": "februari", "Common_Months_March": "maart", diff --git a/probe-mobile/nl/strings.xml b/probe-mobile/nl/strings.xml index 9da6527..e5e0b77 100644 --- a/probe-mobile/nl/strings.xml +++ b/probe-mobile/nl/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Fout @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s januari februari maart diff --git a/probe-mobile/ny/Localizable.strings b/probe-mobile/ny/Localizable.strings index fa84d9d..c391a08 100644 --- a/probe-mobile/ny/Localizable.strings +++ b/probe-mobile/ny/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/ny/strings.json b/probe-mobile/ny/strings.json index a6f66a6..266ccc3 100644 --- a/probe-mobile/ny/strings.json +++ b/probe-mobile/ny/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/ny/strings.xml b/probe-mobile/ny/strings.xml index 99f0fc2..1702053 100644 --- a/probe-mobile/ny/strings.xml +++ b/probe-mobile/ny/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/ny_MW/Localizable.strings b/probe-mobile/ny_MW/Localizable.strings index 47af908..05d28cf 100644 --- a/probe-mobile/ny_MW/Localizable.strings +++ b/probe-mobile/ny_MW/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/ny_MW/strings.json b/probe-mobile/ny_MW/strings.json index a504025..a247518 100644 --- a/probe-mobile/ny_MW/strings.json +++ b/probe-mobile/ny_MW/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/ny_MW/strings.xml b/probe-mobile/ny_MW/strings.xml index 82b0832..1cf93b1 100644 --- a/probe-mobile/ny_MW/strings.xml +++ b/probe-mobile/ny_MW/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/pa_IN/Localizable.strings b/probe-mobile/pa_IN/Localizable.strings index 9cd2d41..5dc0726 100644 --- a/probe-mobile/pa_IN/Localizable.strings +++ b/probe-mobile/pa_IN/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/pa_IN/strings.json b/probe-mobile/pa_IN/strings.json index 1263a00..e7825e6 100644 --- a/probe-mobile/pa_IN/strings.json +++ b/probe-mobile/pa_IN/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/pa_IN/strings.xml b/probe-mobile/pa_IN/strings.xml index d43aa17..09727a4 100644 --- a/probe-mobile/pa_IN/strings.xml +++ b/probe-mobile/pa_IN/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/pl/Localizable.strings b/probe-mobile/pl/Localizable.strings index 15d0413..a82f703 100644 --- a/probe-mobile/pl/Localizable.strings +++ b/probe-mobile/pl/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Błąd"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "styczeń"; "Common_Months_February" = "luty"; "Common_Months_March" = "marzec"; diff --git a/probe-mobile/pl/strings.json b/probe-mobile/pl/strings.json index a7b5c4e..eddfd1c 100644 --- a/probe-mobile/pl/strings.json +++ b/probe-mobile/pl/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Błąd", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "styczeń", "Common_Months_February": "luty", "Common_Months_March": "marzec", diff --git a/probe-mobile/pl/strings.xml b/probe-mobile/pl/strings.xml index 35af733..f138f02 100644 --- a/probe-mobile/pl/strings.xml +++ b/probe-mobile/pl/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Błąd @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s styczeń luty marzec diff --git a/probe-mobile/pt_BR/Localizable.strings b/probe-mobile/pt_BR/Localizable.strings index f2c1d32..a27dbc5 100644 --- a/probe-mobile/pt_BR/Localizable.strings +++ b/probe-mobile/pt_BR/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Link de desinstalação"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Revisar atualizações"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Revisões anteriores"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "Você poderá instalar este link novamente apenas a partir do link original enviado pelo criador."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "Ver mais"; "Dashboard.Runv2.Overview.TestWebsites" = "Testar sites automaticamente"; "Dashboard.RunV2.ManualUpdate.Error" = "Erro"; @@ -578,19 +578,19 @@ "Dashboard.Progress.UpdateLink.Label" = "Carregamento de atualizações de link"; "Dashboard.Progress.ReviewLink.Label" = "Atualizações de link prontas"; "Dashboard.Progress.ReviewLink.Action" = "Revisar"; -"TestResults.TestCount" = "%s Entradas"; -"Common_Back" = "Voltar"; -"Common_Refresh" = "refresh"; +"TestResults.TestCount" = "%s Entradas "; +"Common_Back" = "Voltar "; +"Common_Refresh" = "Refrescar"; "Common_Collapse" = "Colapso"; "Common_Expand" = "Expandir"; -"Common_Ago" = "%1$s ago"; -"Common_Minutes_One" = "%1$d minute"; -"Common_Minutes_Other" = "%1$d minutes"; -"Common_Hour_One" = "%1$d hour"; -"Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Ago" = "%1$satrás"; +"Common_Minutes_One" = "%1$d minuto"; +"Common_Minutes_Other" = "%1$dminutos"; +"Common_Hour_One" = "%1$dhora"; +"Common_Hour_Other" = "%1$dhoras"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Janeiro"; "Common_Months_February" = "Fevereiro"; "Common_Months_March" = "Março"; @@ -603,34 +603,34 @@ "Common_Months_October" = "Outubro"; "Common_Months_November" = "Novembro"; "Common_Months_December" = "Dezembro"; -"Onboarding_QuizAnswer_Correct" = "Correct answer"; -"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; -"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; -"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; -"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; -"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; -"Measurement_Title" = "Measurement"; -"Measurements_Count_One" = "%1$d measurement"; -"Measurements_Count_Other" = "%1$d measurements"; -"Measurements_Failed" = "Falha"; +"Onboarding_QuizAnswer_Correct" = "Resposta correta"; +"Onboarding_QuizAnswer_Incorrect" = "Resposta incorreta"; +"Dashboard_Runv2_Overview_LastUpdated" = "Última atualização%1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "Rodar %1$dteste"; +"Dashboard_RunTests_RunButton_Label_Other" = "Rodar%1$dtestes"; +"AddDescriptor_Toasts_Unsupported_Url" = "URL sem suporte"; +"Measurement_Title" = "Medição"; +"Measurements_Count_One" = "%1$dmedições"; +"Measurements_Count_Other" = "%1$dmedições"; +"Measurements_Failed" = "Falhou"; "Measurements_Ok" = "OK"; "Measurements_Anomaly" = "Anomalia"; -"Results_TestType_All" = "All Types"; -"Results_TaskOrigin_All" = "All Sources"; -"Results_LimitedNotice" = "Only the last %1$d results are shown"; -"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Results_TestType_All" = "Todos os tipos"; +"Results_TaskOrigin_All" = "Todas as fontes"; +"Results_LimitedNotice" = "Somente os últimos%1$dresultados são mostrados"; +"Results_UploadingMissing" = "Subindo resultados pendentes %1$s"; "Settings_Logs" = "Logs"; -"Settings_ShareLogs" = "Share Logs"; -"Settings_ShareLogs_Error" = "Error sharing logs"; -"Settings_FilterLogs" = "Filter Logs"; -"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; -"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; -"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; -"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; -"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; -"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; -"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Settings_ShareLogs" = "Compartilhar logs"; +"Settings_ShareLogs_Error" = "Erro de compartilhamento de logs"; +"Settings_FilterLogs" = "Filtro de logs"; +"Settings_DisableVpnInstructions" = "Vá para Configurações > Geral > VPN e desconecte da sua VPN."; +"Settings_AutoTest_NotUploadedLimit" = "Ignorar após esta quantidade de falhas ao carregar"; +"Settings_Sharing_UploadResults_Description" = "Resultados são automaticamente subidos para o explorador do OONI."; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limitar a duração de testes de websites"; +"Settings_Websites_MaxRuntime_New" = "Duração Máxima do teste de duração de websites"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Testes rodarão no plano de fundo"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Somente para execuções manuais"; "Notification_ChannelName" = "Testando"; -"TaskOrigin_Manual" = "Manual Run"; -"TaskOrigin_AutoRun" = "Auto Run"; +"TaskOrigin_Manual" = "Execução manual"; +"TaskOrigin_AutoRun" = "Execução automática"; "NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/pt_BR/strings.json b/probe-mobile/pt_BR/strings.json index 2f6ae8f..76671d8 100644 --- a/probe-mobile/pt_BR/strings.json +++ b/probe-mobile/pt_BR/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Link de desinstalação", "Dashboard.Runv2.Overview.ReviewUpdates": "Revisar atualizações", "Dashboard.Runv2.Overview.PreviousRevisions": "Revisões anteriores", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "Você poderá instalar este link novamente apenas a partir do link original enviado pelo criador.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "Ver mais", "Dashboard.Runv2.Overview.TestWebsites": "Testar sites automaticamente", "Dashboard.RunV2.ManualUpdate.Error": "Erro", @@ -579,19 +579,19 @@ "Dashboard.Progress.UpdateLink.Label": "Carregamento de atualizações de link", "Dashboard.Progress.ReviewLink.Label": "Atualizações de link prontas", "Dashboard.Progress.ReviewLink.Action": "Revisar", - "TestResults.TestCount": "%s Entradas", - "Common_Back": "Voltar", - "Common_Refresh": "refresh", + "TestResults.TestCount": "%s Entradas ", + "Common_Back": "Voltar ", + "Common_Refresh": "Refrescar", "Common_Collapse": "Colapso", "Common_Expand": "Expandir", - "Common_Ago": "%1$s ago", - "Common_Minutes_One": "%1$d minute", - "Common_Minutes_Other": "%1$d minutes", - "Common_Hour_One": "%1$d hour", - "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Ago": "%1$satrás", + "Common_Minutes_One": "%1$d minuto", + "Common_Minutes_Other": "%1$dminutos", + "Common_Hour_One": "%1$dhora", + "Common_Hour_Other": "%1$dhoras", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Janeiro", "Common_Months_February": "Fevereiro", "Common_Months_March": "Março", @@ -604,35 +604,35 @@ "Common_Months_October": "Outubro", "Common_Months_November": "Novembro", "Common_Months_December": "Dezembro", - "Onboarding_QuizAnswer_Correct": "Correct answer", - "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", - "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", - "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", - "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", - "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", - "Measurement_Title": "Measurement", - "Measurements_Count_One": "%1$d measurement", - "Measurements_Count_Other": "%1$d measurements", - "Measurements_Failed": "Falha", + "Onboarding_QuizAnswer_Correct": "Resposta correta", + "Onboarding_QuizAnswer_Incorrect": "Resposta incorreta", + "Dashboard_Runv2_Overview_LastUpdated": "Última atualização%1$s", + "Dashboard_RunTests_RunButton_Label_One": "Rodar %1$dteste", + "Dashboard_RunTests_RunButton_Label_Other": "Rodar%1$dtestes", + "AddDescriptor_Toasts_Unsupported_Url": "URL sem suporte", + "Measurement_Title": "Medição", + "Measurements_Count_One": "%1$dmedições", + "Measurements_Count_Other": "%1$dmedições", + "Measurements_Failed": "Falhou", "Measurements_Ok": "OK", "Measurements_Anomaly": "Anomalia", - "Results_TestType_All": "All Types", - "Results_TaskOrigin_All": "All Sources", - "Results_LimitedNotice": "Only the last %1$d results are shown", - "Results_UploadingMissing": "Uploading missing results %1$s", + "Results_TestType_All": "Todos os tipos", + "Results_TaskOrigin_All": "Todas as fontes", + "Results_LimitedNotice": "Somente os últimos%1$dresultados são mostrados", + "Results_UploadingMissing": "Subindo resultados pendentes %1$s", "Settings_Logs": "Logs", - "Settings_ShareLogs": "Share Logs", - "Settings_ShareLogs_Error": "Error sharing logs", - "Settings_FilterLogs": "Filter Logs", - "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", - "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", - "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", - "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", - "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", - "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", - "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Settings_ShareLogs": "Compartilhar logs", + "Settings_ShareLogs_Error": "Erro de compartilhamento de logs", + "Settings_FilterLogs": "Filtro de logs", + "Settings_DisableVpnInstructions": "Vá para Configurações > Geral > VPN e desconecte da sua VPN.", + "Settings_AutoTest_NotUploadedLimit": "Ignorar após esta quantidade de falhas ao carregar", + "Settings_Sharing_UploadResults_Description": "Resultados são automaticamente subidos para o explorador do OONI.", + "Settings_Websites_MaxRuntimeEnabled_New": "Limitar a duração de testes de websites", + "Settings_Websites_MaxRuntime_New": "Duração Máxima do teste de duração de websites", + "Settings_AutomatedTesting_RunAutomatically_Description": "Testes rodarão no plano de fundo", + "Settings_Websites_MaxRuntimeEnabled_Description": "Somente para execuções manuais", "Notification_ChannelName": "Testando", - "TaskOrigin_Manual": "Manual Run", - "TaskOrigin_AutoRun": "Auto Run", + "TaskOrigin_Manual": "Execução manual", + "TaskOrigin_AutoRun": "Execução automática", "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/pt_BR/strings.xml b/probe-mobile/pt_BR/strings.xml index 09ad4b3..8b50e70 100644 --- a/probe-mobile/pt_BR/strings.xml +++ b/probe-mobile/pt_BR/strings.xml @@ -543,7 +543,7 @@ Link de desinstalação Revisar atualizações Revisões anteriores - Você poderá instalar este link novamente apenas a partir do link original enviado pelo criador. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. Ver mais Testar sites automaticamente Erro @@ -580,19 +580,19 @@ Carregamento de atualizações de link Atualizações de link prontas Revisar - %s Entradas - Voltar - refresh + %s Entradas + Voltar + Refrescar Colapso Expandir - %1$s ago - %1$d minute - %1$d minutes - %1$d hour - %1$d hours - %1$dh - %1$dm - %1$ds + %1$satrás + %1$d minuto + %1$dminutos + %1$dhora + %1$dhoras + %1$d h + %1$d m + %1$d s Janeiro Fevereiro Março @@ -605,35 +605,35 @@ Outubro Novembro Dezembro - Correct answer - Incorrect answer - Last updated %1$s - Run %1$d test - Run %1$d tests - Unsupported URL - Measurement - %1$d measurement - %1$d measurements - Falha + Resposta correta + Resposta incorreta + Última atualização%1$s + Rodar %1$dteste + Rodar%1$dtestes + URL sem suporte + Medição + %1$dmedições + %1$dmedições + Falhou OK Anomalia - All Types - All Sources - Only the last %1$d results are shown - Uploading missing results %1$s + Todos os tipos + Todas as fontes + Somente os últimos%1$dresultados são mostrados + Subindo resultados pendentes %1$s Logs - Share Logs - Error sharing logs - Filter Logs - Go to Settings > General > VPN and disconnect from your VPN. - Skip after this amount of results failed to upload - Results are automatically uploaded to OONI explorer - Limit Websites test duration - Maximum Websites test duration - Tests will run in the background - Only for manual runs + Compartilhar logs + Erro de compartilhamento de logs + Filtro de logs + Vá para Configurações > Geral > VPN e desconecte da sua VPN. + Ignorar após esta quantidade de falhas ao carregar + Resultados são automaticamente subidos para o explorador do OONI. + Limitar a duração de testes de websites + Duração Máxima do teste de duração de websites + Testes rodarão no plano de fundo + Somente para execuções manuais Testando - Manual Run - Auto Run + Execução manual + Execução automática VPN diff --git a/probe-mobile/pt_MZ/Localizable.strings b/probe-mobile/pt_MZ/Localizable.strings index bb8afea..5be3333 100644 --- a/probe-mobile/pt_MZ/Localizable.strings +++ b/probe-mobile/pt_MZ/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/pt_MZ/strings.json b/probe-mobile/pt_MZ/strings.json index bfa119f..d9baa87 100644 --- a/probe-mobile/pt_MZ/strings.json +++ b/probe-mobile/pt_MZ/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/pt_MZ/strings.xml b/probe-mobile/pt_MZ/strings.xml index bc6975c..6d542fc 100644 --- a/probe-mobile/pt_MZ/strings.xml +++ b/probe-mobile/pt_MZ/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/ro/Localizable.strings b/probe-mobile/ro/Localizable.strings index 7b25873..201ef05 100644 --- a/probe-mobile/ro/Localizable.strings +++ b/probe-mobile/ro/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Eroare"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Ianuarie"; "Common_Months_February" = "Februarie"; "Common_Months_March" = "Martie"; diff --git a/probe-mobile/ro/strings.json b/probe-mobile/ro/strings.json index 4aecb2a..316be96 100644 --- a/probe-mobile/ro/strings.json +++ b/probe-mobile/ro/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Eroare", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Ianuarie", "Common_Months_February": "Februarie", "Common_Months_March": "Martie", diff --git a/probe-mobile/ro/strings.xml b/probe-mobile/ro/strings.xml index 33f99fb..b1e7229 100644 --- a/probe-mobile/ro/strings.xml +++ b/probe-mobile/ro/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Eroare @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Ianuarie Februarie Martie diff --git a/probe-mobile/ru/Localizable.strings b/probe-mobile/ru/Localizable.strings index 87ca2fe..ececefc 100644 --- a/probe-mobile/ru/Localizable.strings +++ b/probe-mobile/ru/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Удалить ссылку"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Просмотреть обновления"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Предыдущие изменения"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "Вы сможете снова установить эту ссылку только с помощью оргинальной ссылки, которую вы получили от создателя."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "Узнать больше"; "Dashboard.Runv2.Overview.TestWebsites" = "Тестировать сайты автоматически"; "Dashboard.RunV2.ManualUpdate.Error" = "Ошибка"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Январь"; "Common_Months_February" = "Февраль"; "Common_Months_March" = "Март"; diff --git a/probe-mobile/ru/strings.json b/probe-mobile/ru/strings.json index d9641fd..7e87740 100644 --- a/probe-mobile/ru/strings.json +++ b/probe-mobile/ru/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Удалить ссылку", "Dashboard.Runv2.Overview.ReviewUpdates": "Просмотреть обновления", "Dashboard.Runv2.Overview.PreviousRevisions": "Предыдущие изменения", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "Вы сможете снова установить эту ссылку только с помощью оргинальной ссылки, которую вы получили от создателя.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "Узнать больше", "Dashboard.Runv2.Overview.TestWebsites": "Тестировать сайты автоматически", "Dashboard.RunV2.ManualUpdate.Error": "Ошибка", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Январь", "Common_Months_February": "Февраль", "Common_Months_March": "Март", diff --git a/probe-mobile/ru/strings.xml b/probe-mobile/ru/strings.xml index b7b9800..6154ad2 100644 --- a/probe-mobile/ru/strings.xml +++ b/probe-mobile/ru/strings.xml @@ -543,7 +543,7 @@ Удалить ссылку Просмотреть обновления Предыдущие изменения - Вы сможете снова установить эту ссылку только с помощью оргинальной ссылки, которую вы получили от создателя. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. Узнать больше Тестировать сайты автоматически Ошибка @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Январь Февраль Март diff --git a/probe-mobile/sk/Localizable.strings b/probe-mobile/sk/Localizable.strings index a4a57ba..84aab93 100644 --- a/probe-mobile/sk/Localizable.strings +++ b/probe-mobile/sk/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Chyba"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Január"; "Common_Months_February" = "Február"; "Common_Months_March" = "March"; diff --git a/probe-mobile/sk/strings.json b/probe-mobile/sk/strings.json index addb438..e4d84b0 100644 --- a/probe-mobile/sk/strings.json +++ b/probe-mobile/sk/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Chyba", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Január", "Common_Months_February": "Február", "Common_Months_March": "March", diff --git a/probe-mobile/sk/strings.xml b/probe-mobile/sk/strings.xml index 46b1971..81502fb 100644 --- a/probe-mobile/sk/strings.xml +++ b/probe-mobile/sk/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Chyba @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Január Február March diff --git a/probe-mobile/sl/Localizable.strings b/probe-mobile/sl/Localizable.strings index 80b96a5..3ebbb4a 100644 --- a/probe-mobile/sl/Localizable.strings +++ b/probe-mobile/sl/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Napaka"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/sl/strings.json b/probe-mobile/sl/strings.json index 760b25e..28a80d6 100644 --- a/probe-mobile/sl/strings.json +++ b/probe-mobile/sl/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Napaka", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/sl/strings.xml b/probe-mobile/sl/strings.xml index aec7bb0..06e3b42 100644 --- a/probe-mobile/sl/strings.xml +++ b/probe-mobile/sl/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Napaka @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/sn/Localizable.strings b/probe-mobile/sn/Localizable.strings index 9b01343..5897afa 100644 --- a/probe-mobile/sn/Localizable.strings +++ b/probe-mobile/sn/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Paita kanganiso"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/sn/strings.json b/probe-mobile/sn/strings.json index dc2ee05..1701aec 100644 --- a/probe-mobile/sn/strings.json +++ b/probe-mobile/sn/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Paita kanganiso", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/sn/strings.xml b/probe-mobile/sn/strings.xml index 6dd87c6..21cf1a5 100644 --- a/probe-mobile/sn/strings.xml +++ b/probe-mobile/sn/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Paita kanganiso @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/sq/Localizable.strings b/probe-mobile/sq/Localizable.strings index 54314f7..71be904 100644 --- a/probe-mobile/sq/Localizable.strings +++ b/probe-mobile/sq/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Gabim"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Janar"; "Common_Months_February" = "Shkurt"; "Common_Months_March" = "Mars"; diff --git a/probe-mobile/sq/strings.json b/probe-mobile/sq/strings.json index 61f7b73..322180e 100644 --- a/probe-mobile/sq/strings.json +++ b/probe-mobile/sq/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Gabim", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Janar", "Common_Months_February": "Shkurt", "Common_Months_March": "Mars", diff --git a/probe-mobile/sq/strings.xml b/probe-mobile/sq/strings.xml index 49e94da..327134d 100644 --- a/probe-mobile/sq/strings.xml +++ b/probe-mobile/sq/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Gabim @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Janar Shkurt Mars diff --git a/probe-mobile/ss/Localizable.strings b/probe-mobile/ss/Localizable.strings index e2d936f..8f11290 100644 --- a/probe-mobile/ss/Localizable.strings +++ b/probe-mobile/ss/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/ss/strings.json b/probe-mobile/ss/strings.json index 30fb958..4f70ca4 100644 --- a/probe-mobile/ss/strings.json +++ b/probe-mobile/ss/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/ss/strings.xml b/probe-mobile/ss/strings.xml index 770371b..956d6ca 100644 --- a/probe-mobile/ss/strings.xml +++ b/probe-mobile/ss/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/sv/Localizable.strings b/probe-mobile/sv/Localizable.strings index 901be0e..3996b44 100644 --- a/probe-mobile/sv/Localizable.strings +++ b/probe-mobile/sv/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Fel"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Januari"; "Common_Months_February" = "Februari"; "Common_Months_March" = "Mars"; diff --git a/probe-mobile/sv/strings.json b/probe-mobile/sv/strings.json index d1f368c..418ae69 100644 --- a/probe-mobile/sv/strings.json +++ b/probe-mobile/sv/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Fel", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Januari", "Common_Months_February": "Februari", "Common_Months_March": "Mars", diff --git a/probe-mobile/sv/strings.xml b/probe-mobile/sv/strings.xml index b09d2d6..4b70b16 100644 --- a/probe-mobile/sv/strings.xml +++ b/probe-mobile/sv/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Fel @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Januari Februari Mars diff --git a/probe-mobile/sw/Localizable.strings b/probe-mobile/sw/Localizable.strings index 98f6dae..c0f49d4 100644 --- a/probe-mobile/sw/Localizable.strings +++ b/probe-mobile/sw/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Sanidua Kiungo"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Kagua Sasisho"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Marekebisho ya awali"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "Utaweza kusakinisha kiungo hiki tena kutoka kwa kiungo asili kilichotumwa na mtayarishi pekee."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "Tazama Zaidi"; "Dashboard.Runv2.Overview.TestWebsites" = "Jaribu tovuti kiotomatiki"; "Dashboard.RunV2.ManualUpdate.Error" = "Hitilafu"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/sw/strings.json b/probe-mobile/sw/strings.json index e779fed..a9bfb64 100644 --- a/probe-mobile/sw/strings.json +++ b/probe-mobile/sw/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Sanidua Kiungo", "Dashboard.Runv2.Overview.ReviewUpdates": "Kagua Sasisho", "Dashboard.Runv2.Overview.PreviousRevisions": "Marekebisho ya awali", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "Utaweza kusakinisha kiungo hiki tena kutoka kwa kiungo asili kilichotumwa na mtayarishi pekee.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "Tazama Zaidi", "Dashboard.Runv2.Overview.TestWebsites": "Jaribu tovuti kiotomatiki", "Dashboard.RunV2.ManualUpdate.Error": "Hitilafu", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/sw/strings.xml b/probe-mobile/sw/strings.xml index 856a4a2..a14a87e 100644 --- a/probe-mobile/sw/strings.xml +++ b/probe-mobile/sw/strings.xml @@ -543,7 +543,7 @@ Sanidua Kiungo Kagua Sasisho Marekebisho ya awali - Utaweza kusakinisha kiungo hiki tena kutoka kwa kiungo asili kilichotumwa na mtayarishi pekee. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. Tazama Zaidi Jaribu tovuti kiotomatiki Hitilafu @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/th/Localizable.strings b/probe-mobile/th/Localizable.strings index f1dc270..a119dcd 100644 --- a/probe-mobile/th/Localizable.strings +++ b/probe-mobile/th/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "ผิดพลาด"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/th/strings.json b/probe-mobile/th/strings.json index fce1e99..a456b63 100644 --- a/probe-mobile/th/strings.json +++ b/probe-mobile/th/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "ผิดพลาด", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/th/strings.xml b/probe-mobile/th/strings.xml index 62b7360..dbe6d87 100644 --- a/probe-mobile/th/strings.xml +++ b/probe-mobile/th/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically ผิดพลาด @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/tk_TM/Localizable.strings b/probe-mobile/tk_TM/Localizable.strings index 3145d21..410b2a1 100644 --- a/probe-mobile/tk_TM/Localizable.strings +++ b/probe-mobile/tk_TM/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/tk_TM/strings.json b/probe-mobile/tk_TM/strings.json index 65cc8d7..35e06cd 100644 --- a/probe-mobile/tk_TM/strings.json +++ b/probe-mobile/tk_TM/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/tk_TM/strings.xml b/probe-mobile/tk_TM/strings.xml index 605235b..ce5df0f 100644 --- a/probe-mobile/tk_TM/strings.xml +++ b/probe-mobile/tk_TM/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/tr/Localizable.strings b/probe-mobile/tr/Localizable.strings index 86beccd..b19dd91 100644 --- a/probe-mobile/tr/Localizable.strings +++ b/probe-mobile/tr/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Kaldırma bağlantısı"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Güncellemeleri değerlendirin"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Önceki değişiklikler"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "Bu bağlantıyı yalnızca geliştiricisinin gönderdiği özgün bağlantıdan yeniden kurabilirsiniz."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "Ayrıntıları görüntüle"; "Dashboard.Runv2.Overview.TestWebsites" = "Siteler otomatik olarak sınansın"; "Dashboard.RunV2.ManualUpdate.Error" = "Hata"; @@ -580,17 +580,17 @@ "Dashboard.Progress.ReviewLink.Action" = "Gözden geçir"; "TestResults.TestCount" = "%s giriş"; "Common_Back" = "Geri"; -"Common_Refresh" = "refresh"; +"Common_Refresh" = "yenile"; "Common_Collapse" = "Daralt"; "Common_Expand" = "Genişlet"; -"Common_Ago" = "%1$s ago"; -"Common_Minutes_One" = "%1$d minute"; -"Common_Minutes_Other" = "%1$d minutes"; -"Common_Hour_One" = "%1$d hour"; -"Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Ago" = "%1$s önce"; +"Common_Minutes_One" = "%1$d dakika"; +"Common_Minutes_Other" = "%1$d dakika"; +"Common_Hour_One" = "%1$d saat"; +"Common_Hour_Other" = "%1$d saat"; +"Common_Hours_Abbreviated" = "%1$d s"; +"Common_Minutes_Abbreviated" = "%1$d d"; +"Common_Seconds_Abbreviated" = "%1$d sn"; "Common_Months_January" = "Ocak"; "Common_Months_February" = "Şubat"; "Common_Months_March" = "Mart"; @@ -603,34 +603,34 @@ "Common_Months_October" = "Ekim"; "Common_Months_November" = "Kasım"; "Common_Months_December" = "Aralık"; -"Onboarding_QuizAnswer_Correct" = "Correct answer"; -"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; -"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; -"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; -"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; -"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; -"Measurement_Title" = "Measurement"; -"Measurements_Count_One" = "%1$d measurement"; -"Measurements_Count_Other" = "%1$d measurements"; +"Onboarding_QuizAnswer_Correct" = "Doğru yanıt"; +"Onboarding_QuizAnswer_Incorrect" = "Yanlış yanıt"; +"Dashboard_Runv2_Overview_LastUpdated" = "Son güncellenme: %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "%1$d sınamayı çalıştır"; +"Dashboard_RunTests_RunButton_Label_Other" = "%1$d sınamayı çalıştır"; +"AddDescriptor_Toasts_Unsupported_Url" = "Adres desteklenmiyor"; +"Measurement_Title" = "Ölçüm"; +"Measurements_Count_One" = "%1$d ölçüm"; +"Measurements_Count_Other" = "%1$d ölçüm"; "Measurements_Failed" = "Tamamlanamadı"; "Measurements_Ok" = "Tamam"; "Measurements_Anomaly" = "Anormallik"; -"Results_TestType_All" = "All Types"; -"Results_TaskOrigin_All" = "All Sources"; -"Results_LimitedNotice" = "Only the last %1$d results are shown"; -"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Results_TestType_All" = "Tüm türler"; +"Results_TaskOrigin_All" = "Tüm kaynaklar"; +"Results_LimitedNotice" = "Yalnızca son %1$d sonuç görüntüleniyor"; +"Results_UploadingMissing" = "Eksik sonuçlar yükleniyor %1$s"; "Settings_Logs" = "Günlükler"; -"Settings_ShareLogs" = "Share Logs"; -"Settings_ShareLogs_Error" = "Error sharing logs"; -"Settings_FilterLogs" = "Filter Logs"; -"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; -"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; -"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; -"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; -"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; -"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; -"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; -"Notification_ChannelName" = "Testing"; -"TaskOrigin_Manual" = "Manual Run"; -"TaskOrigin_AutoRun" = "Auto Run"; +"Settings_ShareLogs" = "Günlüğü paylaş"; +"Settings_ShareLogs_Error" = "Günlük paylaşılırken sorun çıktı"; +"Settings_FilterLogs" = "Günlüğü süz"; +"Settings_DisableVpnInstructions" = "Ayarlar > Genel > VPN bölümüne giderek VPN bağlantınızı kesin."; +"Settings_AutoTest_NotUploadedLimit" = "Şu kadar başarısız yüklemeden sonra atlansın"; +"Settings_Sharing_UploadResults_Description" = "Sonuçlar OONI explorer üzerine otomatik olarak yüklenir"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Site sınama süresi sınırlansın"; +"Settings_Websites_MaxRuntime_New" = "En uzun site sınama süresi"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Sınamalar arka planda yapılacak"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "Yalnızca el ile çalıştırmalar için"; +"Notification_ChannelName" = "Sınanıyor"; +"TaskOrigin_Manual" = "El ile çalıştırma"; +"TaskOrigin_AutoRun" = "Otomatik çalıştırma"; "NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/tr/strings.json b/probe-mobile/tr/strings.json index 0fe938b..cc6500d 100644 --- a/probe-mobile/tr/strings.json +++ b/probe-mobile/tr/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Kaldırma bağlantısı", "Dashboard.Runv2.Overview.ReviewUpdates": "Güncellemeleri değerlendirin", "Dashboard.Runv2.Overview.PreviousRevisions": "Önceki değişiklikler", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "Bu bağlantıyı yalnızca geliştiricisinin gönderdiği özgün bağlantıdan yeniden kurabilirsiniz.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "Ayrıntıları görüntüle", "Dashboard.Runv2.Overview.TestWebsites": "Siteler otomatik olarak sınansın", "Dashboard.RunV2.ManualUpdate.Error": "Hata", @@ -581,17 +581,17 @@ "Dashboard.Progress.ReviewLink.Action": "Gözden geçir", "TestResults.TestCount": "%s giriş", "Common_Back": "Geri", - "Common_Refresh": "refresh", + "Common_Refresh": "yenile", "Common_Collapse": "Daralt", "Common_Expand": "Genişlet", - "Common_Ago": "%1$s ago", - "Common_Minutes_One": "%1$d minute", - "Common_Minutes_Other": "%1$d minutes", - "Common_Hour_One": "%1$d hour", - "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Ago": "%1$s önce", + "Common_Minutes_One": "%1$d dakika", + "Common_Minutes_Other": "%1$d dakika", + "Common_Hour_One": "%1$d saat", + "Common_Hour_Other": "%1$d saat", + "Common_Hours_Abbreviated": "%1$d s", + "Common_Minutes_Abbreviated": "%1$d d", + "Common_Seconds_Abbreviated": "%1$d sn", "Common_Months_January": "Ocak", "Common_Months_February": "Şubat", "Common_Months_March": "Mart", @@ -604,35 +604,35 @@ "Common_Months_October": "Ekim", "Common_Months_November": "Kasım", "Common_Months_December": "Aralık", - "Onboarding_QuizAnswer_Correct": "Correct answer", - "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", - "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", - "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", - "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", - "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", - "Measurement_Title": "Measurement", - "Measurements_Count_One": "%1$d measurement", - "Measurements_Count_Other": "%1$d measurements", + "Onboarding_QuizAnswer_Correct": "Doğru yanıt", + "Onboarding_QuizAnswer_Incorrect": "Yanlış yanıt", + "Dashboard_Runv2_Overview_LastUpdated": "Son güncellenme: %1$s", + "Dashboard_RunTests_RunButton_Label_One": "%1$d sınamayı çalıştır", + "Dashboard_RunTests_RunButton_Label_Other": "%1$d sınamayı çalıştır", + "AddDescriptor_Toasts_Unsupported_Url": "Adres desteklenmiyor", + "Measurement_Title": "Ölçüm", + "Measurements_Count_One": "%1$d ölçüm", + "Measurements_Count_Other": "%1$d ölçüm", "Measurements_Failed": "Tamamlanamadı", "Measurements_Ok": "Tamam", "Measurements_Anomaly": "Anormallik", - "Results_TestType_All": "All Types", - "Results_TaskOrigin_All": "All Sources", - "Results_LimitedNotice": "Only the last %1$d results are shown", - "Results_UploadingMissing": "Uploading missing results %1$s", + "Results_TestType_All": "Tüm türler", + "Results_TaskOrigin_All": "Tüm kaynaklar", + "Results_LimitedNotice": "Yalnızca son %1$d sonuç görüntüleniyor", + "Results_UploadingMissing": "Eksik sonuçlar yükleniyor %1$s", "Settings_Logs": "Günlükler", - "Settings_ShareLogs": "Share Logs", - "Settings_ShareLogs_Error": "Error sharing logs", - "Settings_FilterLogs": "Filter Logs", - "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", - "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", - "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", - "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", - "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", - "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", - "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", - "Notification_ChannelName": "Testing", - "TaskOrigin_Manual": "Manual Run", - "TaskOrigin_AutoRun": "Auto Run", + "Settings_ShareLogs": "Günlüğü paylaş", + "Settings_ShareLogs_Error": "Günlük paylaşılırken sorun çıktı", + "Settings_FilterLogs": "Günlüğü süz", + "Settings_DisableVpnInstructions": "Ayarlar > Genel > VPN bölümüne giderek VPN bağlantınızı kesin.", + "Settings_AutoTest_NotUploadedLimit": "Şu kadar başarısız yüklemeden sonra atlansın", + "Settings_Sharing_UploadResults_Description": "Sonuçlar OONI explorer üzerine otomatik olarak yüklenir", + "Settings_Websites_MaxRuntimeEnabled_New": "Site sınama süresi sınırlansın", + "Settings_Websites_MaxRuntime_New": "En uzun site sınama süresi", + "Settings_AutomatedTesting_RunAutomatically_Description": "Sınamalar arka planda yapılacak", + "Settings_Websites_MaxRuntimeEnabled_Description": "Yalnızca el ile çalıştırmalar için", + "Notification_ChannelName": "Sınanıyor", + "TaskOrigin_Manual": "El ile çalıştırma", + "TaskOrigin_AutoRun": "Otomatik çalıştırma", "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/tr/strings.xml b/probe-mobile/tr/strings.xml index a913212..45ca66f 100644 --- a/probe-mobile/tr/strings.xml +++ b/probe-mobile/tr/strings.xml @@ -543,7 +543,7 @@ Kaldırma bağlantısı Güncellemeleri değerlendirin Önceki değişiklikler - Bu bağlantıyı yalnızca geliştiricisinin gönderdiği özgün bağlantıdan yeniden kurabilirsiniz. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. Ayrıntıları görüntüle Siteler otomatik olarak sınansın Hata @@ -582,17 +582,17 @@ Gözden geçir %s giriş Geri - refresh + yenile Daralt Genişlet - %1$s ago - %1$d minute - %1$d minutes - %1$d hour - %1$d hours - %1$dh - %1$dm - %1$ds + %1$s önce + %1$d dakika + %1$d dakika + %1$d saat + %1$d saat + %1$d s + %1$d d + %1$d sn Ocak Şubat Mart @@ -605,35 +605,35 @@ Ekim Kasım Aralık - Correct answer - Incorrect answer - Last updated %1$s - Run %1$d test - Run %1$d tests - Unsupported URL - Measurement - %1$d measurement - %1$d measurements + Doğru yanıt + Yanlış yanıt + Son güncellenme: %1$s + %1$d sınamayı çalıştır + %1$d sınamayı çalıştır + Adres desteklenmiyor + Ölçüm + %1$d ölçüm + %1$d ölçüm Tamamlanamadı Tamam Anormallik - All Types - All Sources - Only the last %1$d results are shown - Uploading missing results %1$s + Tüm türler + Tüm kaynaklar + Yalnızca son %1$d sonuç görüntüleniyor + Eksik sonuçlar yükleniyor %1$s Günlükler - Share Logs - Error sharing logs - Filter Logs - Go to Settings > General > VPN and disconnect from your VPN. - Skip after this amount of results failed to upload - Results are automatically uploaded to OONI explorer - Limit Websites test duration - Maximum Websites test duration - Tests will run in the background - Only for manual runs - Testing - Manual Run - Auto Run + Günlüğü paylaş + Günlük paylaşılırken sorun çıktı + Günlüğü süz + Ayarlar > Genel > VPN bölümüne giderek VPN bağlantınızı kesin. + Şu kadar başarısız yüklemeden sonra atlansın + Sonuçlar OONI explorer üzerine otomatik olarak yüklenir + Site sınama süresi sınırlansın + En uzun site sınama süresi + Sınamalar arka planda yapılacak + Yalnızca el ile çalıştırmalar için + Sınanıyor + El ile çalıştırma + Otomatik çalıştırma VPN diff --git a/probe-mobile/tum/Localizable.strings b/probe-mobile/tum/Localizable.strings index e57d8f8..cc0660a 100644 --- a/probe-mobile/tum/Localizable.strings +++ b/probe-mobile/tum/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/tum/strings.json b/probe-mobile/tum/strings.json index b3d70e4..369e740 100644 --- a/probe-mobile/tum/strings.json +++ b/probe-mobile/tum/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/tum/strings.xml b/probe-mobile/tum/strings.xml index fdfda47..d1d2ca0 100644 --- a/probe-mobile/tum/strings.xml +++ b/probe-mobile/tum/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/uk/Localizable.strings b/probe-mobile/uk/Localizable.strings index fe9b1cb..2fbfd5b 100644 --- a/probe-mobile/uk/Localizable.strings +++ b/probe-mobile/uk/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Помилка"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "Січень"; "Common_Months_February" = "Лютий"; "Common_Months_March" = "Березень"; diff --git a/probe-mobile/uk/strings.json b/probe-mobile/uk/strings.json index af0f80c..3311738 100644 --- a/probe-mobile/uk/strings.json +++ b/probe-mobile/uk/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Помилка", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "Січень", "Common_Months_February": "Лютий", "Common_Months_March": "Березень", diff --git a/probe-mobile/uk/strings.xml b/probe-mobile/uk/strings.xml index 6ca950b..d6dde3c 100644 --- a/probe-mobile/uk/strings.xml +++ b/probe-mobile/uk/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Помилка @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s Січень Лютий Березень diff --git a/probe-mobile/ur/Localizable.strings b/probe-mobile/ur/Localizable.strings index 2ace5f3..798ca93 100644 --- a/probe-mobile/ur/Localizable.strings +++ b/probe-mobile/ur/Localizable.strings @@ -452,7 +452,7 @@ "Notification.FinishedRunning" = "Finished running"; "Notification.StopTest" = "Stop test"; "OONIBrowser.TryMirror" = "Try mirror"; -"OONIBrowser.Loading" = "Loading..."; +"OONIBrowser.Loading" = "لوڈ ہو رہا ہے"; "OONIBrowser.Error" = "An unexpected error occurred. Please reload this page."; "OONIRun.YouAreAboutToRun" = "You are about to run an OONI Probe test."; "OONIRun.URLs" = "%@ URLs"; @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "خرابی"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/ur/strings.json b/probe-mobile/ur/strings.json index d031471..d5ebd29 100644 --- a/probe-mobile/ur/strings.json +++ b/probe-mobile/ur/strings.json @@ -453,7 +453,7 @@ "Notification.FinishedRunning": "Finished running", "Notification.StopTest": "Stop test", "OONIBrowser.TryMirror": "Try mirror", - "OONIBrowser.Loading": "Loading...", + "OONIBrowser.Loading": "لوڈ ہو رہا ہے", "OONIBrowser.Error": "An unexpected error occurred. Please reload this page.", "OONIRun.YouAreAboutToRun": "You are about to run an OONI Probe test.", "OONIRun.URLs": "{Count} URLs", @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "خرابی", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/ur/strings.xml b/probe-mobile/ur/strings.xml index 80280b8..310dee5 100644 --- a/probe-mobile/ur/strings.xml +++ b/probe-mobile/ur/strings.xml @@ -454,7 +454,7 @@ Finished running Stop test Try mirror - Loading... + لوڈ ہو رہا ہے An unexpected error occurred. Please reload this page. You are about to run an OONI Probe test. %1$s URLs @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically خرابی @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/vi/Localizable.strings b/probe-mobile/vi/Localizable.strings index dbc4c65..3c59bfe 100644 --- a/probe-mobile/vi/Localizable.strings +++ b/probe-mobile/vi/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Lỗi"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/vi/strings.json b/probe-mobile/vi/strings.json index 9ab3c9b..7ae3876 100644 --- a/probe-mobile/vi/strings.json +++ b/probe-mobile/vi/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Lỗi", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/vi/strings.xml b/probe-mobile/vi/strings.xml index 31a730c..3d27084 100644 --- a/probe-mobile/vi/strings.xml +++ b/probe-mobile/vi/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Lỗi @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/zh_CN/Localizable.strings b/probe-mobile/zh_CN/Localizable.strings index 5054daa..ef38890 100644 --- a/probe-mobile/zh_CN/Localizable.strings +++ b/probe-mobile/zh_CN/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "卸载链接"; "Dashboard.Runv2.Overview.ReviewUpdates" = "查看更新"; "Dashboard.Runv2.Overview.PreviousRevisions" = "先前更改"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "您将只能从创建者发送的原始链接再次安装此链接。"; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "查看更多"; "Dashboard.Runv2.Overview.TestWebsites" = "自动测试网站"; "Dashboard.RunV2.ManualUpdate.Error" = "错误"; @@ -580,17 +580,17 @@ "Dashboard.Progress.ReviewLink.Action" = "审查"; "TestResults.TestCount" = "%s 个输入"; "Common_Back" = "返回"; -"Common_Refresh" = "refresh"; +"Common_Refresh" = "刷新"; "Common_Collapse" = "折叠"; "Common_Expand" = "展开"; -"Common_Ago" = "%1$s ago"; -"Common_Minutes_One" = "%1$d minute"; -"Common_Minutes_Other" = "%1$d minutes"; -"Common_Hour_One" = "%1$d hour"; -"Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Ago" = "%1$s 前"; +"Common_Minutes_One" = "%1$d 分钟 "; +"Common_Minutes_Other" = "%1$d 分钟"; +"Common_Hour_One" = "%1$d 小时"; +"Common_Hour_Other" = "%1$d 小时"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "一月"; "Common_Months_February" = "二月"; "Common_Months_March" = "三月"; @@ -603,34 +603,34 @@ "Common_Months_October" = "十月"; "Common_Months_November" = "十一月"; "Common_Months_December" = "十二月"; -"Onboarding_QuizAnswer_Correct" = "Correct answer"; -"Onboarding_QuizAnswer_Incorrect" = "Incorrect answer"; -"Dashboard_Runv2_Overview_LastUpdated" = "Last updated %1$s"; -"Dashboard_RunTests_RunButton_Label_One" = "Run %1$d test"; -"Dashboard_RunTests_RunButton_Label_Other" = "Run %1$d tests"; -"AddDescriptor_Toasts_Unsupported_Url" = "Unsupported URL"; -"Measurement_Title" = "Measurement"; -"Measurements_Count_One" = "%1$d measurement"; -"Measurements_Count_Other" = "%1$d measurements"; +"Onboarding_QuizAnswer_Correct" = "正确答案"; +"Onboarding_QuizAnswer_Incorrect" = "不正确答案"; +"Dashboard_Runv2_Overview_LastUpdated" = "上次更新 %1$s"; +"Dashboard_RunTests_RunButton_Label_One" = "运行 %1$d 个测试"; +"Dashboard_RunTests_RunButton_Label_Other" = "运行 %1$d 个测试"; +"AddDescriptor_Toasts_Unsupported_Url" = "不支持的 URL"; +"Measurement_Title" = "测量"; +"Measurements_Count_One" = "%1$d 次测量"; +"Measurements_Count_Other" = "%1$d 次测量"; "Measurements_Failed" = "失败"; "Measurements_Ok" = "正常"; "Measurements_Anomaly" = "异常"; -"Results_TestType_All" = "All Types"; -"Results_TaskOrigin_All" = "All Sources"; -"Results_LimitedNotice" = "Only the last %1$d results are shown"; -"Results_UploadingMissing" = "Uploading missing results %1$s"; +"Results_TestType_All" = "所有类型"; +"Results_TaskOrigin_All" = "所有来源"; +"Results_LimitedNotice" = "只显示最后 %1$d 个结果"; +"Results_UploadingMissing" = "上传缺失的结果 %1$s"; "Settings_Logs" = "日志"; -"Settings_ShareLogs" = "Share Logs"; -"Settings_ShareLogs_Error" = "Error sharing logs"; -"Settings_FilterLogs" = "Filter Logs"; -"Settings_DisableVpnInstructions" = "Go to Settings > General > VPN and disconnect from your VPN."; -"Settings_AutoTest_NotUploadedLimit" = "Skip after this amount of results failed to upload"; -"Settings_Sharing_UploadResults_Description" = "Results are automatically uploaded to OONI explorer"; -"Settings_Websites_MaxRuntimeEnabled_New" = "Limit Websites test duration"; -"Settings_Websites_MaxRuntime_New" = "Maximum Websites test duration"; -"Settings_AutomatedTesting_RunAutomatically_Description" = "Tests will run in the background"; -"Settings_Websites_MaxRuntimeEnabled_Description" = "Only for manual runs"; +"Settings_ShareLogs" = "分享日志"; +"Settings_ShareLogs_Error" = "分享日志出错"; +"Settings_FilterLogs" = "过滤日志"; +"Settings_DisableVpnInstructions" = "转到设置 > 常规 > VPN 并断开 VPN 连接"; +"Settings_AutoTest_NotUploadedLimit" = "在上传此数量的结果失败后跳过"; +"Settings_Sharing_UploadResults_Description" = "结果自动上传到 OONI explorer"; +"Settings_Websites_MaxRuntimeEnabled_New" = "限制网站测试持续时间"; +"Settings_Websites_MaxRuntime_New" = "最大化网站测试持续时间"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "测试将在后台运行"; +"Settings_Websites_MaxRuntimeEnabled_Description" = "仅手动运行"; "Notification_ChannelName" = "测试中"; -"TaskOrigin_Manual" = "Manual Run"; -"TaskOrigin_AutoRun" = "Auto Run"; +"TaskOrigin_Manual" = "手动运行"; +"TaskOrigin_AutoRun" = "自动运行"; "NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/zh_CN/strings.json b/probe-mobile/zh_CN/strings.json index bdcfc08..4c28207 100644 --- a/probe-mobile/zh_CN/strings.json +++ b/probe-mobile/zh_CN/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "卸载链接", "Dashboard.Runv2.Overview.ReviewUpdates": "查看更新", "Dashboard.Runv2.Overview.PreviousRevisions": "先前更改", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "您将只能从创建者发送的原始链接再次安装此链接。", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "查看更多", "Dashboard.Runv2.Overview.TestWebsites": "自动测试网站", "Dashboard.RunV2.ManualUpdate.Error": "错误", @@ -581,17 +581,17 @@ "Dashboard.Progress.ReviewLink.Action": "审查", "TestResults.TestCount": "%s 个输入", "Common_Back": "返回", - "Common_Refresh": "refresh", + "Common_Refresh": "刷新", "Common_Collapse": "折叠", "Common_Expand": "展开", - "Common_Ago": "%1$s ago", - "Common_Minutes_One": "%1$d minute", - "Common_Minutes_Other": "%1$d minutes", - "Common_Hour_One": "%1$d hour", - "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Ago": "%1$s 前", + "Common_Minutes_One": "%1$d 分钟 ", + "Common_Minutes_Other": "%1$d 分钟", + "Common_Hour_One": "%1$d 小时", + "Common_Hour_Other": "%1$d 小时", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "一月", "Common_Months_February": "二月", "Common_Months_March": "三月", @@ -604,35 +604,35 @@ "Common_Months_October": "十月", "Common_Months_November": "十一月", "Common_Months_December": "十二月", - "Onboarding_QuizAnswer_Correct": "Correct answer", - "Onboarding_QuizAnswer_Incorrect": "Incorrect answer", - "Dashboard_Runv2_Overview_LastUpdated": "Last updated %1$s", - "Dashboard_RunTests_RunButton_Label_One": "Run %1$d test", - "Dashboard_RunTests_RunButton_Label_Other": "Run %1$d tests", - "AddDescriptor_Toasts_Unsupported_Url": "Unsupported URL", - "Measurement_Title": "Measurement", - "Measurements_Count_One": "%1$d measurement", - "Measurements_Count_Other": "%1$d measurements", + "Onboarding_QuizAnswer_Correct": "正确答案", + "Onboarding_QuizAnswer_Incorrect": "不正确答案", + "Dashboard_Runv2_Overview_LastUpdated": "上次更新 %1$s", + "Dashboard_RunTests_RunButton_Label_One": "运行 %1$d 个测试", + "Dashboard_RunTests_RunButton_Label_Other": "运行 %1$d 个测试", + "AddDescriptor_Toasts_Unsupported_Url": "不支持的 URL", + "Measurement_Title": "测量", + "Measurements_Count_One": "%1$d 次测量", + "Measurements_Count_Other": "%1$d 次测量", "Measurements_Failed": "失败", "Measurements_Ok": "正常", "Measurements_Anomaly": "异常", - "Results_TestType_All": "All Types", - "Results_TaskOrigin_All": "All Sources", - "Results_LimitedNotice": "Only the last %1$d results are shown", - "Results_UploadingMissing": "Uploading missing results %1$s", + "Results_TestType_All": "所有类型", + "Results_TaskOrigin_All": "所有来源", + "Results_LimitedNotice": "只显示最后 %1$d 个结果", + "Results_UploadingMissing": "上传缺失的结果 %1$s", "Settings_Logs": "日志", - "Settings_ShareLogs": "Share Logs", - "Settings_ShareLogs_Error": "Error sharing logs", - "Settings_FilterLogs": "Filter Logs", - "Settings_DisableVpnInstructions": "Go to Settings > General > VPN and disconnect from your VPN.", - "Settings_AutoTest_NotUploadedLimit": "Skip after this amount of results failed to upload", - "Settings_Sharing_UploadResults_Description": "Results are automatically uploaded to OONI explorer", - "Settings_Websites_MaxRuntimeEnabled_New": "Limit Websites test duration", - "Settings_Websites_MaxRuntime_New": "Maximum Websites test duration", - "Settings_AutomatedTesting_RunAutomatically_Description": "Tests will run in the background", - "Settings_Websites_MaxRuntimeEnabled_Description": "Only for manual runs", + "Settings_ShareLogs": "分享日志", + "Settings_ShareLogs_Error": "分享日志出错", + "Settings_FilterLogs": "过滤日志", + "Settings_DisableVpnInstructions": "转到设置 > 常规 > VPN 并断开 VPN 连接", + "Settings_AutoTest_NotUploadedLimit": "在上传此数量的结果失败后跳过", + "Settings_Sharing_UploadResults_Description": "结果自动上传到 OONI explorer", + "Settings_Websites_MaxRuntimeEnabled_New": "限制网站测试持续时间", + "Settings_Websites_MaxRuntime_New": "最大化网站测试持续时间", + "Settings_AutomatedTesting_RunAutomatically_Description": "测试将在后台运行", + "Settings_Websites_MaxRuntimeEnabled_Description": "仅手动运行", "Notification_ChannelName": "测试中", - "TaskOrigin_Manual": "Manual Run", - "TaskOrigin_AutoRun": "Auto Run", + "TaskOrigin_Manual": "手动运行", + "TaskOrigin_AutoRun": "自动运行", "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/zh_CN/strings.xml b/probe-mobile/zh_CN/strings.xml index 2df80bc..43464a2 100644 --- a/probe-mobile/zh_CN/strings.xml +++ b/probe-mobile/zh_CN/strings.xml @@ -543,7 +543,7 @@ 卸载链接 查看更新 先前更改 - 您将只能从创建者发送的原始链接再次安装此链接。 + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. 查看更多 自动测试网站 错误 @@ -582,17 +582,17 @@ 审查 %s 个输入 返回 - refresh + 刷新 折叠 展开 - %1$s ago - %1$d minute - %1$d minutes - %1$d hour - %1$d hours - %1$dh - %1$dm - %1$ds + %1$s 前 + %1$d 分钟 + %1$d 分钟 + %1$d 小时 + %1$d 小时 + %1$d h + %1$d m + %1$d s 一月 二月 三月 @@ -605,35 +605,35 @@ 十月 十一月 十二月 - Correct answer - Incorrect answer - Last updated %1$s - Run %1$d test - Run %1$d tests - Unsupported URL - Measurement - %1$d measurement - %1$d measurements + 正确答案 + 不正确答案 + 上次更新 %1$s + 运行 %1$d 个测试 + 运行 %1$d 个测试 + 不支持的 URL + 测量 + %1$d 次测量 + %1$d 次测量 失败 正常 异常 - All Types - All Sources - Only the last %1$d results are shown - Uploading missing results %1$s + 所有类型 + 所有来源 + 只显示最后 %1$d 个结果 + 上传缺失的结果 %1$s 日志 - Share Logs - Error sharing logs - Filter Logs - Go to Settings > General > VPN and disconnect from your VPN. - Skip after this amount of results failed to upload - Results are automatically uploaded to OONI explorer - Limit Websites test duration - Maximum Websites test duration - Tests will run in the background - Only for manual runs + 分享日志 + 分享日志出错 + 过滤日志 + 转到设置 > 常规 > VPN 并断开 VPN 连接 + 在上传此数量的结果失败后跳过 + 结果自动上传到 OONI explorer + 限制网站测试持续时间 + 最大化网站测试持续时间 + 测试将在后台运行 + 仅手动运行 测试中 - Manual Run - Auto Run + 手动运行 + 自动运行 VPN diff --git a/probe-mobile/zh_HK/Localizable.strings b/probe-mobile/zh_HK/Localizable.strings index 6411f8c..7ab385e 100644 --- a/probe-mobile/zh_HK/Localizable.strings +++ b/probe-mobile/zh_HK/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "錯誤"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/zh_HK/strings.json b/probe-mobile/zh_HK/strings.json index c067a49..495cc4f 100644 --- a/probe-mobile/zh_HK/strings.json +++ b/probe-mobile/zh_HK/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "錯誤", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/zh_HK/strings.xml b/probe-mobile/zh_HK/strings.xml index a39121e..5a55d87 100644 --- a/probe-mobile/zh_HK/strings.xml +++ b/probe-mobile/zh_HK/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically 錯誤 @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March diff --git a/probe-mobile/zh_TW/Localizable.strings b/probe-mobile/zh_TW/Localizable.strings index 3946aa8..d0175ee 100644 --- a/probe-mobile/zh_TW/Localizable.strings +++ b/probe-mobile/zh_TW/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "錯誤"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "一月"; "Common_Months_February" = "二月"; "Common_Months_March" = "三月"; diff --git a/probe-mobile/zh_TW/strings.json b/probe-mobile/zh_TW/strings.json index 6ed5059..e1242ac 100644 --- a/probe-mobile/zh_TW/strings.json +++ b/probe-mobile/zh_TW/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "錯誤", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "一月", "Common_Months_February": "二月", "Common_Months_March": "三月", diff --git a/probe-mobile/zh_TW/strings.xml b/probe-mobile/zh_TW/strings.xml index 6253060..d25bc3d 100644 --- a/probe-mobile/zh_TW/strings.xml +++ b/probe-mobile/zh_TW/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically 錯誤 @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s 一月 二月 三月 diff --git a/probe-mobile/zu_ZA/Localizable.strings b/probe-mobile/zu_ZA/Localizable.strings index e8449f6..4330d21 100644 --- a/probe-mobile/zu_ZA/Localizable.strings +++ b/probe-mobile/zu_ZA/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Uninstall Link"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Review Updates"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Previous revisions"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; "Dashboard.Runv2.Overview.SeeMore" = "See More"; "Dashboard.Runv2.Overview.TestWebsites" = "Test websites automatically"; "Dashboard.RunV2.ManualUpdate.Error" = "Error"; @@ -588,9 +588,9 @@ "Common_Minutes_Other" = "%1$d minutes"; "Common_Hour_One" = "%1$d hour"; "Common_Hour_Other" = "%1$d hours"; -"Common_Hours_Abbreviated" = "%1$dh"; -"Common_Minutes_Abbreviated" = "%1$dm"; -"Common_Seconds_Abbreviated" = "%1$ds"; +"Common_Hours_Abbreviated" = "%1$d h"; +"Common_Minutes_Abbreviated" = "%1$d m"; +"Common_Seconds_Abbreviated" = "%1$d s"; "Common_Months_January" = "January"; "Common_Months_February" = "February"; "Common_Months_March" = "March"; diff --git a/probe-mobile/zu_ZA/strings.json b/probe-mobile/zu_ZA/strings.json index 5112e88..aa8430e 100644 --- a/probe-mobile/zu_ZA/strings.json +++ b/probe-mobile/zu_ZA/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Uninstall Link", "Dashboard.Runv2.Overview.ReviewUpdates": "Review Updates", "Dashboard.Runv2.Overview.PreviousRevisions": "Previous revisions", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", "Dashboard.Runv2.Overview.SeeMore": "See More", "Dashboard.Runv2.Overview.TestWebsites": "Test websites automatically", "Dashboard.RunV2.ManualUpdate.Error": "Error", @@ -589,9 +589,9 @@ "Common_Minutes_Other": "%1$d minutes", "Common_Hour_One": "%1$d hour", "Common_Hour_Other": "%1$d hours", - "Common_Hours_Abbreviated": "%1$dh", - "Common_Minutes_Abbreviated": "%1$dm", - "Common_Seconds_Abbreviated": "%1$ds", + "Common_Hours_Abbreviated": "%1$d h", + "Common_Minutes_Abbreviated": "%1$d m", + "Common_Seconds_Abbreviated": "%1$d s", "Common_Months_January": "January", "Common_Months_February": "February", "Common_Months_March": "March", diff --git a/probe-mobile/zu_ZA/strings.xml b/probe-mobile/zu_ZA/strings.xml index 4b8f43a..a1937c1 100644 --- a/probe-mobile/zu_ZA/strings.xml +++ b/probe-mobile/zu_ZA/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error @@ -590,9 +590,9 @@ %1$d minutes %1$d hour %1$d hours - %1$dh - %1$dm - %1$ds + %1$d h + %1$d m + %1$d s January February March From dc4098377baa8df2804546e96614699cb63ddf08 Mon Sep 17 00:00:00 2001 From: Norbel Ambanumben Date: Mon, 10 Feb 2025 15:45:30 +0100 Subject: [PATCH 8/9] chore: update translatons --- news-media-scan/ar/strings.xml | 2 +- news-media-scan/de/strings.xml | 2 +- news-media-scan/en/strings.xml | 2 +- news-media-scan/es/strings.xml | 2 +- news-media-scan/fa/strings.xml | 2 +- news-media-scan/fr/strings.xml | 2 +- news-media-scan/hi/strings.xml | 2 +- news-media-scan/id/strings.xml | 2 +- news-media-scan/pl/strings.xml | 2 +- news-media-scan/pt_BR/strings.xml | 110 ++++++++++++------------- news-media-scan/ro/strings.xml | 2 +- news-media-scan/ru/strings.xml | 2 +- news-media-scan/sq/strings.xml | 2 +- news-media-scan/tr/strings.xml | 2 +- probe-mobile/de/Localizable.strings | 2 +- probe-mobile/de/strings.json | 2 +- probe-mobile/de/strings.xml | 2 +- probe-mobile/fr/Localizable.strings | 2 +- probe-mobile/fr/strings.json | 2 +- probe-mobile/fr/strings.xml | 2 +- probe-mobile/pt_BR/Localizable.strings | 110 ++++++++++++------------- probe-mobile/pt_BR/strings.json | 110 ++++++++++++------------- probe-mobile/pt_BR/strings.xml | 110 ++++++++++++------------- probe-mobile/tr/Localizable.strings | 2 +- probe-mobile/tr/strings.json | 2 +- probe-mobile/tr/strings.xml | 2 +- probe-mobile/zh_CN/Localizable.strings | 2 +- probe-mobile/zh_CN/strings.json | 2 +- probe-mobile/zh_CN/strings.xml | 2 +- 29 files changed, 245 insertions(+), 245 deletions(-) diff --git a/news-media-scan/ar/strings.xml b/news-media-scan/ar/strings.xml index 1c6d01c..0432afc 100644 --- a/news-media-scan/ar/strings.xml +++ b/news-media-scan/ar/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates المراجعات السابقة - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically خطأ diff --git a/news-media-scan/de/strings.xml b/news-media-scan/de/strings.xml index 1f64077..0f4df60 100644 --- a/news-media-scan/de/strings.xml +++ b/news-media-scan/de/strings.xml @@ -543,7 +543,7 @@ Link deinstallieren Überprüfung der Aktualisierungen Frühere Überarbeitungen - Du kannst diesen Link nur über den Original-Link installieren, den der Ersteller geschickt hat. + Du kannst diesen Link nur über den Original-Link installieren, den der Ersteller geschickt hat. Die Messungen über diesen Link werden gelöscht, sind aber über den Explorer weiterhin zugänglich. Weitere Informationen Websites automatisch testen Fehler diff --git a/news-media-scan/en/strings.xml b/news-media-scan/en/strings.xml index 5a75805..a4e1439 100644 --- a/news-media-scan/en/strings.xml +++ b/news-media-scan/en/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Error diff --git a/news-media-scan/es/strings.xml b/news-media-scan/es/strings.xml index 819d9b5..b94dbee 100644 --- a/news-media-scan/es/strings.xml +++ b/news-media-scan/es/strings.xml @@ -543,7 +543,7 @@ Enlace de Desinstalación Revisar Actualizaciones Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. Ver más Probar sitios web automáticamente Error diff --git a/news-media-scan/fa/strings.xml b/news-media-scan/fa/strings.xml index af2d270..01bc72e 100644 --- a/news-media-scan/fa/strings.xml +++ b/news-media-scan/fa/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates بازنگری‌های قبلی - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically خطا diff --git a/news-media-scan/fr/strings.xml b/news-media-scan/fr/strings.xml index 696c239..9ac03cf 100644 --- a/news-media-scan/fr/strings.xml +++ b/news-media-scan/fr/strings.xml @@ -543,7 +543,7 @@ Désinstaller le lien Mise à jour des révisions Révisions précédentes - Vous ne pourrez réinstaller ce lien qu’à partir du lien original envoyé par le créateur. + Vous ne pourrez réinstaller ce lien qu’à partir du lien original envoyé par la personne qui l’a créé. Les mesures de ce lien seront supprimées, mais seront accessibles dans l\'explorateur. Afficher plus Tester les sites Web automatiquement Erreur diff --git a/news-media-scan/hi/strings.xml b/news-media-scan/hi/strings.xml index dba76f5..2d6e173 100644 --- a/news-media-scan/hi/strings.xml +++ b/news-media-scan/hi/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically त्रुटि diff --git a/news-media-scan/id/strings.xml b/news-media-scan/id/strings.xml index 5272806..ab67761 100644 --- a/news-media-scan/id/strings.xml +++ b/news-media-scan/id/strings.xml @@ -543,7 +543,7 @@ Copot Tautan Tinjau Pembaruan Revisi sebelumnya - Anda dapat memasang kembali tautan ini hanya dari tautan asli yang dikirim oleh pembuatnya. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. Lihat Lebih Lanjut Tes situs web secara otomatis Galat diff --git a/news-media-scan/pl/strings.xml b/news-media-scan/pl/strings.xml index 994c827..430c704 100644 --- a/news-media-scan/pl/strings.xml +++ b/news-media-scan/pl/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Błąd diff --git a/news-media-scan/pt_BR/strings.xml b/news-media-scan/pt_BR/strings.xml index 1de52cf..81e3fbe 100644 --- a/news-media-scan/pt_BR/strings.xml +++ b/news-media-scan/pt_BR/strings.xml @@ -10,7 +10,7 @@ Você estará testando sites de notícias que podem ser banidos no país onde você se encontra atualmente. Compreendo Saber mais - Questionário Pop + Questionário Rápido Verdadeiro Falso Voltar @@ -39,13 +39,13 @@ Vamos lá Alterar padrões P. Comando - Rodar + Executar N/A - Rodar + Executar Último teste: Estimado: Escolha sites - Rodando: + Executando: Tempo restante estimado: %1$s segundos Preparando o teste @@ -59,20 +59,20 @@ ~%1$ss Verifica o bloqueio de sites de mídia de notícias Verifique se os websites estão bloqueados usando o [Teste de Conectividade Web](https://ooni.org/nettest/web-connectivity/) da OONI.\n\nToda vez que você clica em Executar, você testa diferentes websites das listas de testes [globais](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e [específicas de cada país](https://github.com/citizenlab/test-lists/tree/master/lists) do Citizen Lab.\n\nPara testar os sites de sua escolha, toque no botão Escolher sites ou selecione categorias de sites através das configurações deste cartão.\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados em [Explorador OONI](https://explorer.ooni.org/world/) e [API OONI](https://api.ooni.io/). - Verifique se os websites estão bloqueados usando o [teste de conectividade Web da OONI](https://ooni.org/nettest/web-connectivity/).\n\nVocê testará os websites incluídos no Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e listas de teste [específicas por país](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/). + Verifique se os websites estão bloqueados usando o [teste de Conectividade Web](https://ooni.org/nettest/web-connectivity/) da OONI.\n\nVocê testará os websites incluídos no Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e listas de teste [específicas por país](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/) e na [OONI API](https://api.ooni.io/). Teste a velocidade e o desempenho de sua rede Meça a velocidade e o desempenho da sua rede usando o teste [NDT](https://ooni.org/nettest/ndt/).\n\nMeça o desempenho da streaming de vídeo usando o [DASH](https://ooni.org/nettest/dash/).\n\nEsses testes consomem dados dependendo da velocidade da sua rede.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/).\n\nIsenção de responsabilidade: Esses testes dependem de servidores de terceiros. Portanto, não podemos garantir que seu endereço IP não seja coletado. Ao executar os testes neste cartão, você\n\n- Medirá a velocidade e o desempenho da sua rede ([Teste de NDT](https://ooni.org/nettest/ndt/))\n- Avaliará o desempenho do streaming de vídeo ([Teste de DASH](https://ooni.org/nettest/dash/))\n- Verificará a presença de [tecnologias de caixa intermediária](https://ooni.org/support/glossary/#middlebox) na sua rede ([Linha de solicitação inválida de HTTP](https://ooni.org/nettest/http-invalid-request-line/) e [Teste de manipulação de campo de cabeçalho HTTP](https://ooni.org/nettest/http-header-field-manipulation/))\n\nEsses testes consomem dados de acordo com a velocidade da sua rede.\n\nOs resultados dos seus testes serão publicados no [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/).\n\n**Isenção de responsabilidade:** Os testes de [NDT](https://ooni.org/nettest/ndt/) e [DASH](https://ooni.org/nettest/dash/) são realizados com servidores de terceiros, fornecidos pela [Measurement Lab (M-Lab)](https://www.measurementlab.net/). Se você executar esses testes, o M-Lab coletará e publicará seu endereço IP (para fins de pesquisa), independentemente das configurações do seu OONI Probe. Saiba mais sobre a governança de dados da M-Lab através de sua [declaração de privacidade](https://www.measurementlab.net/privacy/). Detectar caixas intermediárias na sua rede - Os provedores de serviços de Internet geralmente utilizam aparelhos de rede (caixas intermediárias) para vários fins de rede (como o armazenamento em cache). Algumas vezes, essas caixas intermediárias são usadas para implementar censura e/ou vigilância na Internet.\n\nEncontre caixas intermediárias em sua rede usando a OONI [HTTP Linha de Solicitação Inválida](https://ooni.org/nettest/http-invalid-request-line/) e testes [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e no [OONI API](https://api.ooni.io/). + Os provedores de serviços de Internet geralmente utilizam aparelhos de rede (caixas intermediárias) para vários fins de rede (como o armazenamento em cache). Algumas vezes, essas caixas intermediárias são usadas para implementar censura e/ou vigilância na Internet.\n\nEncontre caixas intermediárias em sua rede usando a OONI [HTTP Linha de Solicitação Inválida](https://ooni.org/nettest/http-invalid-request-line/) e testes [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/).\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/). Teste o bloqueio de aplicativos de mensagens instantâneas - Verifique se [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), e [Signal](https://ooni.org/nettest/signal) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/world/) e no [OONI API](https://api.ooni.io/). + Verifique se [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), e [Signal](https://ooni.org/nettest/signal) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/). Testar o bloqueio de ferramentas de evasão à censura - Verifique se [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) ou [RiseupVPN](https://ooni.org/nettest/riseupvpn/) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/). + Verifique se [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) ou [RiseupVPN](https://ooni.org/nettest/riseupvpn/) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e na [OONI API](https://api.ooni.io/). Executar novos testes experimentais Execute os seguintes novos testes experimentais desenvolvidos pela equipe OONI:\n%1$s\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e [OONI API](https://api.ooni.io/). - Os testes a seguir serão executados apenas como parte de testes automatizados: - Testes Desabilitados + Os testes a seguir serão executados apenas como parte da execução automática: + Testes Desativados Gbit/s Mbit/s kbit/s @@ -278,7 +278,7 @@ Agora não Execute mesmo assim Desativar VPN - Sempre executar + Sempre Executar Não foi possível executar o teste. Por favor, verifique sua conexão com a Internet. Não foi possível baixar a lista de URL\'s. Por favor, tente novamente. Aguarde a conclusão dos testes em execução antes de iniciar um novo teste. @@ -308,7 +308,7 @@ Este teste falhou. Você deseja fazer um outro teste? Você está prestes a testar novamente os sites %1$s. Executar - Você tem certeza? + Você tem a certeza? Suas URLs não serão salvas quando você sair desta tela. Tem certeza de que deseja sair desta tela? Ativar carregamento manual? Essa configuração permite que você carregue manualmente as medidas não publicadas. @@ -366,7 +366,7 @@ Último teste automatizado: %1$s. Somente com Wi-Fi Somente durante o carregamento - Ao permitir testes automáticos, os testes OONI Probe serão executados automaticamente várias vezes por dia. Os resultados de seus testes serão publicados automaticamente no OONI Explorer: https://explorer.ooni.org/ \n\nImportante: Se você tiver uma VPN habilitada, a OONI Probe não executará testes automaticamente. Por favor, desligue sua VPN para testes automatizados da OONI Probe. Saiba mais: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + Ao permitir testes automáticos, os testes OONI Probe serão executados automaticamente várias vezes por dia. Os resultados de seus testes serão publicados automaticamente no OONI Explorer: https://explorer.ooni.org/ \n\nImportante: Se você tiver uma VPN habilitada, a OONI Probe não executará testes automaticamente. Por favor, desligue sua VPN para os testes automatizados da OONI Probe. Saiba mais: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn Compartilhando Publicar os resultados automaticamente Carregamento manual dos resultados @@ -379,7 +379,7 @@ Opções de teste O que você configura através das opções de teste acima (por ex. desativar o teste WhatsApp) será aplicado aos testes executados manualmente, bem como aos testes executados automaticamente (quando os testes automatizados são ativados). Teste de longa duração - Realizar testes de longa duração em primeiro plano? + Executar testes de longa duração em primeiro plano? Privacidade Enviar relatórios de erros Avançado @@ -387,7 +387,7 @@ Registros de depuração Ver logs recentes Configuração de idioma - Selecionar idioma + Selecionar Idioma Sempre usar \"domain fronting\" Proxy de back-end Proxy @@ -419,7 +419,7 @@ Escolha sites para testar URL Nenhuma URL inserida - Rodar + Executar Adicionar website Carregar de modelo Número de sites testados (0 significa todos) @@ -460,7 +460,7 @@ %1$s URL\'s Nome de teste Detalhes do teste - Executat + Executar Desatualizado Você precisa de uma versão mais recente do OONI Probe para executar este teste. Atualizar @@ -469,7 +469,7 @@ O link OONI Run está malformado ou seu aplicativo está desatualizado. Você testará uma amostra aleatória de sites. Por favor, aguarde a execução do teste terminar antes de clicar em um link OONI Run. - Leia mais > + Ler mais > Ler menos > Drogas e Álcool Religião @@ -533,18 +533,18 @@ Conteúdo benigno ou inócuo usado para controle Organizações intergovernamentais, incluindo as Nações Unidas Sites que ainda não foram categorizados - Não pergunte novamente - Ativar notificações de progresso do teste - Gostaria de ativar as notificações sobre o progresso do teste do OONI Probe e exibir os testes em execução na gaveta de notificações? - Carregamento de link + Não perguntar novamente + Ativar notificações de progresso dos testes + Gostaria de ativar as notificações sobre o progresso dos testes do OONI Probe e exibir os testes em execução na gaveta de notificações? + Carregando Link Erro Instalação do link cancelada Criado por %s em %s\n\n%s - Link de desinstalação - Revisar atualizações + Desinstalar Link + Revisar Atualizações Revisões anteriores - Você poderá instalar este link novamente apenas a partir do link original enviado pelo criador. - Ver mais + Só poderá voltar a instalar este link novamente a partir do link original enviado pelo criador. As medições deste link serão excluídas, mas serão acessíveis através do explorador. + Ver Mais Testar sites automaticamente Erro Testes OONI @@ -552,38 +552,38 @@ Execução concluída. Toque para ver os resultados. EXPIRADO ATUALIZADO - Instale o novo link + Instale o novo Link Autor: - Testar configurações + Configurações de Testes Instalar atualizações automaticamente Executar testes automaticamente Link instalado - Link de instalação + Instalar Link Instalação do link cancelada ATUALIZAÇÕES Teste %s URLs - URLs de teste - Atualização de link + Testar URLs + Atualização de Link Link(s) atualizado(s) - Atualização de link (%1$s de %2$s) + Atualização de Link (%1$s de %2$s) ATUALIZAR E CONCLUIR (%1$s de %2$s) ATUALIZAÇÃO (%1$s de %2$s) Atualizar Executar testes - Executar testes - Selecione o teste para executar + Executar Testes + Selecione o teste a executar Executar %s teste(s) - Selecione os testes a serem executados + Selecione os testes a executar Selecione todos os testes Desmarcar todos os testes - Carregamento de link - Carregamento de atualizações de link - Atualizações de link prontas + Carregando Link + Carregando atualizações dos links + Atualizações dos links prontas Revisar - %s Entradas + %s entradas Voltar - Refrescar - Colapso + Atualizar + Colapsar Expandir %1$satrás %1$d minuto @@ -608,32 +608,32 @@ Resposta correta Resposta incorreta Última atualização%1$s - Rodar %1$dteste - Rodar%1$dtestes + Executar %1$d teste + Executar %1$d testes URL sem suporte Medição - %1$dmedições + %1$dmedição %1$dmedições Falhou OK Anomalia - Todos os tipos - Todas as fontes + Todos os Tipos + Todas as Fontes Somente os últimos%1$dresultados são mostrados Subindo resultados pendentes %1$s Logs - Compartilhar logs - Erro de compartilhamento de logs - Filtro de logs + Compartilhar Logs + Erro ao compartilhar logs + Filtrar Logs Vá para Configurações > Geral > VPN e desconecte da sua VPN. - Ignorar após esta quantidade de falhas ao carregar + Saltar após esta quantidade de resultados com falha ao subir Resultados são automaticamente subidos para o explorador do OONI. - Limitar a duração de testes de websites - Duração Máxima do teste de duração de websites - Testes rodarão no plano de fundo + Limitar a duração de testes de Websites + Duração máxima do teste de Websites + Testes serão executados em segundo plano Somente para execuções manuais Testando - Execução manual - Execução automática + Execução Manual + Execução Automática VPN diff --git a/news-media-scan/ro/strings.xml b/news-media-scan/ro/strings.xml index 145ceaa..2e3f7dc 100644 --- a/news-media-scan/ro/strings.xml +++ b/news-media-scan/ro/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Eroare diff --git a/news-media-scan/ru/strings.xml b/news-media-scan/ru/strings.xml index 16e3bf2..7cad83c 100644 --- a/news-media-scan/ru/strings.xml +++ b/news-media-scan/ru/strings.xml @@ -543,7 +543,7 @@ Удалить ссылку Просмотреть обновления Предыдущие изменения - Вы сможете снова установить эту ссылку только с помощью оргинальной ссылки, которую вы получили от создателя. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. Узнать больше Тестировать сайты автоматически Ошибка diff --git a/news-media-scan/sq/strings.xml b/news-media-scan/sq/strings.xml index b75c529..40c8f6b 100644 --- a/news-media-scan/sq/strings.xml +++ b/news-media-scan/sq/strings.xml @@ -543,7 +543,7 @@ Uninstall Link Review Updates Previous revisions - You will be able to install this link again only from the original link sent by the creator. + You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. See More Test websites automatically Gabim diff --git a/news-media-scan/tr/strings.xml b/news-media-scan/tr/strings.xml index cbb4c1f..2417cd1 100644 --- a/news-media-scan/tr/strings.xml +++ b/news-media-scan/tr/strings.xml @@ -543,7 +543,7 @@ Kaldırma bağlantısı Güncellemeleri değerlendirin Önceki değişiklikler - Bu bağlantıyı yalnızca geliştiricisinin gönderdiği özgün bağlantıdan yeniden kurabilirsiniz. + Bu bağlantıyı yalnızca geliştiricisinin gönderdiği özgün bağlantıdan yeniden kurabilirsiniz. Bu bağlantıdaki ölçümler silinecek, ancak Explorer üzerinden erişilebilecek. Ayrıntıları görüntüle Siteler otomatik olarak sınansın Hata diff --git a/probe-mobile/de/Localizable.strings b/probe-mobile/de/Localizable.strings index 3d373b8..5996ffe 100644 --- a/probe-mobile/de/Localizable.strings +++ b/probe-mobile/de/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Link deinstallieren"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Überprüfung der Aktualisierungen"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Frühere Überarbeitungen"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "Du kannst diesen Link nur über den Original-Link installieren, den der Ersteller geschickt hat. Die Messungen über diesen Link werden gelöscht, sind aber über den Explorer weiterhin zugänglich."; "Dashboard.Runv2.Overview.SeeMore" = "Weitere Informationen"; "Dashboard.Runv2.Overview.TestWebsites" = "Websites automatisch testen"; "Dashboard.RunV2.ManualUpdate.Error" = "Fehler"; diff --git a/probe-mobile/de/strings.json b/probe-mobile/de/strings.json index f66c3ac..db01d5e 100644 --- a/probe-mobile/de/strings.json +++ b/probe-mobile/de/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Link deinstallieren", "Dashboard.Runv2.Overview.ReviewUpdates": "Überprüfung der Aktualisierungen", "Dashboard.Runv2.Overview.PreviousRevisions": "Frühere Überarbeitungen", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "Du kannst diesen Link nur über den Original-Link installieren, den der Ersteller geschickt hat. Die Messungen über diesen Link werden gelöscht, sind aber über den Explorer weiterhin zugänglich.", "Dashboard.Runv2.Overview.SeeMore": "Weitere Informationen", "Dashboard.Runv2.Overview.TestWebsites": "Websites automatisch testen", "Dashboard.RunV2.ManualUpdate.Error": "Fehler", diff --git a/probe-mobile/de/strings.xml b/probe-mobile/de/strings.xml index d2ac1f8..0a4a1be 100644 --- a/probe-mobile/de/strings.xml +++ b/probe-mobile/de/strings.xml @@ -543,7 +543,7 @@ Link deinstallieren Überprüfung der Aktualisierungen Frühere Überarbeitungen - You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. + Du kannst diesen Link nur über den Original-Link installieren, den der Ersteller geschickt hat. Die Messungen über diesen Link werden gelöscht, sind aber über den Explorer weiterhin zugänglich. Weitere Informationen Websites automatisch testen Fehler diff --git a/probe-mobile/fr/Localizable.strings b/probe-mobile/fr/Localizable.strings index d0d4f97..37f181d 100644 --- a/probe-mobile/fr/Localizable.strings +++ b/probe-mobile/fr/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Désinstaller le lien"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Mise à jour des révisions"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Révisions précédentes"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "Vous ne pourrez réinstaller ce lien qu’à partir du lien original envoyé par la personne qui l’a créé. Les mesures de ce lien seront supprimées, mais seront accessibles dans l'explorateur."; "Dashboard.Runv2.Overview.SeeMore" = "Afficher plus"; "Dashboard.Runv2.Overview.TestWebsites" = "Tester les sites Web automatiquement"; "Dashboard.RunV2.ManualUpdate.Error" = "Erreur"; diff --git a/probe-mobile/fr/strings.json b/probe-mobile/fr/strings.json index b4939b1..f279101 100644 --- a/probe-mobile/fr/strings.json +++ b/probe-mobile/fr/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Désinstaller le lien", "Dashboard.Runv2.Overview.ReviewUpdates": "Mise à jour des révisions", "Dashboard.Runv2.Overview.PreviousRevisions": "Révisions précédentes", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "Vous ne pourrez réinstaller ce lien qu’à partir du lien original envoyé par la personne qui l’a créé. Les mesures de ce lien seront supprimées, mais seront accessibles dans l'explorateur.", "Dashboard.Runv2.Overview.SeeMore": "Afficher plus", "Dashboard.Runv2.Overview.TestWebsites": "Tester les sites Web automatiquement", "Dashboard.RunV2.ManualUpdate.Error": "Erreur", diff --git a/probe-mobile/fr/strings.xml b/probe-mobile/fr/strings.xml index a942ea4..2a6b4c6 100644 --- a/probe-mobile/fr/strings.xml +++ b/probe-mobile/fr/strings.xml @@ -543,7 +543,7 @@ Désinstaller le lien Mise à jour des révisions Révisions précédentes - You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. + Vous ne pourrez réinstaller ce lien qu’à partir du lien original envoyé par la personne qui l’a créé. Les mesures de ce lien seront supprimées, mais seront accessibles dans l\'explorateur. Afficher plus Tester les sites Web automatiquement Erreur diff --git a/probe-mobile/pt_BR/Localizable.strings b/probe-mobile/pt_BR/Localizable.strings index a27dbc5..65f074f 100644 --- a/probe-mobile/pt_BR/Localizable.strings +++ b/probe-mobile/pt_BR/Localizable.strings @@ -8,7 +8,7 @@ "Onboarding.ThingsToKnow.Bullet.3" = "Você pode testar sites proibidos (mas pode escolher quais sites testar)."; "Onboarding.ThingsToKnow.Button" = "Compreendo"; "Onboarding.ThingsToKnow.LearnMore" = "Saber mais"; -"Onboarding.PopQuiz.Title" = "Questionário Pop"; +"Onboarding.PopQuiz.Title" = "Questionário Rápido"; "Onboarding.PopQuiz.True" = "Verdadeiro"; "Onboarding.PopQuiz.False" = "Falso"; "Onboarding.PopQuiz.Wrong.Button.Back" = "Voltar"; @@ -37,13 +37,13 @@ "Onboarding.DefaultSettings.Button.Go" = "Vamos lá"; "Onboarding.DefaultSettings.Button.Change" = "Alterar padrões"; "Dashboard.Tab.Label" = "P. Comando"; -"Dashboard.Card.Run" = "Rodar"; +"Dashboard.Card.Run" = "Executar"; "Dashboard.Overview.LastRun.Never" = "N/A"; -"Dashboard.Overview.Run" = "Rodar"; +"Dashboard.Overview.Run" = "Executar"; "Dashboard.Overview.LatestTest" = "Último teste:"; "Dashboard.Overview.Estimated" = "Estimado:"; "Dashboard.Overview.ChooseWebsites" = "Escolha sites"; -"Dashboard.Running.Running" = "Rodando:"; +"Dashboard.Running.Running" = "Executando:"; "Dashboard.Running.EstimatedTimeLeft" = "Tempo restante estimado:"; "Dashboard.Running.Seconds" = "%@ segundos"; "Dashboard.Running.PreparingTest" = "Preparando o teste"; @@ -57,20 +57,20 @@ "Dashboard.Card.Seconds" = "~%@s"; "Dashboard.Websites.Card.Description" = "Teste o bloqueio de sites"; "Dashboard.Websites.Overview.Paragraph" = "Verifique se os websites estão bloqueados usando o [Teste de Conectividade Web](https://ooni.org/nettest/web-connectivity/) da OONI.\n\nToda vez que você clica em Executar, você testa diferentes websites das listas de testes [globais](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e [específicas de cada país](https://github.com/citizenlab/test-lists/tree/master/lists) do Citizen Lab.\n\nPara testar os sites de sua escolha, toque no botão Escolher sites ou selecione categorias de sites através das configurações deste cartão.\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados em [Explorador OONI](https://explorer.ooni.org/world/) e [API OONI](https://api.ooni.io/)."; -"Dashboard.Websites.Overview.Paragraph.Desktop" = "Verifique se os websites estão bloqueados usando o [teste de conectividade Web da OONI](https://ooni.org/nettest/web-connectivity/).\n\nVocê testará os websites incluídos no Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e listas de teste [específicas por país](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/)."; +"Dashboard.Websites.Overview.Paragraph.Desktop" = "Verifique se os websites estão bloqueados usando o [teste de Conectividade Web](https://ooni.org/nettest/web-connectivity/) da OONI.\n\nVocê testará os websites incluídos no Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e listas de teste [específicas por país](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/) e na [OONI API](https://api.ooni.io/)."; "Dashboard.Performance.Card.Description" = "Teste a velocidade e o desempenho de sua rede"; "Dashboard.Performance.Overview.Paragraph" = "Meça a velocidade e o desempenho da sua rede usando o teste [NDT](https://ooni.org/nettest/ndt/).\n\nMeça o desempenho da streaming de vídeo usando o [DASH](https://ooni.org/nettest/dash/).\n\nEsses testes consomem dados dependendo da velocidade da sua rede.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/).\n\nIsenção de responsabilidade: Esses testes dependem de servidores de terceiros. Portanto, não podemos garantir que seu endereço IP não seja coletado."; "Dashboard.Performance.Overview.Paragraph.Updated" = "Ao executar os testes neste cartão, você\n\n- Medirá a velocidade e o desempenho da sua rede ([Teste de NDT](https://ooni.org/nettest/ndt/))\n- Avaliará o desempenho do streaming de vídeo ([Teste de DASH](https://ooni.org/nettest/dash/))\n- Verificará a presença de [tecnologias de caixa intermediária](https://ooni.org/support/glossary/#middlebox) na sua rede ([Linha de solicitação inválida de HTTP](https://ooni.org/nettest/http-invalid-request-line/) e [Teste de manipulação de campo de cabeçalho HTTP](https://ooni.org/nettest/http-header-field-manipulation/))\n\nEsses testes consomem dados de acordo com a velocidade da sua rede.\n\nOs resultados dos seus testes serão publicados no [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/).\n\n**Isenção de responsabilidade:** Os testes de [NDT](https://ooni.org/nettest/ndt/) e [DASH](https://ooni.org/nettest/dash/) são realizados com servidores de terceiros, fornecidos pela [Measurement Lab (M-Lab)](https://www.measurementlab.net/). Se você executar esses testes, o M-Lab coletará e publicará seu endereço IP (para fins de pesquisa), independentemente das configurações do seu OONI Probe. Saiba mais sobre a governança de dados da M-Lab através de sua [declaração de privacidade](https://www.measurementlab.net/privacy/)."; "Dashboard.Middleboxes.Card.Description" = "Detectar caixas intermediárias na sua rede"; -"Dashboard.Middleboxes.Overview.Paragraph" = "Os provedores de serviços de Internet geralmente utilizam aparelhos de rede (caixas intermediárias) para vários fins de rede (como o armazenamento em cache). Algumas vezes, essas caixas intermediárias são usadas para implementar censura e/ou vigilância na Internet.\n\nEncontre caixas intermediárias em sua rede usando a OONI [HTTP Linha de Solicitação Inválida](https://ooni.org/nettest/http-invalid-request-line/) e testes [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e no [OONI API](https://api.ooni.io/)."; +"Dashboard.Middleboxes.Overview.Paragraph" = "Os provedores de serviços de Internet geralmente utilizam aparelhos de rede (caixas intermediárias) para vários fins de rede (como o armazenamento em cache). Algumas vezes, essas caixas intermediárias são usadas para implementar censura e/ou vigilância na Internet.\n\nEncontre caixas intermediárias em sua rede usando a OONI [HTTP Linha de Solicitação Inválida](https://ooni.org/nettest/http-invalid-request-line/) e testes [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/).\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/)."; "Dashboard.InstantMessaging.Card.Description" = "Teste o bloqueio de aplicativos de mensagens instantâneas"; -"Dashboard.InstantMessaging.Overview.Paragraph" = "Verifique se [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), e [Signal](https://ooni.org/nettest/signal) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/world/) e no [OONI API](https://api.ooni.io/)."; +"Dashboard.InstantMessaging.Overview.Paragraph" = "Verifique se [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), e [Signal](https://ooni.org/nettest/signal) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/)."; "Dashboard.Circumvention.Card.Description" = "Testar o bloqueio de ferramentas de evasão à censura"; -"Dashboard.Circumvention.Overview.Paragraph" = "Verifique se [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) ou [RiseupVPN](https://ooni.org/nettest/riseupvpn/) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/)."; +"Dashboard.Circumvention.Overview.Paragraph" = "Verifique se [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) ou [RiseupVPN](https://ooni.org/nettest/riseupvpn/) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e na [OONI API](https://api.ooni.io/)."; "Dashboard.Experimental.Card.Description" = "Executar novos testes experimentais"; "Dashboard.Experimental.Overview.Paragraph" = "Execute os seguintes novos testes experimentais desenvolvidos pela equipe OONI:\n%@\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e [OONI API](https://api.ooni.io/)."; -"Dashboard.Experimental.Overview.Paragraph.AutomatedTesting" = "Os testes a seguir serão executados apenas como parte de testes automatizados:"; -"Dashboard.DisabledTests.Label" = "Testes Desabilitados"; +"Dashboard.Experimental.Overview.Paragraph.AutomatedTesting" = "Os testes a seguir serão executados apenas como parte da execução automática:"; +"Dashboard.DisabledTests.Label" = "Testes Desativados"; "TestResults.Gbps" = "Gbit/s"; "TestResults.Mbps" = "Mbit/s"; "TestResults.Kbps" = "kbit/s"; @@ -276,7 +276,7 @@ "Modal.NotNow" = "Agora não"; "Modal.RunAnyway" = "Execute mesmo assim"; "Modal.DisableVPN" = "Desativar VPN"; -"Modal.AlwaysRun" = "Sempre executar"; +"Modal.AlwaysRun" = "Sempre Executar"; "Modal.Error.NoInternet" = "Não foi possível executar o teste. Por favor, verifique sua conexão com a Internet."; "Modal.Error.CantDownloadURLs" = "Não foi possível baixar a lista de URL's. Por favor, tente novamente."; "Modal.Error.TestAlreadyRunning" = "Aguarde a conclusão dos testes em execução antes de iniciar um novo teste."; @@ -306,7 +306,7 @@ "Modal.ReRun.Paragraph" = "Este teste falhou. Você deseja fazer um outro teste?"; "Modal.ReRun.Websites.Title" = "Você está prestes a testar novamente os sites %@."; "Modal.ReRun.Websites.Run" = "Executar"; -"Modal.CustomURL.Title.NotSaved" = "Você tem certeza?"; +"Modal.CustomURL.Title.NotSaved" = "Você tem a certeza?"; "Modal.CustomURL.NotSaved" = "Suas URLs não serão salvas quando você sair desta tela. Tem certeza de que deseja sair desta tela?"; "Modal.ManualUpload.Title" = "Ativar carregamento manual?"; "Modal.ManualUpload.Paragraph" = "Essa configuração permite que você carregue manualmente as medidas não publicadas."; @@ -364,7 +364,7 @@ "Settings.AutomatedTesting.RunAutomatically.DateLast" = "Último teste automatizado: %@."; "Settings.AutomatedTesting.RunAutomatically.WiFiOnly" = "Somente com Wi-Fi"; "Settings.AutomatedTesting.RunAutomatically.ChargingOnly" = "Somente durante o carregamento"; -"Settings.AutomatedTesting.RunAutomatically.Footer" = "Ao permitir testes automáticos, os testes OONI Probe serão executados automaticamente várias vezes por dia. Os resultados de seus testes serão publicados automaticamente no OONI Explorer: https://explorer.ooni.org/ \n\nImportante: Se você tiver uma VPN habilitada, a OONI Probe não executará testes automaticamente. Por favor, desligue sua VPN para testes automatizados da OONI Probe. Saiba mais: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn"; +"Settings.AutomatedTesting.RunAutomatically.Footer" = "Ao permitir testes automáticos, os testes OONI Probe serão executados automaticamente várias vezes por dia. Os resultados de seus testes serão publicados automaticamente no OONI Explorer: https://explorer.ooni.org/ \n\nImportante: Se você tiver uma VPN habilitada, a OONI Probe não executará testes automaticamente. Por favor, desligue sua VPN para os testes automatizados da OONI Probe. Saiba mais: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn"; "Settings.Sharing.Label" = "Compartilhando"; "Settings.Sharing.UploadResults" = "Publicar os resultados automaticamente"; "Settings.Sharing.UploadResultsManually" = "Carregamento manual dos resultados"; @@ -377,7 +377,7 @@ "Settings.TestOptions.Label" = "Opções de teste"; "Settings.TestOptions.Footer" = "O que você configura através das opções de teste acima (por ex. desativar o teste WhatsApp) será aplicado aos testes executados manualmente, bem como aos testes executados automaticamente (quando os testes automatizados são ativados)."; "Settings.TestOptions.LongRunningTest" = "Teste de longa duração"; -"Settings.TestOptions.RunLongRunningTests" = "Realizar testes de longa duração em primeiro plano?"; +"Settings.TestOptions.RunLongRunningTests" = "Executar testes de longa duração em primeiro plano?"; "Settings.Privacy.Label" = "Privacidade"; "Settings.Privacy.SendCrashReports" = "Enviar relatórios de erros"; "Settings.Advanced.Label" = "Avançado"; @@ -385,7 +385,7 @@ "Settings.Advanced.DebugLogs" = "Registros de depuração"; "Settings.Advanced.RecentLogs" = "Ver logs recentes"; "Settings.Advanced.LanguageSettings.Title" = "Configuração de idioma"; -"Settings.Advanced.LanguageSettings.PopUp" = "Selecionar idioma"; +"Settings.Advanced.LanguageSettings.PopUp" = "Selecionar Idioma"; "Settings.Advanced.UseDomainFronting" = "Sempre usar \"domain fronting\""; "Settings.Proxy.Label" = "Proxy de back-end do OONI"; "Settings.Proxy.Enabled" = "Proxy"; @@ -417,7 +417,7 @@ "Settings.Websites.CustomURL.Title" = "Escolha sites para testar"; "Settings.Websites.CustomURL.URL" = "URL"; "Settings.Websites.CustomURL.NoURLEntered" = "Nenhuma URL inserida"; -"Settings.Websites.CustomURL.Run" = "Rodar"; +"Settings.Websites.CustomURL.Run" = "Executar"; "Settings.Websites.CustomURL.Add" = "Adicionar website"; "Settings.Websites.CustomURL.LoadFromTemplate" = "Carregar de modelo"; "Settings.Websites.TestCount" = "Número de sites testados (0 significa todos)"; @@ -458,7 +458,7 @@ "OONIRun.URLs" = "%@ URL's"; "OONIRun.TestName" = "Nome de teste"; "OONIRun.TestDetails" = "Detalhes do teste"; -"OONIRun.Run" = "Executat"; +"OONIRun.Run" = "Executar"; "OONIRun.OONIProbeOutOfDate" = "Desatualizado"; "OONIRun.OONIProbeNewerVersion" = "Você precisa de uma versão mais recente do OONI Probe para executar este teste."; "OONIRun.Update" = "Atualizar"; @@ -467,7 +467,7 @@ "OONIRun.InvalidParameter.Msg" = "O link OONI Run está malformado ou seu aplicativo está desatualizado."; "OONIRun.RandomSamplingOfURLs" = "Você testará uma amostra aleatória de sites."; "OONIRun.TestRunningError" = "Por favor, aguarde a execução do teste terminar antes de clicar em um link OONI Run."; -"OONIRun.ReadMore" = "Leia mais >"; +"OONIRun.ReadMore" = "Ler mais >"; "OONIRun.ReadLess" = "Ler menos >"; "CategoryCode.ALDR.Name" = "Drogas e Álcool"; "CategoryCode.REL.Name" = "Religião"; @@ -531,18 +531,18 @@ "CategoryCode.CTRL.Description" = "Conteúdo benigno ou inócuo usado para controle"; "CategoryCode.IGO.Description" = "Organizações intergovernamentais, incluindo as Nações Unidas"; "CategoryCode.MISC.Description" = "Sites que ainda não foram categorizados"; -"Prompt.DontAskAgain" = "Não pergunte novamente"; -"Prompt.EnableTestProgressNotifications.Title" = "Ativar notificações de progresso do teste"; -"Prompt.EnableTestProgressNotifications.Paragraph" = "Gostaria de ativar as notificações sobre o progresso do teste do OONI Probe e exibir os testes em execução na gaveta de notificações?"; -"LoadingScreen.Runv2.Message" = "Carregamento de link"; +"Prompt.DontAskAgain" = "Não perguntar novamente"; +"Prompt.EnableTestProgressNotifications.Title" = "Ativar notificações de progresso dos testes"; +"Prompt.EnableTestProgressNotifications.Paragraph" = "Gostaria de ativar as notificações sobre o progresso dos testes do OONI Probe e exibir os testes em execução na gaveta de notificações?"; +"LoadingScreen.Runv2.Message" = "Carregando Link"; "LoadingScreen.Runv2.Failure" = "Erro"; "LoadingScreen.Runv2.Canceled" = "Instalação do link cancelada"; "Dashboard.Runv2.Overview.Description" = "Criado por %s em %s\n\n%s"; -"Dashboard.Runv2.Overview.UninstallLink" = "Link de desinstalação"; -"Dashboard.Runv2.Overview.ReviewUpdates" = "Revisar atualizações"; +"Dashboard.Runv2.Overview.UninstallLink" = "Desinstalar Link"; +"Dashboard.Runv2.Overview.ReviewUpdates" = "Revisar Atualizações"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Revisões anteriores"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; -"Dashboard.Runv2.Overview.SeeMore" = "Ver mais"; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "Só poderá voltar a instalar este link novamente a partir do link original enviado pelo criador. As medições deste link serão excluídas, mas serão acessíveis através do explorador."; +"Dashboard.Runv2.Overview.SeeMore" = "Ver Mais"; "Dashboard.Runv2.Overview.TestWebsites" = "Testar sites automaticamente"; "Dashboard.RunV2.ManualUpdate.Error" = "Erro"; "Dashboard.RunV2.Ooni.Title" = "Testes OONI"; @@ -550,38 +550,38 @@ "Dashboard.RunV2.RunFinished" = "Execução concluída. Toque para ver os resultados."; "Dashboard.RunV2.ExpiredTag" = "EXPIRADO"; "Dashboard.RunV2.UpdatedTag" = "ATUALIZADO"; -"AddDescriptor.Title" = "Instale o novo link"; +"AddDescriptor.Title" = "Instale o novo Link"; "AddDescriptor.Author" = "Autor:"; -"AddDescriptor.Settings" = "Testar configurações"; +"AddDescriptor.Settings" = "Configurações de Testes"; "AddDescriptor.AutoUpdate" = "Instalar atualizações automaticamente"; "AddDescriptor.AutoRun" = "Executar testes automaticamente"; "AddDescriptor.Toasts.Installed" = "Link instalado"; -"AddDescriptor.Action" = "Link de instalação"; +"AddDescriptor.Action" = "Instalar Link"; "AddDescriptor.Toasts.Canceled" = "Instalação do link cancelada"; "DescriptorUpdate.Updates" = "ATUALIZAÇÕES"; "CustomWebsites.Fab.Text" = "Teste %s URLs"; -"CustomWebsites.Fab.Default" = "URLs de teste"; -"Dashboard.ReviewDescriptor.Title" = "Atualização de link"; +"CustomWebsites.Fab.Default" = "Testar URLs"; +"Dashboard.ReviewDescriptor.Title" = "Atualização de Link"; "Dashboard.ReviewDescriptor.Success" = "Link(s) atualizado(s)"; -"Dashboard.ReviewDescriptor.Label" = "Atualização de link (%1$s de %2$s)"; +"Dashboard.ReviewDescriptor.Label" = "Atualização de Link (%1$s de %2$s)"; "Dashboard.ReviewDescriptor.Button.Last" = "ATUALIZAR E CONCLUIR (%1$s de %2$s)"; "Dashboard.ReviewDescriptor.Button.Default" = "ATUALIZAÇÃO (%1$s de %2$s)"; "Dashboard.ReviewDescriptor.Update" = "Atualizar"; "Dashboard.RunTests.Title" = "Executar testes"; -"Dashboard.RunTests.RunButton.Default" = "Executar testes"; -"Dashboard.RunTests.RunButton.Empty" = "Selecione o teste para executar"; +"Dashboard.RunTests.RunButton.Default" = "Executar Testes"; +"Dashboard.RunTests.RunButton.Empty" = "Selecione o teste a executar"; "Dashboard.RunTests.RunButton.Label" = "Executar %s teste(s)"; -"Dashboard.RunTests.Description" = "Selecione os testes a serem executados"; +"Dashboard.RunTests.Description" = "Selecione os testes a executar"; "Dashboard.RunTests.SelectAll" = "Selecione todos os testes"; "Dashboard.RunTests.SelectNone" = "Desmarcar todos os testes"; -"Dashboard.Progress.AddLink.Label" = "Carregamento de link"; -"Dashboard.Progress.UpdateLink.Label" = "Carregamento de atualizações de link"; -"Dashboard.Progress.ReviewLink.Label" = "Atualizações de link prontas"; +"Dashboard.Progress.AddLink.Label" = "Carregando Link"; +"Dashboard.Progress.UpdateLink.Label" = "Carregando atualizações dos links"; +"Dashboard.Progress.ReviewLink.Label" = "Atualizações dos links prontas"; "Dashboard.Progress.ReviewLink.Action" = "Revisar"; -"TestResults.TestCount" = "%s Entradas "; +"TestResults.TestCount" = "%s entradas "; "Common_Back" = "Voltar "; -"Common_Refresh" = "Refrescar"; -"Common_Collapse" = "Colapso"; +"Common_Refresh" = "Atualizar"; +"Common_Collapse" = "Colapsar"; "Common_Expand" = "Expandir"; "Common_Ago" = "%1$satrás"; "Common_Minutes_One" = "%1$d minuto"; @@ -606,31 +606,31 @@ "Onboarding_QuizAnswer_Correct" = "Resposta correta"; "Onboarding_QuizAnswer_Incorrect" = "Resposta incorreta"; "Dashboard_Runv2_Overview_LastUpdated" = "Última atualização%1$s"; -"Dashboard_RunTests_RunButton_Label_One" = "Rodar %1$dteste"; -"Dashboard_RunTests_RunButton_Label_Other" = "Rodar%1$dtestes"; +"Dashboard_RunTests_RunButton_Label_One" = "Executar %1$d teste"; +"Dashboard_RunTests_RunButton_Label_Other" = "Executar %1$d testes"; "AddDescriptor_Toasts_Unsupported_Url" = "URL sem suporte"; "Measurement_Title" = "Medição"; -"Measurements_Count_One" = "%1$dmedições"; +"Measurements_Count_One" = "%1$dmedição"; "Measurements_Count_Other" = "%1$dmedições"; "Measurements_Failed" = "Falhou"; "Measurements_Ok" = "OK"; "Measurements_Anomaly" = "Anomalia"; -"Results_TestType_All" = "Todos os tipos"; -"Results_TaskOrigin_All" = "Todas as fontes"; +"Results_TestType_All" = "Todos os Tipos"; +"Results_TaskOrigin_All" = "Todas as Fontes"; "Results_LimitedNotice" = "Somente os últimos%1$dresultados são mostrados"; "Results_UploadingMissing" = "Subindo resultados pendentes %1$s"; "Settings_Logs" = "Logs"; -"Settings_ShareLogs" = "Compartilhar logs"; -"Settings_ShareLogs_Error" = "Erro de compartilhamento de logs"; -"Settings_FilterLogs" = "Filtro de logs"; +"Settings_ShareLogs" = "Compartilhar Logs"; +"Settings_ShareLogs_Error" = "Erro ao compartilhar logs"; +"Settings_FilterLogs" = "Filtrar Logs"; "Settings_DisableVpnInstructions" = "Vá para Configurações > Geral > VPN e desconecte da sua VPN."; -"Settings_AutoTest_NotUploadedLimit" = "Ignorar após esta quantidade de falhas ao carregar"; +"Settings_AutoTest_NotUploadedLimit" = "Saltar após esta quantidade de resultados com falha ao subir"; "Settings_Sharing_UploadResults_Description" = "Resultados são automaticamente subidos para o explorador do OONI."; -"Settings_Websites_MaxRuntimeEnabled_New" = "Limitar a duração de testes de websites"; -"Settings_Websites_MaxRuntime_New" = "Duração Máxima do teste de duração de websites"; -"Settings_AutomatedTesting_RunAutomatically_Description" = "Testes rodarão no plano de fundo"; +"Settings_Websites_MaxRuntimeEnabled_New" = "Limitar a duração de testes de Websites"; +"Settings_Websites_MaxRuntime_New" = "Duração máxima do teste de Websites"; +"Settings_AutomatedTesting_RunAutomatically_Description" = "Testes serão executados em segundo plano"; "Settings_Websites_MaxRuntimeEnabled_Description" = "Somente para execuções manuais"; "Notification_ChannelName" = "Testando"; -"TaskOrigin_Manual" = "Execução manual"; -"TaskOrigin_AutoRun" = "Execução automática"; +"TaskOrigin_Manual" = "Execução Manual"; +"TaskOrigin_AutoRun" = "Execução Automática"; "NetworkType_Vpn" = "VPN"; diff --git a/probe-mobile/pt_BR/strings.json b/probe-mobile/pt_BR/strings.json index 76671d8..d650f11 100644 --- a/probe-mobile/pt_BR/strings.json +++ b/probe-mobile/pt_BR/strings.json @@ -9,7 +9,7 @@ "Onboarding.ThingsToKnow.Bullet.3": "Você pode testar sites proibidos (mas pode escolher quais sites testar).", "Onboarding.ThingsToKnow.Button": "Compreendo", "Onboarding.ThingsToKnow.LearnMore": "Saber mais", - "Onboarding.PopQuiz.Title": "Questionário Pop", + "Onboarding.PopQuiz.Title": "Questionário Rápido", "Onboarding.PopQuiz.True": "Verdadeiro", "Onboarding.PopQuiz.False": "Falso", "Onboarding.PopQuiz.Wrong.Button.Back": "Voltar", @@ -38,13 +38,13 @@ "Onboarding.DefaultSettings.Button.Go": "Vamos lá", "Onboarding.DefaultSettings.Button.Change": "Alterar padrões", "Dashboard.Tab.Label": "P. Comando", - "Dashboard.Card.Run": "Rodar", + "Dashboard.Card.Run": "Executar", "Dashboard.Overview.LastRun.Never": "N/A", - "Dashboard.Overview.Run": "Rodar", + "Dashboard.Overview.Run": "Executar", "Dashboard.Overview.LatestTest": "Último teste:", "Dashboard.Overview.Estimated": "Estimado:", "Dashboard.Overview.ChooseWebsites": "Escolha sites", - "Dashboard.Running.Running": "Rodando:", + "Dashboard.Running.Running": "Executando:", "Dashboard.Running.EstimatedTimeLeft": "Tempo restante estimado:", "Dashboard.Running.Seconds": "{seconds} segundos", "Dashboard.Running.PreparingTest": "Preparando o teste", @@ -58,20 +58,20 @@ "Dashboard.Card.Seconds": "~{seconds}s", "Dashboard.Websites.Card.Description": "Teste o bloqueio de sites", "Dashboard.Websites.Overview.Paragraph": "Verifique se os websites estão bloqueados usando o [Teste de Conectividade Web](https://ooni.org/nettest/web-connectivity/) da OONI.\n\nToda vez que você clica em Executar, você testa diferentes websites das listas de testes [globais](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e [específicas de cada país](https://github.com/citizenlab/test-lists/tree/master/lists) do Citizen Lab.\n\nPara testar os sites de sua escolha, toque no botão Escolher sites ou selecione categorias de sites através das configurações deste cartão.\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados em [Explorador OONI](https://explorer.ooni.org/world/) e [API OONI](https://api.ooni.io/).", - "Dashboard.Websites.Overview.Paragraph.Desktop": "Verifique se os websites estão bloqueados usando o [teste de conectividade Web da OONI](https://ooni.org/nettest/web-connectivity/).\n\nVocê testará os websites incluídos no Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e listas de teste [específicas por país](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/).", + "Dashboard.Websites.Overview.Paragraph.Desktop": "Verifique se os websites estão bloqueados usando o [teste de Conectividade Web](https://ooni.org/nettest/web-connectivity/) da OONI.\n\nVocê testará os websites incluídos no Citizen Lab's [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e listas de teste [específicas por país](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/) e na [OONI API](https://api.ooni.io/).", "Dashboard.Performance.Card.Description": "Teste a velocidade e o desempenho de sua rede", "Dashboard.Performance.Overview.Paragraph": "Meça a velocidade e o desempenho da sua rede usando o teste [NDT](https://ooni.org/nettest/ndt/).\n\nMeça o desempenho da streaming de vídeo usando o [DASH](https://ooni.org/nettest/dash/).\n\nEsses testes consomem dados dependendo da velocidade da sua rede.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/).\n\nIsenção de responsabilidade: Esses testes dependem de servidores de terceiros. Portanto, não podemos garantir que seu endereço IP não seja coletado.", "Dashboard.Performance.Overview.Paragraph.Updated": "Ao executar os testes neste cartão, você\n\n- Medirá a velocidade e o desempenho da sua rede ([Teste de NDT](https://ooni.org/nettest/ndt/))\n- Avaliará o desempenho do streaming de vídeo ([Teste de DASH](https://ooni.org/nettest/dash/))\n- Verificará a presença de [tecnologias de caixa intermediária](https://ooni.org/support/glossary/#middlebox) na sua rede ([Linha de solicitação inválida de HTTP](https://ooni.org/nettest/http-invalid-request-line/) e [Teste de manipulação de campo de cabeçalho HTTP](https://ooni.org/nettest/http-header-field-manipulation/))\n\nEsses testes consomem dados de acordo com a velocidade da sua rede.\n\nOs resultados dos seus testes serão publicados no [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/).\n\n**Isenção de responsabilidade:** Os testes de [NDT](https://ooni.org/nettest/ndt/) e [DASH](https://ooni.org/nettest/dash/) são realizados com servidores de terceiros, fornecidos pela [Measurement Lab (M-Lab)](https://www.measurementlab.net/). Se você executar esses testes, o M-Lab coletará e publicará seu endereço IP (para fins de pesquisa), independentemente das configurações do seu OONI Probe. Saiba mais sobre a governança de dados da M-Lab através de sua [declaração de privacidade](https://www.measurementlab.net/privacy/).", "Dashboard.Middleboxes.Card.Description": "Detectar caixas intermediárias na sua rede", - "Dashboard.Middleboxes.Overview.Paragraph": "Os provedores de serviços de Internet geralmente utilizam aparelhos de rede (caixas intermediárias) para vários fins de rede (como o armazenamento em cache). Algumas vezes, essas caixas intermediárias são usadas para implementar censura e/ou vigilância na Internet.\n\nEncontre caixas intermediárias em sua rede usando a OONI [HTTP Linha de Solicitação Inválida](https://ooni.org/nettest/http-invalid-request-line/) e testes [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e no [OONI API](https://api.ooni.io/).", + "Dashboard.Middleboxes.Overview.Paragraph": "Os provedores de serviços de Internet geralmente utilizam aparelhos de rede (caixas intermediárias) para vários fins de rede (como o armazenamento em cache). Algumas vezes, essas caixas intermediárias são usadas para implementar censura e/ou vigilância na Internet.\n\nEncontre caixas intermediárias em sua rede usando a OONI [HTTP Linha de Solicitação Inválida](https://ooni.org/nettest/http-invalid-request-line/) e testes [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/).\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/).", "Dashboard.InstantMessaging.Card.Description": "Teste o bloqueio de aplicativos de mensagens instantâneas", - "Dashboard.InstantMessaging.Overview.Paragraph": "Verifique se [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), e [Signal](https://ooni.org/nettest/signal) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/world/) e no [OONI API](https://api.ooni.io/).", + "Dashboard.InstantMessaging.Overview.Paragraph": "Verifique se [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), e [Signal](https://ooni.org/nettest/signal) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/).", "Dashboard.Circumvention.Card.Description": "Testar o bloqueio de ferramentas de evasão à censura", - "Dashboard.Circumvention.Overview.Paragraph": "Verifique se [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) ou [RiseupVPN](https://ooni.org/nettest/riseupvpn/) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/).", + "Dashboard.Circumvention.Overview.Paragraph": "Verifique se [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) ou [RiseupVPN](https://ooni.org/nettest/riseupvpn/) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e na [OONI API](https://api.ooni.io/).", "Dashboard.Experimental.Card.Description": "Executar novos testes experimentais", "Dashboard.Experimental.Overview.Paragraph": "Execute os seguintes novos testes experimentais desenvolvidos pela equipe OONI:\n{experimental_test_list}\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e [OONI API](https://api.ooni.io/).", - "Dashboard.Experimental.Overview.Paragraph.AutomatedTesting": "Os testes a seguir serão executados apenas como parte de testes automatizados:", - "Dashboard.DisabledTests.Label": "Testes Desabilitados", + "Dashboard.Experimental.Overview.Paragraph.AutomatedTesting": "Os testes a seguir serão executados apenas como parte da execução automática:", + "Dashboard.DisabledTests.Label": "Testes Desativados", "TestResults.Gbps": "Gbit/s", "TestResults.Mbps": "Mbit/s", "TestResults.Kbps": "kbit/s", @@ -277,7 +277,7 @@ "Modal.NotNow": "Agora não", "Modal.RunAnyway": "Execute mesmo assim", "Modal.DisableVPN": "Desativar VPN", - "Modal.AlwaysRun": "Sempre executar", + "Modal.AlwaysRun": "Sempre Executar", "Modal.Error.NoInternet": "Não foi possível executar o teste. Por favor, verifique sua conexão com a Internet.", "Modal.Error.CantDownloadURLs": "Não foi possível baixar a lista de URL's. Por favor, tente novamente.", "Modal.Error.TestAlreadyRunning": "Aguarde a conclusão dos testes em execução antes de iniciar um novo teste.", @@ -307,7 +307,7 @@ "Modal.ReRun.Paragraph": "Este teste falhou. Você deseja fazer um outro teste?", "Modal.ReRun.Websites.Title": "Você está prestes a testar novamente os sites {websitesNumber}.", "Modal.ReRun.Websites.Run": "Executar", - "Modal.CustomURL.Title.NotSaved": "Você tem certeza?", + "Modal.CustomURL.Title.NotSaved": "Você tem a certeza?", "Modal.CustomURL.NotSaved": "Suas URLs não serão salvas quando você sair desta tela. Tem certeza de que deseja sair desta tela?", "Modal.ManualUpload.Title": "Ativar carregamento manual?", "Modal.ManualUpload.Paragraph": "Essa configuração permite que você carregue manualmente as medidas não publicadas.", @@ -365,7 +365,7 @@ "Settings.AutomatedTesting.RunAutomatically.DateLast": "Último teste automatizado: {testDate}.", "Settings.AutomatedTesting.RunAutomatically.WiFiOnly": "Somente com Wi-Fi", "Settings.AutomatedTesting.RunAutomatically.ChargingOnly": "Somente durante o carregamento", - "Settings.AutomatedTesting.RunAutomatically.Footer": "Ao permitir testes automáticos, os testes OONI Probe serão executados automaticamente várias vezes por dia. Os resultados de seus testes serão publicados automaticamente no OONI Explorer: https://explorer.ooni.org/ \n\nImportante: Se você tiver uma VPN habilitada, a OONI Probe não executará testes automaticamente. Por favor, desligue sua VPN para testes automatizados da OONI Probe. Saiba mais: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn", + "Settings.AutomatedTesting.RunAutomatically.Footer": "Ao permitir testes automáticos, os testes OONI Probe serão executados automaticamente várias vezes por dia. Os resultados de seus testes serão publicados automaticamente no OONI Explorer: https://explorer.ooni.org/ \n\nImportante: Se você tiver uma VPN habilitada, a OONI Probe não executará testes automaticamente. Por favor, desligue sua VPN para os testes automatizados da OONI Probe. Saiba mais: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn", "Settings.Sharing.Label": "Compartilhando", "Settings.Sharing.UploadResults": "Publicar os resultados automaticamente", "Settings.Sharing.UploadResultsManually": "Carregamento manual dos resultados", @@ -378,7 +378,7 @@ "Settings.TestOptions.Label": "Opções de teste", "Settings.TestOptions.Footer": "O que você configura através das opções de teste acima (por ex. desativar o teste WhatsApp) será aplicado aos testes executados manualmente, bem como aos testes executados automaticamente (quando os testes automatizados são ativados).", "Settings.TestOptions.LongRunningTest": "Teste de longa duração", - "Settings.TestOptions.RunLongRunningTests": "Realizar testes de longa duração em primeiro plano?", + "Settings.TestOptions.RunLongRunningTests": "Executar testes de longa duração em primeiro plano?", "Settings.Privacy.Label": "Privacidade", "Settings.Privacy.SendCrashReports": "Enviar relatórios de erros", "Settings.Advanced.Label": "Avançado", @@ -386,7 +386,7 @@ "Settings.Advanced.DebugLogs": "Registros de depuração", "Settings.Advanced.RecentLogs": "Ver logs recentes", "Settings.Advanced.LanguageSettings.Title": "Configuração de idioma", - "Settings.Advanced.LanguageSettings.PopUp": "Selecionar idioma", + "Settings.Advanced.LanguageSettings.PopUp": "Selecionar Idioma", "Settings.Advanced.UseDomainFronting": "Sempre usar \"domain fronting\"", "Settings.Proxy.Label": "Proxy de back-end do OONI", "Settings.Proxy.Enabled": "Proxy", @@ -418,7 +418,7 @@ "Settings.Websites.CustomURL.Title": "Escolha sites para testar", "Settings.Websites.CustomURL.URL": "URL", "Settings.Websites.CustomURL.NoURLEntered": "Nenhuma URL inserida", - "Settings.Websites.CustomURL.Run": "Rodar", + "Settings.Websites.CustomURL.Run": "Executar", "Settings.Websites.CustomURL.Add": "Adicionar website", "Settings.Websites.CustomURL.LoadFromTemplate": "Carregar de modelo", "Settings.Websites.TestCount": "Número de sites testados (0 significa todos)", @@ -459,7 +459,7 @@ "OONIRun.URLs": "{Count} URL's", "OONIRun.TestName": "Nome de teste", "OONIRun.TestDetails": "Detalhes do teste", - "OONIRun.Run": "Executat", + "OONIRun.Run": "Executar", "OONIRun.OONIProbeOutOfDate": "Desatualizado", "OONIRun.OONIProbeNewerVersion": "Você precisa de uma versão mais recente do OONI Probe para executar este teste.", "OONIRun.Update": "Atualizar", @@ -468,7 +468,7 @@ "OONIRun.InvalidParameter.Msg": "O link OONI Run está malformado ou seu aplicativo está desatualizado.", "OONIRun.RandomSamplingOfURLs": "Você testará uma amostra aleatória de sites.", "OONIRun.TestRunningError": "Por favor, aguarde a execução do teste terminar antes de clicar em um link OONI Run.", - "OONIRun.ReadMore": "Leia mais >", + "OONIRun.ReadMore": "Ler mais >", "OONIRun.ReadLess": "Ler menos >", "CategoryCode.ALDR.Name": "Drogas e Álcool", "CategoryCode.REL.Name": "Religião", @@ -532,18 +532,18 @@ "CategoryCode.CTRL.Description": "Conteúdo benigno ou inócuo usado para controle", "CategoryCode.IGO.Description": "Organizações intergovernamentais, incluindo as Nações Unidas", "CategoryCode.MISC.Description": "Sites que ainda não foram categorizados", - "Prompt.DontAskAgain": "Não pergunte novamente", - "Prompt.EnableTestProgressNotifications.Title": "Ativar notificações de progresso do teste", - "Prompt.EnableTestProgressNotifications.Paragraph": "Gostaria de ativar as notificações sobre o progresso do teste do OONI Probe e exibir os testes em execução na gaveta de notificações?", - "LoadingScreen.Runv2.Message": "Carregamento de link", + "Prompt.DontAskAgain": "Não perguntar novamente", + "Prompt.EnableTestProgressNotifications.Title": "Ativar notificações de progresso dos testes", + "Prompt.EnableTestProgressNotifications.Paragraph": "Gostaria de ativar as notificações sobre o progresso dos testes do OONI Probe e exibir os testes em execução na gaveta de notificações?", + "LoadingScreen.Runv2.Message": "Carregando Link", "LoadingScreen.Runv2.Failure": "Erro", "LoadingScreen.Runv2.Canceled": "Instalação do link cancelada", "Dashboard.Runv2.Overview.Description": "Criado por %s em %s\\n\\n%s", - "Dashboard.Runv2.Overview.UninstallLink": "Link de desinstalação", - "Dashboard.Runv2.Overview.ReviewUpdates": "Revisar atualizações", + "Dashboard.Runv2.Overview.UninstallLink": "Desinstalar Link", + "Dashboard.Runv2.Overview.ReviewUpdates": "Revisar Atualizações", "Dashboard.Runv2.Overview.PreviousRevisions": "Revisões anteriores", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", - "Dashboard.Runv2.Overview.SeeMore": "Ver mais", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "Só poderá voltar a instalar este link novamente a partir do link original enviado pelo criador. As medições deste link serão excluídas, mas serão acessíveis através do explorador.", + "Dashboard.Runv2.Overview.SeeMore": "Ver Mais", "Dashboard.Runv2.Overview.TestWebsites": "Testar sites automaticamente", "Dashboard.RunV2.ManualUpdate.Error": "Erro", "Dashboard.RunV2.Ooni.Title": "Testes OONI", @@ -551,38 +551,38 @@ "Dashboard.RunV2.RunFinished": "Execução concluída. Toque para ver os resultados.", "Dashboard.RunV2.ExpiredTag": "EXPIRADO", "Dashboard.RunV2.UpdatedTag": "ATUALIZADO", - "AddDescriptor.Title": "Instale o novo link", + "AddDescriptor.Title": "Instale o novo Link", "AddDescriptor.Author": "Autor:", - "AddDescriptor.Settings": "Testar configurações", + "AddDescriptor.Settings": "Configurações de Testes", "AddDescriptor.AutoUpdate": "Instalar atualizações automaticamente", "AddDescriptor.AutoRun": "Executar testes automaticamente", "AddDescriptor.Toasts.Installed": "Link instalado", - "AddDescriptor.Action": "Link de instalação", + "AddDescriptor.Action": "Instalar Link", "AddDescriptor.Toasts.Canceled": "Instalação do link cancelada", "DescriptorUpdate.Updates": "ATUALIZAÇÕES", "CustomWebsites.Fab.Text": "Teste %s URLs", - "CustomWebsites.Fab.Default": "URLs de teste", - "Dashboard.ReviewDescriptor.Title": "Atualização de link", + "CustomWebsites.Fab.Default": "Testar URLs", + "Dashboard.ReviewDescriptor.Title": "Atualização de Link", "Dashboard.ReviewDescriptor.Success": "Link(s) atualizado(s)", - "Dashboard.ReviewDescriptor.Label": "Atualização de link (%1$s de %2$s)", + "Dashboard.ReviewDescriptor.Label": "Atualização de Link (%1$s de %2$s)", "Dashboard.ReviewDescriptor.Button.Last": "ATUALIZAR E CONCLUIR (%1$s de %2$s)", "Dashboard.ReviewDescriptor.Button.Default": "ATUALIZAÇÃO (%1$s de %2$s)", "Dashboard.ReviewDescriptor.Update": "Atualizar", "Dashboard.RunTests.Title": "Executar testes", - "Dashboard.RunTests.RunButton.Default": "Executar testes", - "Dashboard.RunTests.RunButton.Empty": "Selecione o teste para executar", + "Dashboard.RunTests.RunButton.Default": "Executar Testes", + "Dashboard.RunTests.RunButton.Empty": "Selecione o teste a executar", "Dashboard.RunTests.RunButton.Label": "Executar %s teste(s)", - "Dashboard.RunTests.Description": "Selecione os testes a serem executados", + "Dashboard.RunTests.Description": "Selecione os testes a executar", "Dashboard.RunTests.SelectAll": "Selecione todos os testes", "Dashboard.RunTests.SelectNone": "Desmarcar todos os testes", - "Dashboard.Progress.AddLink.Label": "Carregamento de link", - "Dashboard.Progress.UpdateLink.Label": "Carregamento de atualizações de link", - "Dashboard.Progress.ReviewLink.Label": "Atualizações de link prontas", + "Dashboard.Progress.AddLink.Label": "Carregando Link", + "Dashboard.Progress.UpdateLink.Label": "Carregando atualizações dos links", + "Dashboard.Progress.ReviewLink.Label": "Atualizações dos links prontas", "Dashboard.Progress.ReviewLink.Action": "Revisar", - "TestResults.TestCount": "%s Entradas ", + "TestResults.TestCount": "%s entradas ", "Common_Back": "Voltar ", - "Common_Refresh": "Refrescar", - "Common_Collapse": "Colapso", + "Common_Refresh": "Atualizar", + "Common_Collapse": "Colapsar", "Common_Expand": "Expandir", "Common_Ago": "%1$satrás", "Common_Minutes_One": "%1$d minuto", @@ -607,32 +607,32 @@ "Onboarding_QuizAnswer_Correct": "Resposta correta", "Onboarding_QuizAnswer_Incorrect": "Resposta incorreta", "Dashboard_Runv2_Overview_LastUpdated": "Última atualização%1$s", - "Dashboard_RunTests_RunButton_Label_One": "Rodar %1$dteste", - "Dashboard_RunTests_RunButton_Label_Other": "Rodar%1$dtestes", + "Dashboard_RunTests_RunButton_Label_One": "Executar %1$d teste", + "Dashboard_RunTests_RunButton_Label_Other": "Executar %1$d testes", "AddDescriptor_Toasts_Unsupported_Url": "URL sem suporte", "Measurement_Title": "Medição", - "Measurements_Count_One": "%1$dmedições", + "Measurements_Count_One": "%1$dmedição", "Measurements_Count_Other": "%1$dmedições", "Measurements_Failed": "Falhou", "Measurements_Ok": "OK", "Measurements_Anomaly": "Anomalia", - "Results_TestType_All": "Todos os tipos", - "Results_TaskOrigin_All": "Todas as fontes", + "Results_TestType_All": "Todos os Tipos", + "Results_TaskOrigin_All": "Todas as Fontes", "Results_LimitedNotice": "Somente os últimos%1$dresultados são mostrados", "Results_UploadingMissing": "Subindo resultados pendentes %1$s", "Settings_Logs": "Logs", - "Settings_ShareLogs": "Compartilhar logs", - "Settings_ShareLogs_Error": "Erro de compartilhamento de logs", - "Settings_FilterLogs": "Filtro de logs", + "Settings_ShareLogs": "Compartilhar Logs", + "Settings_ShareLogs_Error": "Erro ao compartilhar logs", + "Settings_FilterLogs": "Filtrar Logs", "Settings_DisableVpnInstructions": "Vá para Configurações > Geral > VPN e desconecte da sua VPN.", - "Settings_AutoTest_NotUploadedLimit": "Ignorar após esta quantidade de falhas ao carregar", + "Settings_AutoTest_NotUploadedLimit": "Saltar após esta quantidade de resultados com falha ao subir", "Settings_Sharing_UploadResults_Description": "Resultados são automaticamente subidos para o explorador do OONI.", - "Settings_Websites_MaxRuntimeEnabled_New": "Limitar a duração de testes de websites", - "Settings_Websites_MaxRuntime_New": "Duração Máxima do teste de duração de websites", - "Settings_AutomatedTesting_RunAutomatically_Description": "Testes rodarão no plano de fundo", + "Settings_Websites_MaxRuntimeEnabled_New": "Limitar a duração de testes de Websites", + "Settings_Websites_MaxRuntime_New": "Duração máxima do teste de Websites", + "Settings_AutomatedTesting_RunAutomatically_Description": "Testes serão executados em segundo plano", "Settings_Websites_MaxRuntimeEnabled_Description": "Somente para execuções manuais", "Notification_ChannelName": "Testando", - "TaskOrigin_Manual": "Execução manual", - "TaskOrigin_AutoRun": "Execução automática", + "TaskOrigin_Manual": "Execução Manual", + "TaskOrigin_AutoRun": "Execução Automática", "NetworkType_Vpn": "VPN" } \ No newline at end of file diff --git a/probe-mobile/pt_BR/strings.xml b/probe-mobile/pt_BR/strings.xml index 8b50e70..2bf2af8 100644 --- a/probe-mobile/pt_BR/strings.xml +++ b/probe-mobile/pt_BR/strings.xml @@ -10,7 +10,7 @@ Você pode testar sites proibidos (mas pode escolher quais sites testar). Compreendo Saber mais - Questionário Pop + Questionário Rápido Verdadeiro Falso Voltar @@ -39,13 +39,13 @@ Vamos lá Alterar padrões P. Comando - Rodar + Executar N/A - Rodar + Executar Último teste: Estimado: Escolha sites - Rodando: + Executando: Tempo restante estimado: %1$s segundos Preparando o teste @@ -59,20 +59,20 @@ ~%1$ss Teste o bloqueio de sites Verifique se os websites estão bloqueados usando o [Teste de Conectividade Web](https://ooni.org/nettest/web-connectivity/) da OONI.\n\nToda vez que você clica em Executar, você testa diferentes websites das listas de testes [globais](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e [específicas de cada país](https://github.com/citizenlab/test-lists/tree/master/lists) do Citizen Lab.\n\nPara testar os sites de sua escolha, toque no botão Escolher sites ou selecione categorias de sites através das configurações deste cartão.\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados em [Explorador OONI](https://explorer.ooni.org/world/) e [API OONI](https://api.ooni.io/). - Verifique se os websites estão bloqueados usando o [teste de conectividade Web da OONI](https://ooni.org/nettest/web-connectivity/).\n\nVocê testará os websites incluídos no Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e listas de teste [específicas por país](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/). + Verifique se os websites estão bloqueados usando o [teste de Conectividade Web](https://ooni.org/nettest/web-connectivity/) da OONI.\n\nVocê testará os websites incluídos no Citizen Lab\'s [global](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) e listas de teste [específicas por país](https://github.com/citizenlab/test-lists/tree/master/lists).\n\nEste teste mede se os sites são bloqueados por meio de manipulação de DNS, bloqueio TCP/IP ou por um proxy HTTP transparente.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/) e na [OONI API](https://api.ooni.io/). Teste a velocidade e o desempenho de sua rede Meça a velocidade e o desempenho da sua rede usando o teste [NDT](https://ooni.org/nettest/ndt/).\n\nMeça o desempenho da streaming de vídeo usando o [DASH](https://ooni.org/nettest/dash/).\n\nEsses testes consomem dados dependendo da velocidade da sua rede.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/).\n\nIsenção de responsabilidade: Esses testes dependem de servidores de terceiros. Portanto, não podemos garantir que seu endereço IP não seja coletado. Ao executar os testes neste cartão, você\n\n- Medirá a velocidade e o desempenho da sua rede ([Teste de NDT](https://ooni.org/nettest/ndt/))\n- Avaliará o desempenho do streaming de vídeo ([Teste de DASH](https://ooni.org/nettest/dash/))\n- Verificará a presença de [tecnologias de caixa intermediária](https://ooni.org/support/glossary/#middlebox) na sua rede ([Linha de solicitação inválida de HTTP](https://ooni.org/nettest/http-invalid-request-line/) e [Teste de manipulação de campo de cabeçalho HTTP](https://ooni.org/nettest/http-header-field-manipulation/))\n\nEsses testes consomem dados de acordo com a velocidade da sua rede.\n\nOs resultados dos seus testes serão publicados no [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/).\n\n**Isenção de responsabilidade:** Os testes de [NDT](https://ooni.org/nettest/ndt/) e [DASH](https://ooni.org/nettest/dash/) são realizados com servidores de terceiros, fornecidos pela [Measurement Lab (M-Lab)](https://www.measurementlab.net/). Se você executar esses testes, o M-Lab coletará e publicará seu endereço IP (para fins de pesquisa), independentemente das configurações do seu OONI Probe. Saiba mais sobre a governança de dados da M-Lab através de sua [declaração de privacidade](https://www.measurementlab.net/privacy/). Detectar caixas intermediárias na sua rede - Os provedores de serviços de Internet geralmente utilizam aparelhos de rede (caixas intermediárias) para vários fins de rede (como o armazenamento em cache). Algumas vezes, essas caixas intermediárias são usadas para implementar censura e/ou vigilância na Internet.\n\nEncontre caixas intermediárias em sua rede usando a OONI [HTTP Linha de Solicitação Inválida](https://ooni.org/nettest/http-invalid-request-line/) e testes [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/) tests.\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e no [OONI API](https://api.ooni.io/). + Os provedores de serviços de Internet geralmente utilizam aparelhos de rede (caixas intermediárias) para vários fins de rede (como o armazenamento em cache). Algumas vezes, essas caixas intermediárias são usadas para implementar censura e/ou vigilância na Internet.\n\nEncontre caixas intermediárias em sua rede usando a OONI [HTTP Linha de Solicitação Inválida](https://ooni.org/nettest/http-invalid-request-line/) e testes [HTTP Header Field Manipulation](https://ooni.org/nettest/http-header-field-manipulation/).\n\nSeus resultados serão publicados no [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/). Teste o bloqueio de aplicativos de mensagens instantâneas - Verifique se [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), e [Signal](https://ooni.org/nettest/signal) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/world/) e no [OONI API](https://api.ooni.io/). + Verifique se [WhatsApp](https://ooni.org/nettest/whatsapp/), [Facebook Messenger](https://ooni.org/nettest/facebook-messenger/), [Telegram](https://ooni.org/nettest/telegram/), e [Signal](https://ooni.org/nettest/signal) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/world/) e na [OONI API](https://api.ooni.io/). Testar o bloqueio de ferramentas de evasão à censura - Verifique se [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) ou [RiseupVPN](https://ooni.org/nettest/riseupvpn/) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e no [OONI API](https://api.ooni.io/). + Verifique se [Psiphon](https://ooni.org/nettest/psiphon/), [Tor](https://ooni.org/nettest/tor/) ou [RiseupVPN](https://ooni.org/nettest/riseupvpn/) estão bloqueados.\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e na [OONI API](https://api.ooni.io/). Executar novos testes experimentais Execute os seguintes novos testes experimentais desenvolvidos pela equipe OONI:\n%1$s\n\nSeus resultados serão publicados em [OONI Explorer](https://explorer.ooni.org/) e [OONI API](https://api.ooni.io/). - Os testes a seguir serão executados apenas como parte de testes automatizados: - Testes Desabilitados + Os testes a seguir serão executados apenas como parte da execução automática: + Testes Desativados Gbit/s Mbit/s kbit/s @@ -278,7 +278,7 @@ Agora não Execute mesmo assim Desativar VPN - Sempre executar + Sempre Executar Não foi possível executar o teste. Por favor, verifique sua conexão com a Internet. Não foi possível baixar a lista de URL\'s. Por favor, tente novamente. Aguarde a conclusão dos testes em execução antes de iniciar um novo teste. @@ -308,7 +308,7 @@ Este teste falhou. Você deseja fazer um outro teste? Você está prestes a testar novamente os sites %1$s. Executar - Você tem certeza? + Você tem a certeza? Suas URLs não serão salvas quando você sair desta tela. Tem certeza de que deseja sair desta tela? Ativar carregamento manual? Essa configuração permite que você carregue manualmente as medidas não publicadas. @@ -366,7 +366,7 @@ Último teste automatizado: %1$s. Somente com Wi-Fi Somente durante o carregamento - Ao permitir testes automáticos, os testes OONI Probe serão executados automaticamente várias vezes por dia. Os resultados de seus testes serão publicados automaticamente no OONI Explorer: https://explorer.ooni.org/ \n\nImportante: Se você tiver uma VPN habilitada, a OONI Probe não executará testes automaticamente. Por favor, desligue sua VPN para testes automatizados da OONI Probe. Saiba mais: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn + Ao permitir testes automáticos, os testes OONI Probe serão executados automaticamente várias vezes por dia. Os resultados de seus testes serão publicados automaticamente no OONI Explorer: https://explorer.ooni.org/ \n\nImportante: Se você tiver uma VPN habilitada, a OONI Probe não executará testes automaticamente. Por favor, desligue sua VPN para os testes automatizados da OONI Probe. Saiba mais: https://ooni.org/support/faq/#can-i-run-ooni-probe-over-a-vpn Compartilhando Publicar os resultados automaticamente Carregamento manual dos resultados @@ -379,7 +379,7 @@ Opções de teste O que você configura através das opções de teste acima (por ex. desativar o teste WhatsApp) será aplicado aos testes executados manualmente, bem como aos testes executados automaticamente (quando os testes automatizados são ativados). Teste de longa duração - Realizar testes de longa duração em primeiro plano? + Executar testes de longa duração em primeiro plano? Privacidade Enviar relatórios de erros Avançado @@ -387,7 +387,7 @@ Registros de depuração Ver logs recentes Configuração de idioma - Selecionar idioma + Selecionar Idioma Sempre usar \"domain fronting\" Proxy de back-end do OONI Proxy @@ -419,7 +419,7 @@ Escolha sites para testar URL Nenhuma URL inserida - Rodar + Executar Adicionar website Carregar de modelo Número de sites testados (0 significa todos) @@ -460,7 +460,7 @@ %1$s URL\'s Nome de teste Detalhes do teste - Executat + Executar Desatualizado Você precisa de uma versão mais recente do OONI Probe para executar este teste. Atualizar @@ -469,7 +469,7 @@ O link OONI Run está malformado ou seu aplicativo está desatualizado. Você testará uma amostra aleatória de sites. Por favor, aguarde a execução do teste terminar antes de clicar em um link OONI Run. - Leia mais > + Ler mais > Ler menos > Drogas e Álcool Religião @@ -533,18 +533,18 @@ Conteúdo benigno ou inócuo usado para controle Organizações intergovernamentais, incluindo as Nações Unidas Sites que ainda não foram categorizados - Não pergunte novamente - Ativar notificações de progresso do teste - Gostaria de ativar as notificações sobre o progresso do teste do OONI Probe e exibir os testes em execução na gaveta de notificações? - Carregamento de link + Não perguntar novamente + Ativar notificações de progresso dos testes + Gostaria de ativar as notificações sobre o progresso dos testes do OONI Probe e exibir os testes em execução na gaveta de notificações? + Carregando Link Erro Instalação do link cancelada Criado por %s em %s\n\n%s - Link de desinstalação - Revisar atualizações + Desinstalar Link + Revisar Atualizações Revisões anteriores - You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. - Ver mais + Só poderá voltar a instalar este link novamente a partir do link original enviado pelo criador. As medições deste link serão excluídas, mas serão acessíveis através do explorador. + Ver Mais Testar sites automaticamente Erro Testes OONI @@ -552,38 +552,38 @@ Execução concluída. Toque para ver os resultados. EXPIRADO ATUALIZADO - Instale o novo link + Instale o novo Link Autor: - Testar configurações + Configurações de Testes Instalar atualizações automaticamente Executar testes automaticamente Link instalado - Link de instalação + Instalar Link Instalação do link cancelada ATUALIZAÇÕES Teste %s URLs - URLs de teste - Atualização de link + Testar URLs + Atualização de Link Link(s) atualizado(s) - Atualização de link (%1$s de %2$s) + Atualização de Link (%1$s de %2$s) ATUALIZAR E CONCLUIR (%1$s de %2$s) ATUALIZAÇÃO (%1$s de %2$s) Atualizar Executar testes - Executar testes - Selecione o teste para executar + Executar Testes + Selecione o teste a executar Executar %s teste(s) - Selecione os testes a serem executados + Selecione os testes a executar Selecione todos os testes Desmarcar todos os testes - Carregamento de link - Carregamento de atualizações de link - Atualizações de link prontas + Carregando Link + Carregando atualizações dos links + Atualizações dos links prontas Revisar - %s Entradas + %s entradas Voltar - Refrescar - Colapso + Atualizar + Colapsar Expandir %1$satrás %1$d minuto @@ -608,32 +608,32 @@ Resposta correta Resposta incorreta Última atualização%1$s - Rodar %1$dteste - Rodar%1$dtestes + Executar %1$d teste + Executar %1$d testes URL sem suporte Medição - %1$dmedições + %1$dmedição %1$dmedições Falhou OK Anomalia - Todos os tipos - Todas as fontes + Todos os Tipos + Todas as Fontes Somente os últimos%1$dresultados são mostrados Subindo resultados pendentes %1$s Logs - Compartilhar logs - Erro de compartilhamento de logs - Filtro de logs + Compartilhar Logs + Erro ao compartilhar logs + Filtrar Logs Vá para Configurações > Geral > VPN e desconecte da sua VPN. - Ignorar após esta quantidade de falhas ao carregar + Saltar após esta quantidade de resultados com falha ao subir Resultados são automaticamente subidos para o explorador do OONI. - Limitar a duração de testes de websites - Duração Máxima do teste de duração de websites - Testes rodarão no plano de fundo + Limitar a duração de testes de Websites + Duração máxima do teste de Websites + Testes serão executados em segundo plano Somente para execuções manuais Testando - Execução manual - Execução automática + Execução Manual + Execução Automática VPN diff --git a/probe-mobile/tr/Localizable.strings b/probe-mobile/tr/Localizable.strings index b19dd91..0e0696b 100644 --- a/probe-mobile/tr/Localizable.strings +++ b/probe-mobile/tr/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "Kaldırma bağlantısı"; "Dashboard.Runv2.Overview.ReviewUpdates" = "Güncellemeleri değerlendirin"; "Dashboard.Runv2.Overview.PreviousRevisions" = "Önceki değişiklikler"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "Bu bağlantıyı yalnızca geliştiricisinin gönderdiği özgün bağlantıdan yeniden kurabilirsiniz. Bu bağlantıdaki ölçümler silinecek, ancak Explorer üzerinden erişilebilecek."; "Dashboard.Runv2.Overview.SeeMore" = "Ayrıntıları görüntüle"; "Dashboard.Runv2.Overview.TestWebsites" = "Siteler otomatik olarak sınansın"; "Dashboard.RunV2.ManualUpdate.Error" = "Hata"; diff --git a/probe-mobile/tr/strings.json b/probe-mobile/tr/strings.json index cc6500d..b3d1fbb 100644 --- a/probe-mobile/tr/strings.json +++ b/probe-mobile/tr/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "Kaldırma bağlantısı", "Dashboard.Runv2.Overview.ReviewUpdates": "Güncellemeleri değerlendirin", "Dashboard.Runv2.Overview.PreviousRevisions": "Önceki değişiklikler", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "Bu bağlantıyı yalnızca geliştiricisinin gönderdiği özgün bağlantıdan yeniden kurabilirsiniz. Bu bağlantıdaki ölçümler silinecek, ancak Explorer üzerinden erişilebilecek.", "Dashboard.Runv2.Overview.SeeMore": "Ayrıntıları görüntüle", "Dashboard.Runv2.Overview.TestWebsites": "Siteler otomatik olarak sınansın", "Dashboard.RunV2.ManualUpdate.Error": "Hata", diff --git a/probe-mobile/tr/strings.xml b/probe-mobile/tr/strings.xml index 45ca66f..1afb78d 100644 --- a/probe-mobile/tr/strings.xml +++ b/probe-mobile/tr/strings.xml @@ -543,7 +543,7 @@ Kaldırma bağlantısı Güncellemeleri değerlendirin Önceki değişiklikler - You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. + Bu bağlantıyı yalnızca geliştiricisinin gönderdiği özgün bağlantıdan yeniden kurabilirsiniz. Bu bağlantıdaki ölçümler silinecek, ancak Explorer üzerinden erişilebilecek. Ayrıntıları görüntüle Siteler otomatik olarak sınansın Hata diff --git a/probe-mobile/zh_CN/Localizable.strings b/probe-mobile/zh_CN/Localizable.strings index ef38890..010beb0 100644 --- a/probe-mobile/zh_CN/Localizable.strings +++ b/probe-mobile/zh_CN/Localizable.strings @@ -541,7 +541,7 @@ "Dashboard.Runv2.Overview.UninstallLink" = "卸载链接"; "Dashboard.Runv2.Overview.ReviewUpdates" = "查看更新"; "Dashboard.Runv2.Overview.PreviousRevisions" = "先前更改"; -"Dashboard.Runv2.Overview.Uninstall.Prompt" = "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer."; +"Dashboard.Runv2.Overview.Uninstall.Prompt" = "你将只能从由创建者发送的原始链接那里再次安装此链接。来自此链接的测量数据将被删除,但仍可从 explorer 处访问。"; "Dashboard.Runv2.Overview.SeeMore" = "查看更多"; "Dashboard.Runv2.Overview.TestWebsites" = "自动测试网站"; "Dashboard.RunV2.ManualUpdate.Error" = "错误"; diff --git a/probe-mobile/zh_CN/strings.json b/probe-mobile/zh_CN/strings.json index 4c28207..dec42f6 100644 --- a/probe-mobile/zh_CN/strings.json +++ b/probe-mobile/zh_CN/strings.json @@ -542,7 +542,7 @@ "Dashboard.Runv2.Overview.UninstallLink": "卸载链接", "Dashboard.Runv2.Overview.ReviewUpdates": "查看更新", "Dashboard.Runv2.Overview.PreviousRevisions": "先前更改", - "Dashboard.Runv2.Overview.Uninstall.Prompt": "You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer.", + "Dashboard.Runv2.Overview.Uninstall.Prompt": "你将只能从由创建者发送的原始链接那里再次安装此链接。来自此链接的测量数据将被删除,但仍可从 explorer 处访问。", "Dashboard.Runv2.Overview.SeeMore": "查看更多", "Dashboard.Runv2.Overview.TestWebsites": "自动测试网站", "Dashboard.RunV2.ManualUpdate.Error": "错误", diff --git a/probe-mobile/zh_CN/strings.xml b/probe-mobile/zh_CN/strings.xml index 43464a2..b484c36 100644 --- a/probe-mobile/zh_CN/strings.xml +++ b/probe-mobile/zh_CN/strings.xml @@ -543,7 +543,7 @@ 卸载链接 查看更新 先前更改 - You will be able to install this link again only from the original link sent by the creator. Measurements from this link will be deleted, but will be accessible from explorer. + 你将只能从由创建者发送的原始链接那里再次安装此链接。来自此链接的测量数据将被删除,但仍可从 explorer 处访问。 查看更多 自动测试网站 错误 From bfda31763b3238d17736e30e1a1f67c1d7f53f6f Mon Sep 17 00:00:00 2001 From: Norbel Ambanumben Date: Wed, 12 Feb 2025 13:22:43 +0100 Subject: [PATCH 9/9] chore: update translations --- convert-from-app-string.py | 72 +++++++++++++++++++++-------- probe-mobile/sw/Localizable.strings | 20 ++++---- probe-mobile/sw/strings.json | 34 +++++++------- probe-mobile/sw/strings.xml | 20 ++++---- 4 files changed, 90 insertions(+), 56 deletions(-) diff --git a/convert-from-app-string.py b/convert-from-app-string.py index 5872b71..d9df37a 100644 --- a/convert-from-app-string.py +++ b/convert-from-app-string.py @@ -7,40 +7,56 @@ assert sys.version_info >= (3, 6), "Python >= 3.6 is required" + def parse_args(): - p = argparse.ArgumentParser(description='translations: CSV to KEYVALUEJSON') - p.add_argument('--source', metavar='PATH', help='path to multiplatform source', required=True) - p.add_argument('--destination', metavar='PATH', help='path to multiplatform source', required=True) - p.add_argument('--json', metavar='PATH', help='path to multiplatform source', required=True) - p.add_argument('--app', metavar='STRING', help='app', required=True) - p.add_argument('--base', metavar='PATH', help='ooni base json input path', required=False) - p.add_argument('--lang', metavar='STRING', help='language', required=True) + p = argparse.ArgumentParser(description="translations: CSV to KEYVALUEJSON") + p.add_argument( + "--source", metavar="PATH", help="path to multiplatform source", required=True + ) + p.add_argument( + "--destination", + metavar="PATH", + help="path to multiplatform source", + required=True, + ) + p.add_argument( + "--json", metavar="PATH", help="path to multiplatform source", required=True + ) + p.add_argument("--app", metavar="STRING", help="app", required=True) + p.add_argument( + "--base", metavar="PATH", help="ooni base json input path", required=False + ) + p.add_argument("--lang", metavar="STRING", help="language", required=True) opt = p.parse_args() return opt + def load_json(in_path): with open(in_path) as in_file: return json.load(in_file) + def load_xml_keys(in_path): tree = ET.parse(in_path) root = tree.getroot() result = {} - for string in root.findall('string'): - key = string.get('name') + for string in root.findall("string"): + key = string.get("name") value = string.text result[key] = value return result -def dict_to_android_xml(d, out_path, app): - resources = ET.Element('resources') +def dict_to_android_xml(d, out_path, app): + resources = ET.Element("resources") - comment = ET.Comment('This file is generated from https://github.com/ooni/translations. Please do not modify unless you know what youre doing') + comment = ET.Comment( + "This file is generated from https://github.com/ooni/translations. Please do not modify unless you know what youre doing" + ) resources.insert(0, comment) for key, text in d.items(): - key = key.replace('.', '_') + key = key.replace(".", "_") if key == "Dashboard_Runv2_Overview_Description": text = text.replace("\\n\\n%s", "") # replace first `%s` with `%1$s` and second `%s` with `%2$s` @@ -51,9 +67,25 @@ def dict_to_android_xml(d, out_path, app): # replace first `{experimental_test_list}` with `%1$s` text = text.replace("{experimental_test_list}", "%1$s", 1) - if key == "Settings_Websites_Categories_Description": + if ( + key == "Settings_Websites_Categories_Description" + or key == "TestResults_Overview_Websites_Blocked_Singular" + or key == "TestResults_Overview_Websites_Blocked_Plural" + or key == "TestResults_Overview_Websites_Tested_Singular" + or key == "TestResults_Overview_Websites_Tested_Plural" + or key == "TestResults_Overview_InstantMessaging_Blocked_Singular" + or key == "TestResults_Overview_InstantMessaging_Available_Singular" + or key == "TestResults_Overview_InstantMessaging_Available_Plural" + or key == "TestResults_Overview_InstantMessaging_Blocked_Plural" + or key == "TestResults_Overview_Circumvention_Blocked_Singular" + or key == "TestResults_Overview_Circumvention_Blocked_Plural" + or key == "TestResults_Overview_Circumvention_Available_Singular" + or key == "TestResults_Overview_Circumvention_Available_Plural" + + ): # replace first `{Count}` with `%1$s` text = text.replace("{Count}", "%1$s", 1) + print(text) if key == "Modal_ResultsNotUploaded_Uploading": # replace first `{testNumber}` with `%1$s` @@ -76,16 +108,17 @@ def dict_to_android_xml(d, out_path, app): # replace first `{testDate}` with `%1$s` text = text.replace("{testDate}", "%1$s", 1) - if app == 'news-media-scan' and key == "Modal_EnableNotifications_Paragraph": + if app == "news-media-scan" and key == "Modal_EnableNotifications_Paragraph": # replace `OONI Probe` with `News Media Scan` text = text.replace("OONI Probe", "News Media Scan", 1) - string_element = ET.SubElement(resources, 'string', name=key) + string_element = ET.SubElement(resources, "string", name=key) string_element.text = text tree = ET.ElementTree(resources) ET.indent(tree) - tree.write(out_path, encoding='utf-8', xml_declaration=True) + tree.write(out_path, encoding="utf-8", xml_declaration=True) + def main(): opt = parse_args() @@ -94,7 +127,7 @@ def main(): filtered_data = {} for key, text in json_data.items(): - key = key.replace('.', '_') + key = key.replace(".", "_") if key in source_keys: filtered_data[key] = text @@ -102,11 +135,12 @@ def main(): base_data = load_json(opt.base) for key, text in base_data.items(): - key = key.replace('.', '_') + key = key.replace(".", "_") if key == "Modal_EnableNotifications_Paragraph": filtered_data[key] = text dict_to_android_xml(filtered_data, opt.destination, opt.app) + if __name__ == "__main__": main() diff --git a/probe-mobile/sw/Localizable.strings b/probe-mobile/sw/Localizable.strings index c0f49d4..f396388 100644 --- a/probe-mobile/sw/Localizable.strings +++ b/probe-mobile/sw/Localizable.strings @@ -91,20 +91,20 @@ "TestResults.Overview.FilterTests.Circumvention" = "Mazungumzo"; "TestResults.Overview.FilterTests.Experimental" = "Majaribio"; "TestResults.Overview.NoTestsHaveBeenRun" = "Hakuna jaribio lililofanywa bado. Tafadhali fanya jaribio moja!"; -"TestResults.Overview.Websites.Blocked.Singular" = "(Hesabu) imezuiliwa"; -"TestResults.Overview.Websites.Blocked.Plural" = "(Hesabu) imezuiliwa"; +"TestResults.Overview.Websites.Blocked.Singular" = "%@ imezuiliwa"; +"TestResults.Overview.Websites.Blocked.Plural" = "%@ imezuiliwa"; "TestResults.Overview.Websites.Tested.Singular" = "%@ imejaribiwa"; "TestResults.Overview.Websites.Tested.Plural" = "%@ imejaribiwa"; "TestResults.Overview.MiddleBoxes.Found" = "Kugundua"; "TestResults.Overview.MiddleBoxes.NotFound" = "Haikugunduliwa"; "TestResults.Overview.MiddleBoxes.Failed" = "Imeshindwa"; -"TestResults.Overview.InstantMessaging.Blocked.Singular" = "(Hesabu) imezuiliwa"; +"TestResults.Overview.InstantMessaging.Blocked.Singular" = "%@ imezuiliwa"; "TestResults.Overview.InstantMessaging.Blocked.Plural" = "%@ imezuiliwa"; "TestResults.Overview.InstantMessaging.Available.Singular" = "%@ inapatikana"; -"TestResults.Overview.InstantMessaging.Available.Plural" = "%@ inapatikana"; -"TestResults.Overview.Circumvention.Blocked.Singular" = "(Hesabu) imezuiliwa"; -"TestResults.Overview.Circumvention.Blocked.Plural" = "(Hesabu) imezuiliwa"; -"TestResults.Overview.Circumvention.Available.Singular" = "%@ inapatikana"; +"TestResults.Overview.InstantMessaging.Available.Plural" = "%@ inapatikana"; +"TestResults.Overview.Circumvention.Blocked.Singular" = "%@ imezuiliwa"; +"TestResults.Overview.Circumvention.Blocked.Plural" = "%@ imezuiliwa"; +"TestResults.Overview.Circumvention.Available.Singular" = "%@ inapatikana"; "TestResults.Overview.Circumvention.Available.Plural" = "%@ inapatikana"; "TestResults.Overview.IncompleteResult" = "Matokeo yasiyokamilika"; "TestResults.Overview.Error" = "kosa"; @@ -259,8 +259,8 @@ "TestResults.Details.Circumvention.RiseupVPN.Table.Header.Openvpn" = "Uunganisho wa OpenVPN"; "TestResults.Details.Circumvention.RiseupVPN.Table.Header.Bridge" = "Uunganisho uliofungwa"; "TestResults.Overview.Circumvention.RiseupVPN.Api.Blocked" = "Imezuiwa"; -"TestResults.Overview.Circumvention.RiseupVPN.Blocked.Singular" = "(Hesabu) imezuiliwa"; -"TestResults.Overview.Circumvention.RiseupVPN.Blocked.Plural" = "(Hesabu) imezuiliwa"; +"TestResults.Overview.Circumvention.RiseupVPN.Blocked.Singular" = "%@ imezuiliwa"; +"TestResults.Overview.Circumvention.RiseupVPN.Blocked.Plural" = "%@ imezuiliwa"; "TestResults.Details.Circumvention.RiseupVPN.Reachable.Okay" = "Sawa"; "TestResults.Details.Experimental.Hero.Title" = "Huu ni mtihani wa majaribio."; "Feed.Tab.Label" = "Kulisha"; @@ -455,7 +455,7 @@ "OONIBrowser.Loading" = "Upakiaji..."; "OONIBrowser.Error" = "Hitilafu isiyotarajiwa ilitokea. Tafadhali pakia upya ukurasa huu."; "OONIRun.YouAreAboutToRun" = "Uko karibu kufanya jaribio la uchunguzi wa OONI. "; -"OONIRun.URLs" = "Hesabu %@ "; +"OONIRun.URLs" = "%@ URLs"; "OONIRun.TestName" = "Jina la Mtihani"; "OONIRun.TestDetails" = "Maelezo ya jaribio"; "OONIRun.Run" = "Kuendesha"; diff --git a/probe-mobile/sw/strings.json b/probe-mobile/sw/strings.json index a9bfb64..fcac94f 100644 --- a/probe-mobile/sw/strings.json +++ b/probe-mobile/sw/strings.json @@ -46,7 +46,7 @@ "Dashboard.Overview.ChooseWebsites": "Chagua tovuti", "Dashboard.Running.Running": "Inaenda:", "Dashboard.Running.EstimatedTimeLeft": "Muda uliokadiriwa:", - "Dashboard.Running.Seconds": "sekunde {sekunde}", + "Dashboard.Running.Seconds": "sekunde {seconds}", "Dashboard.Running.PreparingTest": "Kipimo kinaandaliwa", "Dashboard.Running.CalculatingETA": "ETA inahesabiwa", "Dashboard.Running.ShowLog": "Onyesha Kumbukumbu", @@ -55,7 +55,7 @@ "Dashboard.Running.Stopping.Notice": "Majaribio yanayoshughulikiwa yanakamilishwa, tafadhali subiri…", "Dashboard.Running.ProxyInUse": "Wakala inatumika", "Dashboard.Card.Subtitle": "Gonga kadi kwa zaidi", - "Dashboard.Card.Seconds": "~{sekunde}", + "Dashboard.Card.Seconds": "~{seconds}", "Dashboard.Websites.Card.Description": "Pima uzuiaji wa tovuti.", "Dashboard.Websites.Overview.Paragraph": "Angalia kama tovuti zimezuiwa kwa kutumia [Kipimo wa Kuunganishaa Wavuti](https://ooni.org/nettest/web-connectivity).\n\nKila unapoboyeza \"Anzisha\", unajaribu tovuti tofauti kutoka kwa Maabara ya Citizen [ya kimataifa](https://github.com/citizenlab/test-/blob/master/lists/global.csv) na [nchi maalum](https://github.com/citizenlab/test/tree/master/lists) orodha ya mtihani.\n\nIli kujaribu tovuti za chaguo lako, gusa kitufe cha Chagua tovuti au chagua makundi ya tovuti kupitia mipangilio ya kadi hii. \n\nMtihani huu unapima kama tovuti zimefungwa kwa njia ya DNS kutatiza, TCP/IP kuzuiwa au kwa mhimili wa HTTP wazi.\n\nMatokeo yako yatachapishwa kwenye [OONI Explorer](https://explorer.ooni.org/world/) na [OONI API](https://api.ooni.io/).\n", "Dashboard.Websites.Overview.Paragraph.Desktop": "Angalia ikiwa tovuti zimezuiwa kutumia OONI's [Mtihani wa Muunganisho wa Wavuti](https://ooni.org/nettest/web-connectivity/).\n\nUtajaribu tovuti zilizojumuishwa katika Maabara ya Citizen [ya kimataifa](https://github.com/citizenlab/test-lists/blob/master/lists/global.csv) na [maalum kwa nchi](https://github.com/citizenlab/test-lists/tree/master/lists) orodha za majaribio.\n\nJaribio hili linapima ikiwa tovuti zimezuiwa kwa njia ya kukwamisha DNS, kuzuia TCP/IP au kwa wakala wa uwazi wa HTTP.\n\nMatokeo yako yatachapishwa kwenye [OONI Explorer](https://explorer.ooni.org/) na [OONI API](https://api.ooni.io/).", @@ -92,21 +92,21 @@ "TestResults.Overview.FilterTests.Circumvention": "Mazungumzo", "TestResults.Overview.FilterTests.Experimental": "Majaribio", "TestResults.Overview.NoTestsHaveBeenRun": "Hakuna jaribio lililofanywa bado. Tafadhali fanya jaribio moja!", - "TestResults.Overview.Websites.Blocked.Singular": "(Hesabu) imezuiliwa", - "TestResults.Overview.Websites.Blocked.Plural": "(Hesabu) imezuiliwa", - "TestResults.Overview.Websites.Tested.Singular": "{Hesabu} imejaribiwa", - "TestResults.Overview.Websites.Tested.Plural": "{Hesabu} imejaribiwa", + "TestResults.Overview.Websites.Blocked.Singular": "{Count} imezuiliwa", + "TestResults.Overview.Websites.Blocked.Plural": "{Count} imezuiliwa", + "TestResults.Overview.Websites.Tested.Singular": "{Count} imejaribiwa", + "TestResults.Overview.Websites.Tested.Plural": "{Count} imejaribiwa", "TestResults.Overview.MiddleBoxes.Found": "Kugundua", "TestResults.Overview.MiddleBoxes.NotFound": "Haikugunduliwa", "TestResults.Overview.MiddleBoxes.Failed": "Imeshindwa", - "TestResults.Overview.InstantMessaging.Blocked.Singular": "(Hesabu) imezuiliwa", - "TestResults.Overview.InstantMessaging.Blocked.Plural": "{Hesabu} imezuiliwa", - "TestResults.Overview.InstantMessaging.Available.Singular": "{Hesabu} inapatikana", - "TestResults.Overview.InstantMessaging.Available.Plural": "{Hesabu} inapatikana", - "TestResults.Overview.Circumvention.Blocked.Singular": "(Hesabu) imezuiliwa", - "TestResults.Overview.Circumvention.Blocked.Plural": "(Hesabu) imezuiliwa", - "TestResults.Overview.Circumvention.Available.Singular": "{Hesabu} inapatikana", - "TestResults.Overview.Circumvention.Available.Plural": "{Hesabu} inapatikana", + "TestResults.Overview.InstantMessaging.Blocked.Singular": "{Count} imezuiliwa", + "TestResults.Overview.InstantMessaging.Blocked.Plural": "{Count} imezuiliwa", + "TestResults.Overview.InstantMessaging.Available.Singular": "{Count} inapatikana", + "TestResults.Overview.InstantMessaging.Available.Plural": "{Count} inapatikana", + "TestResults.Overview.Circumvention.Blocked.Singular": "{Count} imezuiliwa", + "TestResults.Overview.Circumvention.Blocked.Plural": "{Count} imezuiliwa", + "TestResults.Overview.Circumvention.Available.Singular": "{Count} inapatikana", + "TestResults.Overview.Circumvention.Available.Plural": "{Count} inapatikana", "TestResults.Overview.IncompleteResult": "Matokeo yasiyokamilika", "TestResults.Overview.Error": "kosa", "TestResults.Summary.ErrorInMeasurement": "Hitilafu katika Upimaji", @@ -260,8 +260,8 @@ "TestResults.Details.Circumvention.RiseupVPN.Table.Header.Openvpn": "Uunganisho wa OpenVPN", "TestResults.Details.Circumvention.RiseupVPN.Table.Header.Bridge": "Uunganisho uliofungwa", "TestResults.Overview.Circumvention.RiseupVPN.Api.Blocked": "Imezuiwa", - "TestResults.Overview.Circumvention.RiseupVPN.Blocked.Singular": "(Hesabu) imezuiliwa", - "TestResults.Overview.Circumvention.RiseupVPN.Blocked.Plural": "(Hesabu) imezuiliwa", + "TestResults.Overview.Circumvention.RiseupVPN.Blocked.Singular": "{Count} imezuiliwa", + "TestResults.Overview.Circumvention.RiseupVPN.Blocked.Plural": "{Count} imezuiliwa", "TestResults.Details.Circumvention.RiseupVPN.Reachable.Okay": "Sawa", "TestResults.Details.Experimental.Hero.Title": "Huu ni mtihani wa majaribio.", "Feed.Tab.Label": "Kulisha", @@ -456,7 +456,7 @@ "OONIBrowser.Loading": "Upakiaji...", "OONIBrowser.Error": "Hitilafu isiyotarajiwa ilitokea. Tafadhali pakia upya ukurasa huu.", "OONIRun.YouAreAboutToRun": "Uko karibu kufanya jaribio la uchunguzi wa OONI. ", - "OONIRun.URLs": "Hesabu {URL} ", + "OONIRun.URLs": "{Count} URLs", "OONIRun.TestName": "Jina la Mtihani", "OONIRun.TestDetails": "Maelezo ya jaribio", "OONIRun.Run": "Kuendesha", diff --git a/probe-mobile/sw/strings.xml b/probe-mobile/sw/strings.xml index a14a87e..cf0d2ea 100644 --- a/probe-mobile/sw/strings.xml +++ b/probe-mobile/sw/strings.xml @@ -93,20 +93,20 @@ Mazungumzo Majaribio Hakuna jaribio lililofanywa bado. Tafadhali fanya jaribio moja! - (Hesabu) imezuiliwa - (Hesabu) imezuiliwa + %1$s imezuiliwa + %1$s imezuiliwa %1$s imejaribiwa %1$s imejaribiwa Kugundua Haikugunduliwa Imeshindwa - (Hesabu) imezuiliwa + %1$s imezuiliwa %1$s imezuiliwa %1$s inapatikana - %1$s inapatikana - (Hesabu) imezuiliwa - (Hesabu) imezuiliwa - %1$s inapatikana + %1$s inapatikana + %1$s imezuiliwa + %1$s imezuiliwa + %1$s inapatikana %1$s inapatikana Matokeo yasiyokamilika kosa @@ -261,8 +261,8 @@ Uunganisho wa OpenVPN Uunganisho uliofungwa Imezuiwa - (Hesabu) imezuiliwa - (Hesabu) imezuiliwa + %1$s imezuiliwa + %1$s imezuiliwa Sawa Huu ni mtihani wa majaribio. Kulisha @@ -457,7 +457,7 @@ Upakiaji... Hitilafu isiyotarajiwa ilitokea. Tafadhali pakia upya ukurasa huu. Uko karibu kufanya jaribio la uchunguzi wa OONI. - Hesabu %1$s + %1$s URLs Jina la Mtihani Maelezo ya jaribio Kuendesha