From 5d5b9b5f97e010bb9825961fd488a8d38ac2001e Mon Sep 17 00:00:00 2001 From: Andrew Tavis McAllister Date: Tue, 27 Aug 2024 19:21:28 +0200 Subject: [PATCH] Squashed 'app/src/main/assets/i18n/' changes from 700a3ce..1e07813 1e07813 Merge pull request #42 from angrezichatterbox/XML-TO-JSON-FIX 2a8fe2a fix:Added escape characters for \n 924f00c #37 minor edits to conversion scripts and try new command path aafa0f6 #37 update Scribe-i18n structure and fix conversion workflow 6a8faaa Merge pull request #39 from Jag-Marcel/i18n-refactor 2b9caff Added newline at end of all JSON files e775e46 Updated jsons and xcstrings file using new iOS scripts dd018c1 Refactored iOS conversion scripts to use python json package 7f8c273 Updated conversion workflow to use paths filter instead of conditional check ff21cdb Refactored scripts into new iOS and Android folders git-subtree-dir: app/src/main/assets/i18n git-subtree-split: 1e07813b694edc57934b46ec76943cc1e974d4fb --- .github/workflows/json_conversion.yml | 22 ++++++ .github/workflows/xcstrings_conversion.yml | 41 ----------- README.md | 2 +- Scribe-i18n/Localizable.xcstrings | 3 +- .../Scripts/convert_jsons_to_xcstrings.py | 57 ---------------- Scribe-i18n/{ => jsons}/de.json | 0 Scribe-i18n/{ => jsons}/en-US.json | 0 Scribe-i18n/{ => jsons}/es.json | 0 Scribe-i18n/{ => jsons}/fr.json | 10 +++ Scribe-i18n/{ => jsons}/pt.json | 10 +++ Scribe-i18n/{ => jsons}/ru.json | 10 +++ Scribe-i18n/{ => jsons}/sv.json | 0 .../Android}/convert_jsons_to_strings.py | 27 ++++---- .../Android}/convert_strings_to_json.py | 26 ++++--- .../scripts/iOS/convert_jsons_to_xcstrings.py | 45 ++++++++++++ .../iOS}/convert_xcstrings_to_jsons.py | 28 ++++---- Scribe-i18n/values/de/string.xml | 67 +----------------- Scribe-i18n/values/en-US/string.xml | 67 +----------------- Scribe-i18n/values/es/string.xml | 67 +----------------- Scribe-i18n/values/fr/string.xml | 10 +++ Scribe-i18n/values/pt/string.xml | 10 +++ Scribe-i18n/values/ru/string.xml | 10 +++ Scribe-i18n/values/sv/string.xml | 68 +------------------ 23 files changed, 184 insertions(+), 396 deletions(-) create mode 100644 .github/workflows/json_conversion.yml delete mode 100644 .github/workflows/xcstrings_conversion.yml delete mode 100644 Scribe-i18n/Scripts/convert_jsons_to_xcstrings.py rename Scribe-i18n/{ => jsons}/de.json (100%) rename Scribe-i18n/{ => jsons}/en-US.json (100%) rename Scribe-i18n/{ => jsons}/es.json (100%) rename Scribe-i18n/{ => jsons}/fr.json (83%) rename Scribe-i18n/{ => jsons}/pt.json (83%) rename Scribe-i18n/{ => jsons}/ru.json (83%) rename Scribe-i18n/{ => jsons}/sv.json (100%) rename Scribe-i18n/{Scripts => scripts/Android}/convert_jsons_to_strings.py (53%) rename Scribe-i18n/{Scripts => scripts/Android}/convert_strings_to_json.py (54%) create mode 100644 Scribe-i18n/scripts/iOS/convert_jsons_to_xcstrings.py rename Scribe-i18n/{Scripts => scripts/iOS}/convert_xcstrings_to_jsons.py (58%) diff --git a/.github/workflows/json_conversion.yml b/.github/workflows/json_conversion.yml new file mode 100644 index 00000000..ad4c99ad --- /dev/null +++ b/.github/workflows/json_conversion.yml @@ -0,0 +1,22 @@ +name: json_conversion.yml + +on: + push: + branches: + - main + paths: + - "Scribe-i18n/jsons/**.json" + +jobs: + # Run JSON to app strings conversion scripts if needed. + convert_json: + runs-on: ubuntu-latest + steps: + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: 3.12 + - name: Execute script to convert JSON to string files + run: | + python Scribe-i18n/scripts/android/convert_jsons_to_strings.py + python Scribe-i18n/scripts/ios/convert_jsons_to_xcstrings.py diff --git a/.github/workflows/xcstrings_conversion.yml b/.github/workflows/xcstrings_conversion.yml deleted file mode 100644 index 5f5dcc1b..00000000 --- a/.github/workflows/xcstrings_conversion.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: xcstrings_conversion.yml - -on: - push: - branches: - - main - -jobs: - # Check to make sure the localization files have actually changed. - conditional_job_check_files: - runs-on: ubuntu-latest - outputs: - json_changed: ${{ steps.check_file_changed.outputs.json_changed }} - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 2 - - shell: pwsh - id: check_file_changed - run: | - $diff = git diff --name-only HEAD^ HEAD - $SourceDiff = $diff | Where-Object { $_ -match '^Scribe-i18n/' -and $_ -match '.json$' } - $HasDiff = $SourceDiff.Length -gt 0 - Write-Host "json_changed=$HasDiff" >> "$GITHUB_OUTPUT" - - # Run JSON to app strings conversion scripts if needed. - conditional_job: - runs-on: ubuntu-latest - needs: - - conditional_job_check_files - if: needs.conditional_job_check_files.outputs.json_changed == 'True' - steps: - - name: Setup Python - uses: actions/setup-python@v5 - with: - python-version: 3.12 - - name: Execute script to convert JSON to xcstrings - run: | - python ./Scripts/convert_jsons_to_strings.py - python ./Scripts/convert_jsons_to_xcstrings.py diff --git a/README.md b/README.md index b630ce10..420cac2a 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ If all looks good, then you're ready to start adding localizable key-string pair ### File Conversion -The files in the [Scribe-i18n/Scripts](https://github.com/scribe-org/Scribe-i18n/tree/main/Scribe-i18n/Scripts) directory can be used to convert base localization JSON files into the filetypes that are needed for an application as well as the same in reverse. JSON files are automatically converted to their target files for Scribe applications after commits to the main branch, and their opposites can be used to update the JSON files when strings are first changed in the applications. +The files in the [Scribe-i18n/scripts](https://github.com/scribe-org/Scribe-i18n/tree/main/Scribe-i18n/scripts) directory can be used to convert base localization JSON files into the filetypes that are needed for an application as well as the same in reverse. JSON files are automatically converted to their target files for Scribe applications after commits to the main branch, and their opposites can be used to update the JSON files when strings are first changed in the applications. ### Adding Scribe-i18n to Projects [`⇧`](#contents) diff --git a/Scribe-i18n/Localizable.xcstrings b/Scribe-i18n/Localizable.xcstrings index bdf9149f..52c3075c 100644 --- a/Scribe-i18n/Localizable.xcstrings +++ b/Scribe-i18n/Localizable.xcstrings @@ -1883,7 +1883,8 @@ "state" : "", "value" : "Du kan skapa ett konto på wikidata.org för att gå med i communityn som stöder Scribe och så många andra projekt. Hjälp oss att ge gratis information till världen!" } - } } + } + } } }, "version" : "1.0" diff --git a/Scribe-i18n/Scripts/convert_jsons_to_xcstrings.py b/Scribe-i18n/Scripts/convert_jsons_to_xcstrings.py deleted file mode 100644 index 098da3ff..00000000 --- a/Scribe-i18n/Scripts/convert_jsons_to_xcstrings.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -Converts from Scribe-i18n localization JSON files to the Localizable.xcstrings file. - - -Usage: - python3 Scribe-i18n/Scripts/convert_jsons_to_xcstrings.py -""" - -import json -import os - -directory = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) -files = os.listdir(directory) -languages = sorted( - [file.replace(".json", "") for file in files if file.endswith(".json")] -) -path = os.path.join(directory, "en-US.json") -file = open(path, "r").read() -file = json.loads(file) - -data = "{\n" ' "sourceLanguage" : "en",\n' ' "strings" : {\n' -for pos, key in enumerate(file, start=1): - data += ( - f' "{key}" : {{\n' f' "comment" : "",\n' f' "localizations" : {{\n' - ) - - for lang in languages: - lang_json = json.loads( - open(os.path.join(directory, f"{lang}.json"), "r").read() - ) - - if key in lang_json: - translation = lang_json[key].replace('"', '\\"').replace("\n", "\\n") - else: - translation = "" - - if lang == "en-US": - lang = "en" - if translation != "": - data += ( - f' "{lang}" : {{\n' - f' "stringUnit" : {{\n' - f' "state" : "",\n' - f' "value" : "{translation}"\n' - f" }}\n" - f" }},\n" - ) - - data = data[:-2] - data += "\n }\n" " },\n" if pos < len(file) else " }\n" " }\n" - -data += " },\n" ' "version" : "1.0"\n' "}" -open(os.path.join(directory, "Localizable.xcstrings"), "w").write(data) - -print( - "Scribe-i18n localization JSON files successfully converted to the Localizable.xcstrings file." -) diff --git a/Scribe-i18n/de.json b/Scribe-i18n/jsons/de.json similarity index 100% rename from Scribe-i18n/de.json rename to Scribe-i18n/jsons/de.json diff --git a/Scribe-i18n/en-US.json b/Scribe-i18n/jsons/en-US.json similarity index 100% rename from Scribe-i18n/en-US.json rename to Scribe-i18n/jsons/en-US.json diff --git a/Scribe-i18n/es.json b/Scribe-i18n/jsons/es.json similarity index 100% rename from Scribe-i18n/es.json rename to Scribe-i18n/jsons/es.json diff --git a/Scribe-i18n/fr.json b/Scribe-i18n/jsons/fr.json similarity index 83% rename from Scribe-i18n/fr.json rename to Scribe-i18n/jsons/fr.json index 16ac999b..62b5ced3 100644 --- a/Scribe-i18n/fr.json +++ b/Scribe-i18n/jsons/fr.json @@ -1,4 +1,5 @@ { + "_global.english": "", "_global.french": "", "_global.german": "", "_global.italian": "", @@ -6,6 +7,7 @@ "_global.russian": "", "_global.spanish": "", "_global.swedish": "", + "app.about.appHint": "", "app.about.appHints": "", "app.about.bugReport": "", "app.about.community": "", @@ -13,6 +15,7 @@ "app.about.feedback": "", "app.about.github": "", "app.about.legal": "", + "app.about.mastodon": "", "app.about.matrix": "", "app.about.privacyPolicy": "", "app.about.privacyPolicy.body": "", @@ -33,12 +36,14 @@ "app.about.wikimedia.text2": "", "app.about.wikimedia.text3": "", "app.install": "", + "app.installation.appHint": "", "app.installation.settingsLink": "", "app.installation.text1": "", "app.installation.text2": "", "app.installation.text3": "", "app.installation.title": "", "app.keyboards": "", + "app.settings.appHint": "", "app.settings.appSettings": "", "app.settings.appSettings.appLanguage": "", "app.settings.functionality": "", @@ -50,7 +55,12 @@ "app.settings.layout.disableAccentCharacters.description": "", "app.settings.layout.periodAndComma": "", "app.settings.layout.periodAndComma.description": "", + "app.settings.oneDeviceLanguage.message": "", + "app.settings.oneDeviceLanguage.title": "", "app.settings.title": "", + "app.settings.translation": "", + "app.settings.translation.translateLang": "", + "app.settings.translation.translateLang.caption": "", "app.wikidataExplanation1": "", "app.wikidataExplanation2": "", "app.wikidataExplanation3": "" diff --git a/Scribe-i18n/pt.json b/Scribe-i18n/jsons/pt.json similarity index 83% rename from Scribe-i18n/pt.json rename to Scribe-i18n/jsons/pt.json index 16ac999b..62b5ced3 100644 --- a/Scribe-i18n/pt.json +++ b/Scribe-i18n/jsons/pt.json @@ -1,4 +1,5 @@ { + "_global.english": "", "_global.french": "", "_global.german": "", "_global.italian": "", @@ -6,6 +7,7 @@ "_global.russian": "", "_global.spanish": "", "_global.swedish": "", + "app.about.appHint": "", "app.about.appHints": "", "app.about.bugReport": "", "app.about.community": "", @@ -13,6 +15,7 @@ "app.about.feedback": "", "app.about.github": "", "app.about.legal": "", + "app.about.mastodon": "", "app.about.matrix": "", "app.about.privacyPolicy": "", "app.about.privacyPolicy.body": "", @@ -33,12 +36,14 @@ "app.about.wikimedia.text2": "", "app.about.wikimedia.text3": "", "app.install": "", + "app.installation.appHint": "", "app.installation.settingsLink": "", "app.installation.text1": "", "app.installation.text2": "", "app.installation.text3": "", "app.installation.title": "", "app.keyboards": "", + "app.settings.appHint": "", "app.settings.appSettings": "", "app.settings.appSettings.appLanguage": "", "app.settings.functionality": "", @@ -50,7 +55,12 @@ "app.settings.layout.disableAccentCharacters.description": "", "app.settings.layout.periodAndComma": "", "app.settings.layout.periodAndComma.description": "", + "app.settings.oneDeviceLanguage.message": "", + "app.settings.oneDeviceLanguage.title": "", "app.settings.title": "", + "app.settings.translation": "", + "app.settings.translation.translateLang": "", + "app.settings.translation.translateLang.caption": "", "app.wikidataExplanation1": "", "app.wikidataExplanation2": "", "app.wikidataExplanation3": "" diff --git a/Scribe-i18n/ru.json b/Scribe-i18n/jsons/ru.json similarity index 83% rename from Scribe-i18n/ru.json rename to Scribe-i18n/jsons/ru.json index 16ac999b..62b5ced3 100644 --- a/Scribe-i18n/ru.json +++ b/Scribe-i18n/jsons/ru.json @@ -1,4 +1,5 @@ { + "_global.english": "", "_global.french": "", "_global.german": "", "_global.italian": "", @@ -6,6 +7,7 @@ "_global.russian": "", "_global.spanish": "", "_global.swedish": "", + "app.about.appHint": "", "app.about.appHints": "", "app.about.bugReport": "", "app.about.community": "", @@ -13,6 +15,7 @@ "app.about.feedback": "", "app.about.github": "", "app.about.legal": "", + "app.about.mastodon": "", "app.about.matrix": "", "app.about.privacyPolicy": "", "app.about.privacyPolicy.body": "", @@ -33,12 +36,14 @@ "app.about.wikimedia.text2": "", "app.about.wikimedia.text3": "", "app.install": "", + "app.installation.appHint": "", "app.installation.settingsLink": "", "app.installation.text1": "", "app.installation.text2": "", "app.installation.text3": "", "app.installation.title": "", "app.keyboards": "", + "app.settings.appHint": "", "app.settings.appSettings": "", "app.settings.appSettings.appLanguage": "", "app.settings.functionality": "", @@ -50,7 +55,12 @@ "app.settings.layout.disableAccentCharacters.description": "", "app.settings.layout.periodAndComma": "", "app.settings.layout.periodAndComma.description": "", + "app.settings.oneDeviceLanguage.message": "", + "app.settings.oneDeviceLanguage.title": "", "app.settings.title": "", + "app.settings.translation": "", + "app.settings.translation.translateLang": "", + "app.settings.translation.translateLang.caption": "", "app.wikidataExplanation1": "", "app.wikidataExplanation2": "", "app.wikidataExplanation3": "" diff --git a/Scribe-i18n/sv.json b/Scribe-i18n/jsons/sv.json similarity index 100% rename from Scribe-i18n/sv.json rename to Scribe-i18n/jsons/sv.json diff --git a/Scribe-i18n/Scripts/convert_jsons_to_strings.py b/Scribe-i18n/scripts/Android/convert_jsons_to_strings.py similarity index 53% rename from Scribe-i18n/Scripts/convert_jsons_to_strings.py rename to Scribe-i18n/scripts/Android/convert_jsons_to_strings.py index 0e81c657..cd348a4d 100644 --- a/Scribe-i18n/Scripts/convert_jsons_to_strings.py +++ b/Scribe-i18n/scripts/Android/convert_jsons_to_strings.py @@ -1,9 +1,10 @@ """ -Converts from Scribe-i18n localization JSON files to the Strings files. +Converts from Scribe-i18n localization JSON files to string.xml files. Usage: - python3 Scribe-i18n/Scripts/convert_jsons_to_strings.py + python3 Scribe-i18n/scripts/android/convert_jsons_to_strings.py """ + import os import json @@ -13,26 +14,28 @@ def replace_special_characters(string): string = string.replace("&", "&") string = string.replace("<", "<") string = string.replace(">", ">") + string = string.replace("\n", "\\n") return string -directory = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) -dir_list = os.listdir(directory) + +directory = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +json_dir_list = os.listdir(os.path.join(directory, "jsons")) languages = sorted( - [file.replace(".json", "") for file in dir_list if file.endswith(".json")] + [file.replace(".json", "") for file in json_dir_list if file.endswith(".json")] ) -values_directory = os.path.join(directory, 'values') +values_directory = os.path.join(directory, "values") os.makedirs(values_directory, exist_ok=True) for lang in languages: lang_dir = os.path.join(values_directory, lang) os.makedirs(lang_dir, exist_ok=True) - xml_path = os.path.join(lang_dir,"string.xml") + xml_path = os.path.join(lang_dir, "string.xml") with open(xml_path, "w") as xml_file: xml_file.write('\n') - xml_file.write('\n') + xml_file.write("\n") - json_path = os.path.join(directory, f"{lang}.json") + json_path = os.path.join(os.path.join(directory, "jsons"), f"{lang}.json") with open(json_path, "r") as json_file: json_data = json_file.read() json_data = json.loads(json_data) @@ -41,8 +44,6 @@ def replace_special_characters(string): value = replace_special_characters(value) xml_file.write(f' {value}\n') - xml_file.write('\n') + xml_file.write("\n") -print( - "Scribe-i18n localization JSON files successfully converted to the strings file." -) +print("Scribe-i18n localization JSON files successfully converted to the strings file.") diff --git a/Scribe-i18n/Scripts/convert_strings_to_json.py b/Scribe-i18n/scripts/Android/convert_strings_to_json.py similarity index 54% rename from Scribe-i18n/Scripts/convert_strings_to_json.py rename to Scribe-i18n/scripts/Android/convert_strings_to_json.py index c2dfe96a..1d570982 100644 --- a/Scribe-i18n/Scripts/convert_strings_to_json.py +++ b/Scribe-i18n/scripts/Android/convert_strings_to_json.py @@ -1,40 +1,46 @@ """ -Converts from Scribe-i18n localization strings files to the JSON files. +Converts from string.xml files to Scribe-i18n localization JSON files. Usage: - python3 Scribe-i18n/Scripts/convert_strings_to_json.py + python3 Scribe-i18n/scripts/android/convert_strings_to_json.py """ - import os import json import re + def unescape_special_characters(string): string = string.replace(">", ">") string = string.replace("<", "<") string = string.replace("&", "&") string = string.replace("\\'", "'") + string = string.replace("\\n", "\n") return string - -directory = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) -dir_list = os.listdir(directory) +directory = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +dir_list = os.listdir(os.path.join(directory, "jsons")) languages = sorted( [file.replace(".json", "") for file in dir_list if file.endswith(".json")] ) regex = re.compile(r'(.*?)', re.DOTALL) -values_directory = os.path.join(directory, 'values') +values_directory = os.path.join(directory, "values") + for lang in languages: path = os.path.join(values_directory, lang) - with open(f'{path}/string.xml', 'r') as file: + with open(f"{path}/string.xml", "r") as file: content = file.read() matches = regex.findall(content) result = dict(matches) result = {key: unescape_special_characters(value) for key, value in result.items()} - with open(os.path.join(directory,f'{lang}.json'), 'w',encoding='utf-8') as file: - json.dump(result, file, indent=4,ensure_ascii=False) + with open( + os.path.join(os.path.join(directory, "jsons"), f"{lang}.json"), + "w", + encoding="utf-8", + ) as file: + json.dump(result, file, indent=2, ensure_ascii=False) + file.write("\n") print( "Scribe-i18n localization strings files successfully converted to the JSON files." diff --git a/Scribe-i18n/scripts/iOS/convert_jsons_to_xcstrings.py b/Scribe-i18n/scripts/iOS/convert_jsons_to_xcstrings.py new file mode 100644 index 00000000..3dc160f2 --- /dev/null +++ b/Scribe-i18n/scripts/iOS/convert_jsons_to_xcstrings.py @@ -0,0 +1,45 @@ +""" +Converts from Scribe-i18n localization JSON files to the Localizable.xcstrings file. + + +Usage: + python3 Scribe-i18n/scripts/ios/convert_jsons_to_xcstrings.py +""" + +import json +import os + +directory = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +json_dir_list = os.listdir(os.path.join(directory, "jsons")) +languages = sorted( + [file.replace(".json", "") for file in json_dir_list if file.endswith(".json")] +) +path = os.path.join(os.path.join(directory, "jsons"), "en-US.json") +file = open(path, "r").read() +file = json.loads(file) + +data = {"sourceLanguage": "en"} +strings = {} +for key in file: + language = {} + + for lang in languages: + lang_json = json.loads( + open(os.path.join(os.path.join(directory, "jsons"), f"{lang}.json"), "r").read() + ) + + translation = lang_json[key] if key in lang_json else "" + if lang == "en-US": + lang = "en" + if translation != "": + language[lang] = {"stringUnit": {"state": "", "value": translation}} + + strings[key] = {"comment": "", "localizations": language} + +data |= {"strings": strings, "version": "1.0"} +file = open(os.path.join(directory, "Localizable.xcstrings"), "w") +json.dump(data, file, indent=2, ensure_ascii=False, separators=(",", " : ")) + +print( + "Scribe-i18n localization JSON files successfully converted to the Localizable.xcstrings file." +) diff --git a/Scribe-i18n/Scripts/convert_xcstrings_to_jsons.py b/Scribe-i18n/scripts/iOS/convert_xcstrings_to_jsons.py similarity index 58% rename from Scribe-i18n/Scripts/convert_xcstrings_to_jsons.py rename to Scribe-i18n/scripts/iOS/convert_xcstrings_to_jsons.py index 3be6003b..b3c26489 100644 --- a/Scribe-i18n/Scripts/convert_xcstrings_to_jsons.py +++ b/Scribe-i18n/scripts/iOS/convert_xcstrings_to_jsons.py @@ -2,17 +2,17 @@ Converts from the Scribe-i18n Localizable.xcstrings file to localization JSON files. Usage: - python3 Scribe-i18n/Scripts/convert_xcstrings_to_jsons.py + python3 Scribe-i18n/scripts/ios/convert_xcstrings_to_jsons.py """ + import json import os -directory = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +directory = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) file = open(os.path.join(directory, "Localizable.xcstrings"), "r").read() -files = os.listdir(directory) - -languages = [file.replace(".json", "") for file in files if file.endswith(".json")] +dir_list = os.listdir(directory) +languages = [file.replace(".json", "") for file in dir_list if file.endswith(".json")] for lang in languages: dest = open(f"{directory}/{lang}.json", "w") @@ -22,7 +22,7 @@ json_file = json.loads(file) strings = json_file["strings"] - data = "{\n" + data = {} for pos, key in enumerate(strings, start=1): translation = "" if ( @@ -32,18 +32,14 @@ and json_file["strings"][key]["localizations"][lang]["stringUnit"]["value"] != key ): - translation = ( - json_file["strings"][key]["localizations"][lang]["stringUnit"]["value"] - .replace('"', '\\"') - .replace("\n", "\\n") - ) - - data += f' "{key}" : "{translation}"' - data += ",\n" if pos < len(json_file["strings"]) else "\n" + translation = json_file["strings"][key]["localizations"][lang][ + "stringUnit" + ]["value"] - data += "}\n" + data[key] = translation - dest.write(data) + json.dump(data, dest, indent=2, ensure_ascii=False) + dest.write("\n") print( "Scribe-i18n Localizable.xcstrings file successfully converted to the localization JSON files." diff --git a/Scribe-i18n/values/de/string.xml b/Scribe-i18n/values/de/string.xml index 64ece5a3..689cab9b 100644 --- a/Scribe-i18n/values/de/string.xml +++ b/Scribe-i18n/values/de/string.xml @@ -19,73 +19,14 @@ Folge uns auf Mastodon Chatte mit dem Team auf Matrix Datenschutzrichtlinie - Bitte beachten Sie, dass die englische Version dieser Richtlinie Vorrang vor allen anderen Versionen hat. - -Die Scribe-Entwickler (SCRIBE) haben die iOS-App „Scribe – Language Keyboards“ (SERVICE) als Open-Source-App entwickelt. Dieser DIENST wird von SCRIBE kostenlos zur Verfügung gestellt und ist zur Verwendung so wie er ist bestimmt. - -Diese Datenschutzrichtlinie (RICHTLINIE) dient dazu, den Leser über die Bedingungen für den Zugriff auf, sowie die Verfolgung, Erfassung, Aufbewahrung, Verwendung und Offenlegung von persönlichen Informationen (NUTZERINFORMATIONEN) und Nutzungsdaten (NUTZERDATEN) aller Benutzer (NUTZER) dieses DIENSTES aufzuklären. - -NUTZERINFORMATIONEN sind insbesondere alle Informationen, die sich auf die NUTZER selbst oder die Geräte beziehen, die sie für den Zugriff auf den DIENST verwenden. - -NUTZERDATEN sind definiert als eingegebener Text oder Aktionen, die von den NUTZERN während der Nutzung des DIENSTES ausgeführt werden. - -1. Grundsatzerklärung - -Dieser DIENST greift nicht auf NUTZERINFORMATIONEN oder NUTZERDATEN zu und verfolgt, sammelt, speichert, verwendet und gibt keine NUTZERDATEN weiter. - -2. Do Not Track - -NUTZER, die SCRIBE kontaktieren, um zu verlangen, dass ihre NUTZERINFORMATIONEN und NUTZERDATEN nicht verfolgt werden, erhalten eine Kopie dieser RICHTLINIE sowie einen Link zu allen Quellcodes als Nachweis, dass sie nicht verfolgt werden. - -3. Daten von Drittanbietern - -Dieser DIENST verwendet Daten von Drittanbietern. Alle Daten, die bei der Erstellung dieses DIENSTES verwendet werden, stammen aus Quellen, die ihre vollständige Nutzung in der vom DIENST durchgeführten Weise ermöglichen. Primär stammen die Daten für diesen DIENST von Wikidata, Wikipedia und Unicode. Wikidata erklärt: „Alle strukturierten Daten in den Haupt-, Eigenschafts- und Lexem-Namespaces werden unter der Creative Commons CC0-Lizenz verfügbar gemacht; Text in anderen Namespaces wird unter der Creative Commons Attribution Share-Alike Lizenz verfügbar gemacht.“ Die Wikidata-Richtlinie zur Verwendung von Daten ist unter https://www.wikidata.org/wiki/Wikidata:Licensing zu finden. Wikipedia gibt an, dass Texte, also die Daten, die vom DIENST verwendet werden, „… unter den Bedingungen der Creative Commons Attribution Share-Alike Lizenz verwendet werden können“. Die Wikipedia-Richtlinie zur Verwendung von Daten ist unter https://en.wikipedia.org/wiki/Wikipedia:Reusing_Wikipedia_content zu finden. Unicode gewährt die Erlaubnis, „… kostenlos, für alle Inhaber einer Kopie der Unicode-Daten und der zugehörigen Dokumentation (der „Data Files“) oder der Unicode-Software und der zugehörigen Dokumentation (der „Software“), die Data Files oder Software ohne Einschränkung zu verwenden …“ Die Unicode-Richtlinie zur Verwendung von Daten ist unter https://www.unicode.org/license.txt zu finden. - -4. Quellcode von Drittanbietern - -Dieser DIENST basiert auf Code von Dritten. Der gesamte bei der Erstellung dieses DIENSTES verwendete Quellcode stammt von Quellen, die ihre Nutzung in der vom DIENST durchgeführten Weise gestatten. Grundlage dieses Projekts war im Besonderen das Projekt CustomKeyboard von Ethan Sarif-Kattan. CustomKeyboard wurde unter der MIT-Lizenz veröffentlicht, welche unter https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE abrufbar ist. - -5. Dienste von Drittanbietern - -Dieser DIENST nutzt Drittanbieterdienste, um einige der Daten von Drittanbietern zu modifizieren. Namentlich wurden Daten unter Verwendung von Modellen von Hugging Face’ Transformers übersetzt. Dieser Dienst ist durch eine Apache 2.0 Lizenz abgedeckt, die besagt, dass er für die kommerzielle Nutzung, Änderung, Verteilung, Patent- und private Nutzung verfügbar ist. Die Lizenz für den oben genannten Dienst finden Sie unter https://github.com/huggingface/transformers/blob/master/LICENSE. - -6. Links zu Drittanbietern - -Dieser DIENST enthält Links zu externen Webseiten. Wenn NUTZER auf einen Link eines Drittanbieters klicken, werden sie auf eine Webseite weitergeleitet. Beachten Sie, dass diese externen Websites nicht von diesem DIENST betrieben werden. Daher wird NUTZERN dringend empfohlen, die Datenschutzrichtlinie dieser Webseiten zu lesen. Dieser DIENST hat keine Kontrolle über und übernimmt keine Haftung für Inhalte, Datenschutzrichtlinien oder Praktiken von Webseiten oder Diensten Dritter. - -7. Bilder von Drittanbietern - -Dieser SERVICE enthält Bilder, die von Dritten urheberrechtlich geschützt sind. Insbesondere enthält diese App eine Kopie der Logos von GitHub, Inc. und Wikidata, Warenzeichen von Wikimedia Foundation, Inc. Die Bedingungen, unter denen das GitHub-Logo verwendet werden kann, ist unter https://github.com/logo abrufbar. Die Bedingungen für das Wikidata-Logo ist zu finden auf der folgenden Wikimedia-Seite: https://foundation.wikimedia.org/wiki/Policy:Trademark_policy. Dieser DIENST verwendet die urheberrechtlich geschützten Bilder in einer Weise, die diesen Kriterien entspricht, wobei die einzige Abweichung eine rotierte Version des GitHub-Logos ist, was in der Open-Source-Community üblich ist, um einen Link zur GitHub-Website darzustellen. - -8. Inhaltshinweis - -Dieser DIENST ermöglicht NUTZERN den Zugriff auf sprachliche Inhalte (INHALTE). Einige dieser INHALTE könnten für Kinder und Minderjährige als ungeeignet eingestuft werden. Der Zugriff auf INHALTE über den DIENST erfolgt auf eine Weise, in der die Informationen nur bekannt sind, wenn diese ausdrücklich angefragt werden. Speziell können NUTZER Wörter übersetzen, Verben konjugieren und auf andere grammatikalische Merkmale von INHALTEN zugreifen, die sexueller, gewalttätiger oder anderweitig nicht altersgerechter Natur sein können. NUTZER können keine Wörter übersetzen, Verben konjugieren und auf andere grammatikalische Merkmale von INHALTEN zugreifen, die sexueller, gewalttätiger oder anderweitig nicht altersgerechter Natur sein können, wenn sie nicht bereits über diese Art INHALTE Bescheid wissen. SCRIBE übernimmt keine Haftung für den Zugriff auf solche INHALTE. - -9. Änderungen - -Der DIENST behält sich Änderungen dieser RICHTLINIE vor. Aktualisierungen dieser RICHTLINIE ersetzen alle vorherigen Versionen, und werden, wenn sie als wesentlich erachtet werden, in der nächsten anwendbaren Aktualisierung des DIENSTES deutlich aufgeführt. SCRIBE animiert NUTZER dazu, diese RICHTLINIE regelmäßig auf die neuesten Informationen zu unseren Datenschutzpraktiken zu prüfen und sich mit etwaigen Änderungen vertraut zu machen. - -10. Kontakt - -Wenn Sie Fragen, Bedenken oder Vorschläge zu dieser RICHTLINIE haben, zögern Sie nicht, https://github.com/scribe-org zu besuchen oder SCRIBE unter scribe.langauge@gmail.com zu kontaktieren. Verantwortlich für solche Anfragen ist Andrew Tavis McAllister. - -11. Datum des Inkrafttretens - -Diese RICHTLINIE tritt am 24. Mai 2022 in Kraft. + Bitte beachten Sie, dass die englische Version dieser Richtlinie Vorrang vor allen anderen Versionen hat.\n\nDie Scribe-Entwickler (SCRIBE) haben die iOS-App „Scribe – Language Keyboards“ (SERVICE) als Open-Source-App entwickelt. Dieser DIENST wird von SCRIBE kostenlos zur Verfügung gestellt und ist zur Verwendung so wie er ist bestimmt.\n\nDiese Datenschutzrichtlinie (RICHTLINIE) dient dazu, den Leser über die Bedingungen für den Zugriff auf, sowie die Verfolgung, Erfassung, Aufbewahrung, Verwendung und Offenlegung von persönlichen Informationen (NUTZERINFORMATIONEN) und Nutzungsdaten (NUTZERDATEN) aller Benutzer (NUTZER) dieses DIENSTES aufzuklären.\n\nNUTZERINFORMATIONEN sind insbesondere alle Informationen, die sich auf die NUTZER selbst oder die Geräte beziehen, die sie für den Zugriff auf den DIENST verwenden.\n\nNUTZERDATEN sind definiert als eingegebener Text oder Aktionen, die von den NUTZERN während der Nutzung des DIENSTES ausgeführt werden.\n\n1. Grundsatzerklärung\n\nDieser DIENST greift nicht auf NUTZERINFORMATIONEN oder NUTZERDATEN zu und verfolgt, sammelt, speichert, verwendet und gibt keine NUTZERDATEN weiter.\n\n2. Do Not Track\n\nNUTZER, die SCRIBE kontaktieren, um zu verlangen, dass ihre NUTZERINFORMATIONEN und NUTZERDATEN nicht verfolgt werden, erhalten eine Kopie dieser RICHTLINIE sowie einen Link zu allen Quellcodes als Nachweis, dass sie nicht verfolgt werden.\n\n3. Daten von Drittanbietern\n\nDieser DIENST verwendet Daten von Drittanbietern. Alle Daten, die bei der Erstellung dieses DIENSTES verwendet werden, stammen aus Quellen, die ihre vollständige Nutzung in der vom DIENST durchgeführten Weise ermöglichen. Primär stammen die Daten für diesen DIENST von Wikidata, Wikipedia und Unicode. Wikidata erklärt: „Alle strukturierten Daten in den Haupt-, Eigenschafts- und Lexem-Namespaces werden unter der Creative Commons CC0-Lizenz verfügbar gemacht; Text in anderen Namespaces wird unter der Creative Commons Attribution Share-Alike Lizenz verfügbar gemacht.“ Die Wikidata-Richtlinie zur Verwendung von Daten ist unter https://www.wikidata.org/wiki/Wikidata:Licensing zu finden. Wikipedia gibt an, dass Texte, also die Daten, die vom DIENST verwendet werden, „… unter den Bedingungen der Creative Commons Attribution Share-Alike Lizenz verwendet werden können“. Die Wikipedia-Richtlinie zur Verwendung von Daten ist unter https://en.wikipedia.org/wiki/Wikipedia:Reusing_Wikipedia_content zu finden. Unicode gewährt die Erlaubnis, „… kostenlos, für alle Inhaber einer Kopie der Unicode-Daten und der zugehörigen Dokumentation (der „Data Files“) oder der Unicode-Software und der zugehörigen Dokumentation (der „Software“), die Data Files oder Software ohne Einschränkung zu verwenden …“ Die Unicode-Richtlinie zur Verwendung von Daten ist unter https://www.unicode.org/license.txt zu finden.\n\n4. Quellcode von Drittanbietern\n\nDieser DIENST basiert auf Code von Dritten. Der gesamte bei der Erstellung dieses DIENSTES verwendete Quellcode stammt von Quellen, die ihre Nutzung in der vom DIENST durchgeführten Weise gestatten. Grundlage dieses Projekts war im Besonderen das Projekt CustomKeyboard von Ethan Sarif-Kattan. CustomKeyboard wurde unter der MIT-Lizenz veröffentlicht, welche unter https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE abrufbar ist.\n\n5. Dienste von Drittanbietern\n\nDieser DIENST nutzt Drittanbieterdienste, um einige der Daten von Drittanbietern zu modifizieren. Namentlich wurden Daten unter Verwendung von Modellen von Hugging Face’ Transformers übersetzt. Dieser Dienst ist durch eine Apache 2.0 Lizenz abgedeckt, die besagt, dass er für die kommerzielle Nutzung, Änderung, Verteilung, Patent- und private Nutzung verfügbar ist. Die Lizenz für den oben genannten Dienst finden Sie unter https://github.com/huggingface/transformers/blob/master/LICENSE.\n\n6. Links zu Drittanbietern\n\nDieser DIENST enthält Links zu externen Webseiten. Wenn NUTZER auf einen Link eines Drittanbieters klicken, werden sie auf eine Webseite weitergeleitet. Beachten Sie, dass diese externen Websites nicht von diesem DIENST betrieben werden. Daher wird NUTZERN dringend empfohlen, die Datenschutzrichtlinie dieser Webseiten zu lesen. Dieser DIENST hat keine Kontrolle über und übernimmt keine Haftung für Inhalte, Datenschutzrichtlinien oder Praktiken von Webseiten oder Diensten Dritter.\n\n7. Bilder von Drittanbietern\n\nDieser SERVICE enthält Bilder, die von Dritten urheberrechtlich geschützt sind. Insbesondere enthält diese App eine Kopie der Logos von GitHub, Inc. und Wikidata, Warenzeichen von Wikimedia Foundation, Inc. Die Bedingungen, unter denen das GitHub-Logo verwendet werden kann, ist unter https://github.com/logo abrufbar. Die Bedingungen für das Wikidata-Logo ist zu finden auf der folgenden Wikimedia-Seite: https://foundation.wikimedia.org/wiki/Policy:Trademark_policy. Dieser DIENST verwendet die urheberrechtlich geschützten Bilder in einer Weise, die diesen Kriterien entspricht, wobei die einzige Abweichung eine rotierte Version des GitHub-Logos ist, was in der Open-Source-Community üblich ist, um einen Link zur GitHub-Website darzustellen.\n\n8. Inhaltshinweis\n\nDieser DIENST ermöglicht NUTZERN den Zugriff auf sprachliche Inhalte (INHALTE). Einige dieser INHALTE könnten für Kinder und Minderjährige als ungeeignet eingestuft werden. Der Zugriff auf INHALTE über den DIENST erfolgt auf eine Weise, in der die Informationen nur bekannt sind, wenn diese ausdrücklich angefragt werden. Speziell können NUTZER Wörter übersetzen, Verben konjugieren und auf andere grammatikalische Merkmale von INHALTEN zugreifen, die sexueller, gewalttätiger oder anderweitig nicht altersgerechter Natur sein können. NUTZER können keine Wörter übersetzen, Verben konjugieren und auf andere grammatikalische Merkmale von INHALTEN zugreifen, die sexueller, gewalttätiger oder anderweitig nicht altersgerechter Natur sein können, wenn sie nicht bereits über diese Art INHALTE Bescheid wissen. SCRIBE übernimmt keine Haftung für den Zugriff auf solche INHALTE.\n\n9. Änderungen\n\nDer DIENST behält sich Änderungen dieser RICHTLINIE vor. Aktualisierungen dieser RICHTLINIE ersetzen alle vorherigen Versionen, und werden, wenn sie als wesentlich erachtet werden, in der nächsten anwendbaren Aktualisierung des DIENSTES deutlich aufgeführt. SCRIBE animiert NUTZER dazu, diese RICHTLINIE regelmäßig auf die neuesten Informationen zu unseren Datenschutzpraktiken zu prüfen und sich mit etwaigen Änderungen vertraut zu machen.\n\n10. Kontakt\n\nWenn Sie Fragen, Bedenken oder Vorschläge zu dieser RICHTLINIE haben, zögern Sie nicht, https://github.com/scribe-org zu besuchen oder SCRIBE unter scribe.langauge@gmail.com zu kontaktieren. Verantwortlich für solche Anfragen ist Andrew Tavis McAllister.\n\n11. Datum des Inkrafttretens\n\nDiese RICHTLINIE tritt am 24. Mai 2022 in Kraft. Wir sorgen für Ihre Sicherheit Scribe bewerten Alle Scribe Apps anzeigen Scribe teilen Lizenzen von Drittanbietern Autor - Die iOS-App „Scribe - Language Keyboards“ (DIENST) wurde von den Scribe-Entwicklern (SCRIBE) unter Verwendung von Code von Dritten erstellt. Der gesamte bei der Erstellung dieses DIENSTES verwendete Quellcode stammt von Quellen, die ihre Nutzung in der vom DIENST durchgeführten Weise gestatten. Dieser Abschnitt enthält den Quellcode, auf dem der DIENST basiert, sowie die zugehörigen Lizenzen. - -Im Folgenden ist eine Liste des benutzten Quellcodes, des oder der jeweiligen Autor:innen und der Lizenz zur Zeit der Verwendung durch SCRIBE mit einem Link zu dieser zu finden. - -1. Custom Keyboard -• Autor: EthanSK -• Lizenz: MIT -• Link: https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE + Die iOS-App „Scribe - Language Keyboards“ (DIENST) wurde von den Scribe-Entwicklern (SCRIBE) unter Verwendung von Code von Dritten erstellt. Der gesamte bei der Erstellung dieses DIENSTES verwendete Quellcode stammt von Quellen, die ihre Nutzung in der vom DIENST durchgeführten Weise gestatten. Dieser Abschnitt enthält den Quellcode, auf dem der DIENST basiert, sowie die zugehörigen Lizenzen.\n\nIm Folgenden ist eine Liste des benutzten Quellcodes, des oder der jeweiligen Autor:innen und der Lizenz zur Zeit der Verwendung durch SCRIBE mit einem Link zu dieser zu finden.\n\n1. Custom Keyboard\n• Autor: EthanSK\n• Lizenz: MIT\n• Link: https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE Der von uns verwendete Code Lizenz Link @@ -99,9 +40,7 @@ Im Folgenden ist eine Liste des benutzten Quellcodes, des oder der jeweiligen Au Folge den Anweisungen unten, um Scribe-Tastaturen auf deinem Gerät zu installieren. Scribe-Einstellungen öffnen Drücke auf - Wähle die Tastaturen aus, die du benutzen möchtest - -4. Drücke beim Tippen auf + Wähle die Tastaturen aus, die du benutzen möchtest\n\n4. Drücke beim Tippen auf um Tastaturen auszuwählen Tastaturinstallation Tastaturen diff --git a/Scribe-i18n/values/en-US/string.xml b/Scribe-i18n/values/en-US/string.xml index 6b711e27..e1b8587a 100644 --- a/Scribe-i18n/values/en-US/string.xml +++ b/Scribe-i18n/values/en-US/string.xml @@ -19,73 +19,14 @@ Follow us on Mastodon Chat with the team on Matrix Privacy policy - Please note that the English version of this policy takes precedence over all other versions. - -The Scribe developers (SCRIBE) built the iOS application "Scribe - Language Keyboards" (SERVICE) as an open-source application. This SERVICE is provided by SCRIBE at no cost and is intended for use as is. - -This privacy policy (POLICY) is used to inform the reader of the policies for the access, tracking, collection, retention, use, and disclosure of personal information (USER INFORMATION) and usage data (USER DATA) for all individuals who make use of this SERVICE (USERS). - -USER INFORMATION is specifically defined as any information related to the USERS themselves or the devices they use to access the SERVICE. - -USER DATA is specifically defined as any text that is typed or actions that are done by the USERS while using the SERVICE. - -1. Policy Statement - -This SERVICE does not access, track, collect, retain, use, or disclose any USER INFORMATION or USER DATA. - -2. Do Not Track - -USERS contacting SCRIBE to ask that their USER INFORMATION and USER DATA not be tracked will be provided with a copy of this POLICY as well as a link to all source codes as proof that they are not being tracked. - -3. Third-Party Data - -This SERVICE makes use of third-party data. All data used in the creation of this SERVICE comes from sources that allow its full use in the manner done so by the SERVICE. Specifically, the data for this SERVICE comes from Wikidata, Wikipedia and Unicode. Wikidata states that, "All structured data in the main, property and lexeme namespaces is made available under the Creative Commons CC0 License; text in other namespaces is made available under the Creative Commons Attribution-Share Alike License." The policy detailing Wikidata data usage can be found at https://www.wikidata.org/wiki/Wikidata:Licensing. Wikipedia states that text data, the type of data used by the SERVICE, "… can be used under the terms of the Creative Commons Attribution Share-Alike license". The policy detailing Wikipedia data usage can be found at https://en.wikipedia.org/wiki/Wikipedia:Reusing_Wikipedia_content. Unicode provides permission, "… free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any associated documentation (the "Software") to deal in the Data Files or Software without restriction…" The policy detailing Unicode data usage can be found at https://www.unicode.org/license.txt. - -4. Third-Party Source Code - -This SERVICE was based on third-party code. All source code used in the creation of this SERVICE comes from sources that allow its full use in the manner done so by the SERVICE. Specifically, the basis of this project was the project CustomKeyboard by Ethan Sarif-Kattan. CustomKeyboard was released under an MIT license, with this license being available at https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE. - -5. Third-Party Services - -This SERVICE makes use of third-party services to manipulate some of the third-party data. Specifically, data has been translated using models from Hugging Face transformers. This service is covered by an Apache License 2.0, which states that it is available for commercial use, modification, distribution, patent use, and private use. The license for the aforementioned service can be found at https://github.com/huggingface/transformers/blob/master/LICENSE. - -6. Third-Party Links - -This SERVICE contains links to external websites. If USERS click on a third-party link, they will be directed to a website. Note that these external websites are not operated by this SERVICE. Therefore, USERS are strongly advised to review the privacy policy of these websites. This SERVICE has no control over and assumes no responsibility for the content, privacy policies, or practices of any third-party sites or services. - -7. Third-Party Images - -This SERVICE contains images that are copyrighted by third-parties. Specifically, this app includes a copy of the logos of GitHub, Inc and Wikidata, trademarked by Wikimedia Foundation, Inc. The terms by which the GitHub logo can be used are found on https://github.com/logos, and the terms for the Wikidata logo are found on the following Wikimedia page: https://foundation.wikimedia.org/wiki/Policy:Trademark_policy. This SERVICE uses the copyrighted images in a way that matches these criteria, with the only deviation being a rotation of the GitHub logo that is common in the open-source community to indicate that there is a link to the GitHub website. - -8. Content Notice - -This SERVICE allows USERS to access linguistic content (CONTENT). Some of this CONTENT could be deemed inappropriate for children and legal minors. Accessing CONTENT using the SERVICE is done in a way that the information is unavailable unless explicitly known. Specifically, USERS "can" translate words, conjugate verbs, and access other grammatical features of CONTENT that may be sexual, violent, or otherwise inappropriate in nature. USERS "cannot" translate words, conjugate verbs, and access other grammatical features of CONTENT that may be sexual, violent, or otherwise inappropriate in nature if they do not already know about the nature of this CONTENT. SCRIBE takes no responsibility for the access of such CONTENT. - -9. Changes - -This POLICY is subject to change. Updates to this POLICY will replace all prior instances, and if deemed material will further be clearly stated in the next applicable update to the SERVICE. SCRIBE encourages USERS to periodically review this POLICY for the latest information on our privacy practices and to familiarize themselves with any changes. - -10. Contact - -If you have any questions, concerns, or suggestions about this POLICY, do not hesitate to visit https://github.com/scribe-org or contact SCRIBE at scribe.langauge@gmail.com. The person responsible for such inquiries is Andrew Tavis McAllister. - -11. Effective Date - -This POLICY is effective as of the 24th of May, 2022. + Please note that the English version of this policy takes precedence over all other versions.\n\nThe Scribe developers (SCRIBE) built the iOS application "Scribe - Language Keyboards" (SERVICE) as an open-source application. This SERVICE is provided by SCRIBE at no cost and is intended for use as is.\n\nThis privacy policy (POLICY) is used to inform the reader of the policies for the access, tracking, collection, retention, use, and disclosure of personal information (USER INFORMATION) and usage data (USER DATA) for all individuals who make use of this SERVICE (USERS).\n\nUSER INFORMATION is specifically defined as any information related to the USERS themselves or the devices they use to access the SERVICE.\n\nUSER DATA is specifically defined as any text that is typed or actions that are done by the USERS while using the SERVICE.\n\n1. Policy Statement\n\nThis SERVICE does not access, track, collect, retain, use, or disclose any USER INFORMATION or USER DATA.\n\n2. Do Not Track\n\nUSERS contacting SCRIBE to ask that their USER INFORMATION and USER DATA not be tracked will be provided with a copy of this POLICY as well as a link to all source codes as proof that they are not being tracked.\n\n3. Third-Party Data\n\nThis SERVICE makes use of third-party data. All data used in the creation of this SERVICE comes from sources that allow its full use in the manner done so by the SERVICE. Specifically, the data for this SERVICE comes from Wikidata, Wikipedia and Unicode. Wikidata states that, "All structured data in the main, property and lexeme namespaces is made available under the Creative Commons CC0 License; text in other namespaces is made available under the Creative Commons Attribution-Share Alike License." The policy detailing Wikidata data usage can be found at https://www.wikidata.org/wiki/Wikidata:Licensing. Wikipedia states that text data, the type of data used by the SERVICE, "… can be used under the terms of the Creative Commons Attribution Share-Alike license". The policy detailing Wikipedia data usage can be found at https://en.wikipedia.org/wiki/Wikipedia:Reusing_Wikipedia_content. Unicode provides permission, "… free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any associated documentation (the "Software") to deal in the Data Files or Software without restriction…" The policy detailing Unicode data usage can be found at https://www.unicode.org/license.txt.\n\n4. Third-Party Source Code\n\nThis SERVICE was based on third-party code. All source code used in the creation of this SERVICE comes from sources that allow its full use in the manner done so by the SERVICE. Specifically, the basis of this project was the project CustomKeyboard by Ethan Sarif-Kattan. CustomKeyboard was released under an MIT license, with this license being available at https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE.\n\n5. Third-Party Services\n\nThis SERVICE makes use of third-party services to manipulate some of the third-party data. Specifically, data has been translated using models from Hugging Face transformers. This service is covered by an Apache License 2.0, which states that it is available for commercial use, modification, distribution, patent use, and private use. The license for the aforementioned service can be found at https://github.com/huggingface/transformers/blob/master/LICENSE.\n\n6. Third-Party Links\n\nThis SERVICE contains links to external websites. If USERS click on a third-party link, they will be directed to a website. Note that these external websites are not operated by this SERVICE. Therefore, USERS are strongly advised to review the privacy policy of these websites. This SERVICE has no control over and assumes no responsibility for the content, privacy policies, or practices of any third-party sites or services.\n\n7. Third-Party Images\n\nThis SERVICE contains images that are copyrighted by third-parties. Specifically, this app includes a copy of the logos of GitHub, Inc and Wikidata, trademarked by Wikimedia Foundation, Inc. The terms by which the GitHub logo can be used are found on https://github.com/logos, and the terms for the Wikidata logo are found on the following Wikimedia page: https://foundation.wikimedia.org/wiki/Policy:Trademark_policy. This SERVICE uses the copyrighted images in a way that matches these criteria, with the only deviation being a rotation of the GitHub logo that is common in the open-source community to indicate that there is a link to the GitHub website.\n\n8. Content Notice\n\nThis SERVICE allows USERS to access linguistic content (CONTENT). Some of this CONTENT could be deemed inappropriate for children and legal minors. Accessing CONTENT using the SERVICE is done in a way that the information is unavailable unless explicitly known. Specifically, USERS "can" translate words, conjugate verbs, and access other grammatical features of CONTENT that may be sexual, violent, or otherwise inappropriate in nature. USERS "cannot" translate words, conjugate verbs, and access other grammatical features of CONTENT that may be sexual, violent, or otherwise inappropriate in nature if they do not already know about the nature of this CONTENT. SCRIBE takes no responsibility for the access of such CONTENT.\n\n9. Changes\n\nThis POLICY is subject to change. Updates to this POLICY will replace all prior instances, and if deemed material will further be clearly stated in the next applicable update to the SERVICE. SCRIBE encourages USERS to periodically review this POLICY for the latest information on our privacy practices and to familiarize themselves with any changes.\n\n10. Contact\n\nIf you have any questions, concerns, or suggestions about this POLICY, do not hesitate to visit https://github.com/scribe-org or contact SCRIBE at scribe.langauge@gmail.com. The person responsible for such inquiries is Andrew Tavis McAllister.\n\n11. Effective Date\n\nThis POLICY is effective as of the 24th of May, 2022. Keeping you safe Rate Scribe View all Scribe apps Share Scribe Third-party licenses Author - The Scribe developers (SCRIBE) built the iOS application "Scribe - Language Keyboards" (SERVICE) using third party code. All source code used in the creation of this SERVICE comes from sources that allow its full use in the manner done so by the SERVICE. This section lists the source code on which the SERVICE was based as well as the coinciding licenses of each. - -The following is a list of all used source code, the main author or authors of the code, the license under which it was released at time of usage, and a link to the license. - -1. Custom Keyboard -• Author: EthanSK -• License: MIT -• Link: https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE + The Scribe developers (SCRIBE) built the iOS application "Scribe - Language Keyboards" (SERVICE) using third party code. All source code used in the creation of this SERVICE comes from sources that allow its full use in the manner done so by the SERVICE. This section lists the source code on which the SERVICE was based as well as the coinciding licenses of each.\n\nThe following is a list of all used source code, the main author or authors of the code, the license under which it was released at time of usage, and a link to the license.\n\n1. Custom Keyboard\n• Author: EthanSK\n• License: MIT\n• Link: https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE Whose code we used License Link @@ -99,9 +40,7 @@ The following is a list of all used source code, the main author or authors of t Follow the directions below to install Scribe keyboards on your device. Open Scribe settings Select - Activate keyboards that you want to use - -4. When typing, press + Activate keyboards that you want to use\n\n4. When typing, press to select keyboards Keyboard installation Keyboards diff --git a/Scribe-i18n/values/es/string.xml b/Scribe-i18n/values/es/string.xml index 04fbc313..d7baf2ef 100644 --- a/Scribe-i18n/values/es/string.xml +++ b/Scribe-i18n/values/es/string.xml @@ -19,73 +19,14 @@ Siguenos en Mastodon Chatea con el equipo en Matrix Política de privacidad - Tenga en cuenta que la versión en inglés de esta política tiene prioridad sobre todas las demás versiones. - -Los desarrolladores de Scribe (SCRIBE) crearon la aplicación para iOS "Scribe - Language Keyboards" (SERVICIO) como una aplicación de código abierto. SCRIBE proporciona este SERVICIO sin coste y está destinado a usarse tal como está. - -Esta política de privacidad (POLÍTICA) se utiliza para informar al lector sobre las políticas de acceso, seguimiento, recopilación, retención, uso y divulgación de información personal (INFORMACIÓN DEL USUARIO) y datos de uso (DATOS DEL USUARIO) para todas las personas que hacen uso de este SERVICIO (USUARIOS). - -LA INFORMACIÓN DEL USUARIO se define específicamente como cualquier información relacionada con los propios USUARIOS o los dispositivos que utilizan para acceder al SERVICIO. - -LOS DATOS DEL USUARIO se definen específicamente como cualquier texto escrito o acción realizada por los USUARIOS mientras utilizan el SERVICIO. - -1. Declaración de política - -Este SERVICIO no accede, rastrea, recopila, retiene, utiliza ni divulga ninguna INFORMACIÓN DEL USUARIO ni DATOS DEL USUARIO. - -2. No rastrear - -A los USUARIOS que se comuniquen con SCRIBE para solicitar que su INFORMACIÓN DE USUARIO y sus DATOS DE USUARIO no sean rastreados se les proporcionará una copia de esta POLÍTICA así como un enlace a todos los códigos fuente como prueba de que no están siendo rastreados. - -3. Datos de terceros - -Este SERVICIO hace uso de datos de terceros. Todos los datos utilizados en la creación de este SERVICIO provienen de fuentes que permiten su uso completo en la forma en que lo hace el SERVICIO. En concreto, los datos de este SERVICIO provienen de Wikidata, Wikipedia y Unicode. Wikidata afirma que "Todos los datos estructurados en los espacios de nombres principal, de propiedad y de lexema están disponibles bajo la Licencia Creative Commons CC0; el texto en otros espacios de nombres está disponible bajo la Licencia Creative Commons Attribution-Share Alike". La política que detalla el uso de los datos de Wikidata se puede encontrar en https://www.wikidata.org/wiki/Wikidata:Licensing. Wikipedia afirma que los datos de texto, el tipo de datos utilizados por el SERVICIO, "... pueden usarse bajo los términos de la licencia Creative Commons Attribution Share-Alike". La política que detalla el uso de los datos de Wikipedia se puede encontrar en https://en.wikipedia.org/wiki/Wikipedia:Reusing_Wikipedia_content. Unicode otorga permiso, "... sin cargo, a cualquier persona que obtenga una copia de los archivos de datos Unicode y cualquier documentación asociada (los "Archivos de Datos") o el software Unicode y cualquier documentación asociada (el "Software") para tratar los Archivos de Datos o el Software sin restricción..." La política que detalla el uso de datos Unicode se puede encontrar en https://www.unicode.org/license.txt. - -4. Código fuente de terceros - -Este SERVICIO se basó en código de terceros. Todo el código fuente utilizado en la creación de este SERVICIO proviene de fuentes que permiten su uso completo en la forma en que lo hace el SERVICIO. En concreto, la base de este proyecto fue el proyecto CustomKeyboard de Ethan Sarif-Kattan. CustomKeyboard se publicó bajo una licencia MIT, que está disponible en https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE. - -5. Servicios de terceros - -Este SERVICIO hace uso de servicios de terceros para manipular algunos de los datos de terceros. En concreto, los datos se han traducido utilizando modelos de los transformadores de Hugging Face. Este servicio está cubierto por una Licencia Apache 2.0, que establece que está disponible para uso comercial, modificación, distribución, uso de patentes y uso privado. La licencia para el servicio mencionado anteriormente se puede encontrar en https://github.com/huggingface/transformers/blob/master/LICENSE. - -6. Enlaces de terceros - -Este SERVICIO contiene enlaces a páginas web externas. Si los USUARIOS hacen clic en un enlace de un tercero, serán dirigidos a un sitio web. Tenga en cuenta que estos sitios web externos no son operados por este SERVICIO. Por lo tanto, se recomienda encarecidamente a los USUARIOS que revisen la política de privacidad de estos sitios web. Este SERVICIO no tiene control ni asume ninguna responsabilidad por el contenido, las políticas de privacidad o las prácticas de los sitios o servicios de terceros. - -7. Imágenes de terceros - -Este SERVICIO contiene imágenes con derechos de autor de terceros. En concreto, esta aplicación incluye una copia de los logotipos de GitHub, Inc. y Wikidata, marcas registradas de Wikimedia Foundation, Inc. Los términos por los que se puede utilizar el logotipo de GitHub se encuentran en https://github.com/logos, y los términos para el logotipo de Wikidata se encuentran en la siguiente página de Wikimedia: https://foundation.wikimedia.org/wiki/Policy:Trademark_policy. Este SERVICIO utiliza las imágenes con derechos de autor de una manera que cumple con estos criterios, con la única desviación de una rotación del logotipo de GitHub que es común en la comunidad de código abierto para indicar que hay un enlace al sitio web de GitHub. - -8. Aviso de contenido - -Este SERVICIO permite a los USUARIOS acceder a contenido lingüístico (CONTENIDO). Parte de este CONTENIDO podría considerarse inapropiado para niños y menores de edad. El acceso al CONTENIDO mediante el SERVICIO se realiza de forma que la información no esté disponible a menos que se conozca explícitamente. En concreto, los USUARIOS "pueden" traducir palabras, conjugar verbos y acceder a otras características gramaticales del CONTENIDO que puedan ser de naturaleza sexual, violenta o inapropiada de otro modo. Los USUARIOS "no pueden" traducir palabras, conjugar verbos y acceder a otras características gramaticales del CONTENIDO que puedan ser de naturaleza sexual, violenta o inapropiada de otro modo si no conocen ya la naturaleza de este CONTENIDO. SCRIBE no asume ninguna responsabilidad por el acceso a dicho CONTENIDO. - -9. Cambios - -Esta POLÍTICA está sujeta a cambios. Las actualizaciones de esta POLÍTICA reemplazarán todas las anteriores y, si se consideran importantes, se indicarán claramente en la próxima actualización correspondiente del SERVICIO. SCRIBE alienta a los USUARIOS a revisar periódicamente esta POLÍTICA para obtener la información más reciente sobre nuestras prácticas de privacidad y familiarizarse con los cambios. - -10. Contacto - -Si tiene alguna pregunta, inquietud o sugerencia sobre esta POLÍTICA, no dude en visitar https://github.com/scribe-org o comunicarse con SCRIBE a través de scribe.langauge@gmail.com. La persona responsable de dichas consultas es Andrew Tavis McAllister. - -11. Fecha de entrada en vigor - -Esta POLÍTICA entra en vigencia a partir del 24 de mayo de 2022. + Tenga en cuenta que la versión en inglés de esta política tiene prioridad sobre todas las demás versiones.\n\nLos desarrolladores de Scribe (SCRIBE) crearon la aplicación para iOS "Scribe - Language Keyboards" (SERVICIO) como una aplicación de código abierto. SCRIBE proporciona este SERVICIO sin coste y está destinado a usarse tal como está.\n\nEsta política de privacidad (POLÍTICA) se utiliza para informar al lector sobre las políticas de acceso, seguimiento, recopilación, retención, uso y divulgación de información personal (INFORMACIÓN DEL USUARIO) y datos de uso (DATOS DEL USUARIO) para todas las personas que hacen uso de este SERVICIO (USUARIOS).\n\nLA INFORMACIÓN DEL USUARIO se define específicamente como cualquier información relacionada con los propios USUARIOS o los dispositivos que utilizan para acceder al SERVICIO.\n\nLOS DATOS DEL USUARIO se definen específicamente como cualquier texto escrito o acción realizada por los USUARIOS mientras utilizan el SERVICIO.\n\n1. Declaración de política\n\nEste SERVICIO no accede, rastrea, recopila, retiene, utiliza ni divulga ninguna INFORMACIÓN DEL USUARIO ni DATOS DEL USUARIO.\n\n2. No rastrear\n\nA los USUARIOS que se comuniquen con SCRIBE para solicitar que su INFORMACIÓN DE USUARIO y sus DATOS DE USUARIO no sean rastreados se les proporcionará una copia de esta POLÍTICA así como un enlace a todos los códigos fuente como prueba de que no están siendo rastreados.\n\n3. Datos de terceros\n\nEste SERVICIO hace uso de datos de terceros. Todos los datos utilizados en la creación de este SERVICIO provienen de fuentes que permiten su uso completo en la forma en que lo hace el SERVICIO. En concreto, los datos de este SERVICIO provienen de Wikidata, Wikipedia y Unicode. Wikidata afirma que "Todos los datos estructurados en los espacios de nombres principal, de propiedad y de lexema están disponibles bajo la Licencia Creative Commons CC0; el texto en otros espacios de nombres está disponible bajo la Licencia Creative Commons Attribution-Share Alike". La política que detalla el uso de los datos de Wikidata se puede encontrar en https://www.wikidata.org/wiki/Wikidata:Licensing. Wikipedia afirma que los datos de texto, el tipo de datos utilizados por el SERVICIO, "... pueden usarse bajo los términos de la licencia Creative Commons Attribution Share-Alike". La política que detalla el uso de los datos de Wikipedia se puede encontrar en https://en.wikipedia.org/wiki/Wikipedia:Reusing_Wikipedia_content. Unicode otorga permiso, "... sin cargo, a cualquier persona que obtenga una copia de los archivos de datos Unicode y cualquier documentación asociada (los "Archivos de Datos") o el software Unicode y cualquier documentación asociada (el "Software") para tratar los Archivos de Datos o el Software sin restricción..." La política que detalla el uso de datos Unicode se puede encontrar en https://www.unicode.org/license.txt.\n\n4. Código fuente de terceros\n\nEste SERVICIO se basó en código de terceros. Todo el código fuente utilizado en la creación de este SERVICIO proviene de fuentes que permiten su uso completo en la forma en que lo hace el SERVICIO. En concreto, la base de este proyecto fue el proyecto CustomKeyboard de Ethan Sarif-Kattan. CustomKeyboard se publicó bajo una licencia MIT, que está disponible en https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE.\n\n5. Servicios de terceros\n\nEste SERVICIO hace uso de servicios de terceros para manipular algunos de los datos de terceros. En concreto, los datos se han traducido utilizando modelos de los transformadores de Hugging Face. Este servicio está cubierto por una Licencia Apache 2.0, que establece que está disponible para uso comercial, modificación, distribución, uso de patentes y uso privado. La licencia para el servicio mencionado anteriormente se puede encontrar en https://github.com/huggingface/transformers/blob/master/LICENSE.\n\n6. Enlaces de terceros\n\nEste SERVICIO contiene enlaces a páginas web externas. Si los USUARIOS hacen clic en un enlace de un tercero, serán dirigidos a un sitio web. Tenga en cuenta que estos sitios web externos no son operados por este SERVICIO. Por lo tanto, se recomienda encarecidamente a los USUARIOS que revisen la política de privacidad de estos sitios web. Este SERVICIO no tiene control ni asume ninguna responsabilidad por el contenido, las políticas de privacidad o las prácticas de los sitios o servicios de terceros.\n\n7. Imágenes de terceros\n\nEste SERVICIO contiene imágenes con derechos de autor de terceros. En concreto, esta aplicación incluye una copia de los logotipos de GitHub, Inc. y Wikidata, marcas registradas de Wikimedia Foundation, Inc. Los términos por los que se puede utilizar el logotipo de GitHub se encuentran en https://github.com/logos, y los términos para el logotipo de Wikidata se encuentran en la siguiente página de Wikimedia: https://foundation.wikimedia.org/wiki/Policy:Trademark_policy. Este SERVICIO utiliza las imágenes con derechos de autor de una manera que cumple con estos criterios, con la única desviación de una rotación del logotipo de GitHub que es común en la comunidad de código abierto para indicar que hay un enlace al sitio web de GitHub.\n\n8. Aviso de contenido\n\nEste SERVICIO permite a los USUARIOS acceder a contenido lingüístico (CONTENIDO). Parte de este CONTENIDO podría considerarse inapropiado para niños y menores de edad. El acceso al CONTENIDO mediante el SERVICIO se realiza de forma que la información no esté disponible a menos que se conozca explícitamente. En concreto, los USUARIOS "pueden" traducir palabras, conjugar verbos y acceder a otras características gramaticales del CONTENIDO que puedan ser de naturaleza sexual, violenta o inapropiada de otro modo. Los USUARIOS "no pueden" traducir palabras, conjugar verbos y acceder a otras características gramaticales del CONTENIDO que puedan ser de naturaleza sexual, violenta o inapropiada de otro modo si no conocen ya la naturaleza de este CONTENIDO. SCRIBE no asume ninguna responsabilidad por el acceso a dicho CONTENIDO.\n\n9. Cambios\n\nEsta POLÍTICA está sujeta a cambios. Las actualizaciones de esta POLÍTICA reemplazarán todas las anteriores y, si se consideran importantes, se indicarán claramente en la próxima actualización correspondiente del SERVICIO. SCRIBE alienta a los USUARIOS a revisar periódicamente esta POLÍTICA para obtener la información más reciente sobre nuestras prácticas de privacidad y familiarizarse con los cambios.\n\n10. Contacto\n\nSi tiene alguna pregunta, inquietud o sugerencia sobre esta POLÍTICA, no dude en visitar https://github.com/scribe-org o comunicarse con SCRIBE a través de scribe.langauge@gmail.com. La persona responsable de dichas consultas es Andrew Tavis McAllister.\n\n11. Fecha de entrada en vigor\n\nEsta POLÍTICA entra en vigencia a partir del 24 de mayo de 2022. Velamos por tu seguridad Puntúa a Scribe Ver todas las aplicaciones de Scribe Compartir Scribe Licencias de terceros Autor - Los desarrolladores de Scribe (SCRIBE) han creado la aplicación iOS "Scribe - Language Keyboards" (SERVICIO) utilizando código de terceros. Todo el código fuente utilizado en la creación de este SERVICIO proviene de fuentes que permiten su uso completo en la forma en que lo hace el SERVICIO. En esta sección se enumera el código fuente en el que se basó el SERVICIO, así como las licencias coincidentes de cada uno. - -A continuación se muestra una lista de todo el código fuente utilizado, el autor o autores principales del código, la licencia bajo la cual fue publicado en el momento de su uso y un enlace a la licencia. - -1. Teclado personalizado -• Autor: EthanSK -• Licencia: MIT -• Enlace: https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE + Los desarrolladores de Scribe (SCRIBE) han creado la aplicación iOS "Scribe - Language Keyboards" (SERVICIO) utilizando código de terceros. Todo el código fuente utilizado en la creación de este SERVICIO proviene de fuentes que permiten su uso completo en la forma en que lo hace el SERVICIO. En esta sección se enumera el código fuente en el que se basó el SERVICIO, así como las licencias coincidentes de cada uno.\n\nA continuación se muestra una lista de todo el código fuente utilizado, el autor o autores principales del código, la licencia bajo la cual fue publicado en el momento de su uso y un enlace a la licencia.\n\n1. Teclado personalizado\n• Autor: EthanSK\n• Licencia: MIT\n• Enlace: https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE ¿De quién es el código que utilizamos? Licencia Enlace @@ -99,9 +40,7 @@ A continuación se muestra una lista de todo el código fuente utilizado, el aut Sigue las instrucciones para instalar los teclados Scribe en tu dispositivo. Abrir la configuración de Scribe Seleccionar - Activa los teclados que quieras utilizar - -4. Al escribir, presiona + Activa los teclados que quieras utilizar\n\n4. Al escribir, presiona para seleccionar teclados Instalación del teclado Teclados diff --git a/Scribe-i18n/values/fr/string.xml b/Scribe-i18n/values/fr/string.xml index 6240893e..c4a86c65 100644 --- a/Scribe-i18n/values/fr/string.xml +++ b/Scribe-i18n/values/fr/string.xml @@ -1,5 +1,6 @@ + @@ -7,6 +8,7 @@ + @@ -14,6 +16,7 @@ + @@ -34,12 +37,14 @@ + + @@ -51,7 +56,12 @@ + + + + + diff --git a/Scribe-i18n/values/pt/string.xml b/Scribe-i18n/values/pt/string.xml index 6240893e..c4a86c65 100644 --- a/Scribe-i18n/values/pt/string.xml +++ b/Scribe-i18n/values/pt/string.xml @@ -1,5 +1,6 @@ + @@ -7,6 +8,7 @@ + @@ -14,6 +16,7 @@ + @@ -34,12 +37,14 @@ + + @@ -51,7 +56,12 @@ + + + + + diff --git a/Scribe-i18n/values/ru/string.xml b/Scribe-i18n/values/ru/string.xml index 6240893e..c4a86c65 100644 --- a/Scribe-i18n/values/ru/string.xml +++ b/Scribe-i18n/values/ru/string.xml @@ -1,5 +1,6 @@ + @@ -7,6 +8,7 @@ + @@ -14,6 +16,7 @@ + @@ -34,12 +37,14 @@ + + @@ -51,7 +56,12 @@ + + + + + diff --git a/Scribe-i18n/values/sv/string.xml b/Scribe-i18n/values/sv/string.xml index 11ff8b89..a5476e09 100644 --- a/Scribe-i18n/values/sv/string.xml +++ b/Scribe-i18n/values/sv/string.xml @@ -19,74 +19,14 @@ Följ oss på Mastodon Chatta med teamet på Matrix Integritetspolicy - Observera att den engelska versionen av denna policy har företräde framför alla andra versioner. - -Scribe-utvecklarna (SCRIBE) byggde iOS-applikationen "Scribe - Language Keyboards" (SERVICE) som en applikation med öppen källkod. -Denna TJÄNST tillhandahålls av SCRIBE utan kostnad och är avsedd att användas i befintligt skick. - -Denna sekretesspolicy (POLICY) används för att informera läsaren om policyerna för åtkomst, spårning, insamling, lagring, användning och utlämnande av personlig information (ANVÄNDARINFORMATION) och användningsdata (ANVÄNDARDATA) för alla individer som använder denna TJÄNST (ANVÄNDARE). - -ANVÄNDARINFORMATION definieras specifikt som all information som är relaterad till användarna själva eller de enheter de använder för att få tillgång till tjänsten. - -ANVÄNDARDATA definieras specifikt som all text som skrivs eller åtgärder som utförs av ANVÄNDARNA när de använder TJÄNSTEN. - -1. Uttalande om policy - -Denna TJÄNST får inte tillgång till, spårar, samlar in, behåller, använder eller avslöjar någon ANVÄNDARINFORMATION eller ANVÄNDARDATA. - -2. Spårar inte - -ANVÄNDARE som kontaktar SCRIBE för att be om att deras ANVÄNDARINFORMATION och ANVÄNDARDATA inte spåras kommer att förses med en kopia av denna POLICY samt en länk till alla källkoder som bevis på att de inte spåras. - -3. Uppgifter från tredje part - -Denna TJÄNST använder sig av data från tredje part. All data som används vid skapandet av denna TJÄNST kommer från källor som tillåter dess fulla användning på det sätt som görs av TJÄNSTEN. Specifikt kommer data för denna TJÄNST från Wikidata, Wikipedia och Unicode. Wikidata säger att "All strukturerad data i namnrymderna main, property och lexeme görs tillgänglig under Creative Commons CC0-licensen; text i andra namnrymder görs tillgänglig under Creative Commons Attribution-Share Alike-Licens." Policyn som beskriver Wikidatas dataanvändning finns på https://www.wikidata.org/wiki/Wikidata:Licensing. Wikipedia anger att textdata, den typ av data som används av TJÄNSTEN, "... kan användas enligt villkoren i Creative Commons Attribution-Share Alike-licensen". Policyn som beskriver Wikipedias dataanvändning kan hittas på https://en.wikipedia.org/wiki/Wikipedia:Reusing_Wikipedia_content. Unicode ger tillstånd, "... kostnadsfritt, till alla personer som erhåller en kopia av Unicode-datafilerna och all tillhörande dokumentation ("datafilerna") eller Unicode-programvaran och all tillhörande dokumentation ("programvaran") för att hantera datafilerna eller programvaran utan begränsning..." Policyn för användning av Unicode-data finns på https://www.unicode.org/license.txt. - -4. Källkod från tredje part - -Denna TJÄNST baserades på kod från tredje part. All källkod som används vid skapandet av denna TJÄNST kommer från källor som tillåter dess fulla användning på det sätt som görs av TJÄNSTEN. Grunden för detta projekt var projektet CustomKeyboard av Ethan Sarif-Kattan. CustomKeyboard släpptes under en MIT-licens, och denna licens är tillgänglig på https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE. - -5. Tjänster från tredje part - -Denna TJÄNST använder sig av tjänster från tredje part för att manipulera en del av data från tredje part. Specifikt har data översatts med hjälp av modeller från Hugging Face-transformatorer. Denna tjänst omfattas av en Apache License 2.0, som anger att den är tillgänglig för kommersiellt bruk, modifiering, distribution, patentanvändning och privat bruk. Licensen för ovannämnda tjänst finns på https://github.com/huggingface/transformers/blob/master/LICENSE. - -6. Länkar till tredje part - -Denna TJÄNST innehåller länkar till externa webbplatser. Om ANVÄNDARE klickar på en länk från tredje part kommer de att dirigeras till en webbplats. Observera att dessa externa webbplatser inte drivs av denna TJÄNST. Därför rekommenderas ANVÄNDARE starkt att granska sekretesspolicyn för dessa webbplatser. Denna TJÄNST har ingen kontroll över och tar inget ansvar för innehållet, sekretesspolicyn eller praxis på tredje parts webbplatser eller tjänster. - -7. Bilder från tredje part - -Denna TJÄNST innehåller bilder som är upphovsrättsskyddade av tredje part. Specifikt innehåller den här appen en kopia av logotyperna för GitHub, Inc och Wikidata, varumärkesskyddade av Wikimedia Foundation, Inc. Villkoren för hur GitHub-logotypen kan användas finns på https://github.com/logos, och villkoren för Wikidata-logotypen finns på följande Wikimedia-sida: https://foundation.wikimedia.org/wiki/Policy:Trademark_policy. Den här tjänsten använder de upphovsrättsskyddade bilderna på ett sätt som matchar dessa kriterier, med den enda avvikelsen är en rotation av GitHub-logotypen som är vanlig i öppen källkodsgemenskapen för att indikera att det finns en länk till GitHub-webbplatsen. - -8. Meddelande om innehåll - -Denna TJÄNST gör det möjligt för ANVÄNDARE att få tillgång till språkligt innehåll (INNEHÅLL). En del av detta INNEHÅLL kan anses vara olämpligt för barn och minderåriga som har rätt att göra det. Åtkomst till INNEHÅLL med hjälp av TJÄNSTEN görs på ett sätt så att informationen inte är tillgänglig om den inte uttryckligen är känd. Specifikt "kan" ANVÄNDARE översätta ord, böja verb och få tillgång till andra grammatiska egenskaper i INNEHÅLL som kan vara sexuella, våldsamma eller på annat sätt olämpliga till sin natur. ANVÄNDARE "kan" översätta ord, böja verb och få tillgång till andra grammatiska egenskaper i INNEHÅLL som kan vara sexuella, våldsamma eller på annat sätt olämpliga till sin natur om de inte redan känner till detta INNEHÅLLS natur. SCRIBE tar inget ansvar för åtkomsten till sådant INNEHÅLL. - -9. Ändringar - -Denna POLICY kan komma att ändras. Uppdateringar av denna POLICY kommer att ersätta alla tidigare instanser, och om de anses vara väsentliga kommer de att anges tydligt i nästa tillämpliga uppdatering av TJÄNSTEN. SCRIBE uppmuntrar ANVÄNDARE att regelbundet granska denna POLICY för den senaste informationen om vår integritetspraxis och att bekanta sig med eventuella ändringar. - -10. Kontakt - -Om du har några frågor, funderingar eller förslag om denna POLICY, tveka inte att besöka https://github.com/scribe-org eller kontakta SCRIBE på scribe.langauge@gmail.com. Ansvarig för sådana förfrågningar är Andrew Tavis McAllister. - -11. Ikraftträdande - -Denna POLICY gäller från och med den 24 maj 2022. + Observera att den engelska versionen av denna policy har företräde framför alla andra versioner.\n\nScribe-utvecklarna (SCRIBE) byggde iOS-applikationen "Scribe - Language Keyboards" (SERVICE) som en applikation med öppen källkod.\nDenna TJÄNST tillhandahålls av SCRIBE utan kostnad och är avsedd att användas i befintligt skick.\n\nDenna sekretesspolicy (POLICY) används för att informera läsaren om policyerna för åtkomst, spårning, insamling, lagring, användning och utlämnande av personlig information (ANVÄNDARINFORMATION) och användningsdata (ANVÄNDARDATA) för alla individer som använder denna TJÄNST (ANVÄNDARE).\n\nANVÄNDARINFORMATION definieras specifikt som all information som är relaterad till användarna själva eller de enheter de använder för att få tillgång till tjänsten.\n\nANVÄNDARDATA definieras specifikt som all text som skrivs eller åtgärder som utförs av ANVÄNDARNA när de använder TJÄNSTEN.\n\n1. Uttalande om policy\n\nDenna TJÄNST får inte tillgång till, spårar, samlar in, behåller, använder eller avslöjar någon ANVÄNDARINFORMATION eller ANVÄNDARDATA.\n\n2. Spårar inte\n\nANVÄNDARE som kontaktar SCRIBE för att be om att deras ANVÄNDARINFORMATION och ANVÄNDARDATA inte spåras kommer att förses med en kopia av denna POLICY samt en länk till alla källkoder som bevis på att de inte spåras.\n\n3. Uppgifter från tredje part\n\nDenna TJÄNST använder sig av data från tredje part. All data som används vid skapandet av denna TJÄNST kommer från källor som tillåter dess fulla användning på det sätt som görs av TJÄNSTEN. Specifikt kommer data för denna TJÄNST från Wikidata, Wikipedia och Unicode. Wikidata säger att "All strukturerad data i namnrymderna main, property och lexeme görs tillgänglig under Creative Commons CC0-licensen; text i andra namnrymder görs tillgänglig under Creative Commons Attribution-Share Alike-Licens." Policyn som beskriver Wikidatas dataanvändning finns på https://www.wikidata.org/wiki/Wikidata:Licensing. Wikipedia anger att textdata, den typ av data som används av TJÄNSTEN, "... kan användas enligt villkoren i Creative Commons Attribution-Share Alike-licensen". Policyn som beskriver Wikipedias dataanvändning kan hittas på https://en.wikipedia.org/wiki/Wikipedia:Reusing_Wikipedia_content. Unicode ger tillstånd, "... kostnadsfritt, till alla personer som erhåller en kopia av Unicode-datafilerna och all tillhörande dokumentation ("datafilerna") eller Unicode-programvaran och all tillhörande dokumentation ("programvaran") för att hantera datafilerna eller programvaran utan begränsning..." Policyn för användning av Unicode-data finns på https://www.unicode.org/license.txt.\n\n4. Källkod från tredje part\n\nDenna TJÄNST baserades på kod från tredje part. All källkod som används vid skapandet av denna TJÄNST kommer från källor som tillåter dess fulla användning på det sätt som görs av TJÄNSTEN. Grunden för detta projekt var projektet CustomKeyboard av Ethan Sarif-Kattan. CustomKeyboard släpptes under en MIT-licens, och denna licens är tillgänglig på https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE.\n\n5. Tjänster från tredje part\n\nDenna TJÄNST använder sig av tjänster från tredje part för att manipulera en del av data från tredje part. Specifikt har data översatts med hjälp av modeller från Hugging Face-transformatorer. Denna tjänst omfattas av en Apache License 2.0, som anger att den är tillgänglig för kommersiellt bruk, modifiering, distribution, patentanvändning och privat bruk. Licensen för ovannämnda tjänst finns på https://github.com/huggingface/transformers/blob/master/LICENSE.\n\n6. Länkar till tredje part\n\nDenna TJÄNST innehåller länkar till externa webbplatser. Om ANVÄNDARE klickar på en länk från tredje part kommer de att dirigeras till en webbplats. Observera att dessa externa webbplatser inte drivs av denna TJÄNST. Därför rekommenderas ANVÄNDARE starkt att granska sekretesspolicyn för dessa webbplatser. Denna TJÄNST har ingen kontroll över och tar inget ansvar för innehållet, sekretesspolicyn eller praxis på tredje parts webbplatser eller tjänster.\n\n7. Bilder från tredje part\n\nDenna TJÄNST innehåller bilder som är upphovsrättsskyddade av tredje part. Specifikt innehåller den här appen en kopia av logotyperna för GitHub, Inc och Wikidata, varumärkesskyddade av Wikimedia Foundation, Inc. Villkoren för hur GitHub-logotypen kan användas finns på https://github.com/logos, och villkoren för Wikidata-logotypen finns på följande Wikimedia-sida: https://foundation.wikimedia.org/wiki/Policy:Trademark_policy. Den här tjänsten använder de upphovsrättsskyddade bilderna på ett sätt som matchar dessa kriterier, med den enda avvikelsen är en rotation av GitHub-logotypen som är vanlig i öppen källkodsgemenskapen för att indikera att det finns en länk till GitHub-webbplatsen.\n\n8. Meddelande om innehåll\n\nDenna TJÄNST gör det möjligt för ANVÄNDARE att få tillgång till språkligt innehåll (INNEHÅLL). En del av detta INNEHÅLL kan anses vara olämpligt för barn och minderåriga som har rätt att göra det. Åtkomst till INNEHÅLL med hjälp av TJÄNSTEN görs på ett sätt så att informationen inte är tillgänglig om den inte uttryckligen är känd. Specifikt "kan" ANVÄNDARE översätta ord, böja verb och få tillgång till andra grammatiska egenskaper i INNEHÅLL som kan vara sexuella, våldsamma eller på annat sätt olämpliga till sin natur. ANVÄNDARE "kan" översätta ord, böja verb och få tillgång till andra grammatiska egenskaper i INNEHÅLL som kan vara sexuella, våldsamma eller på annat sätt olämpliga till sin natur om de inte redan känner till detta INNEHÅLLS natur. SCRIBE tar inget ansvar för åtkomsten till sådant INNEHÅLL.\n\n9. Ändringar\n\nDenna POLICY kan komma att ändras. Uppdateringar av denna POLICY kommer att ersätta alla tidigare instanser, och om de anses vara väsentliga kommer de att anges tydligt i nästa tillämpliga uppdatering av TJÄNSTEN. SCRIBE uppmuntrar ANVÄNDARE att regelbundet granska denna POLICY för den senaste informationen om vår integritetspraxis och att bekanta sig med eventuella ändringar.\n\n10. Kontakt\n\nOm du har några frågor, funderingar eller förslag om denna POLICY, tveka inte att besöka https://github.com/scribe-org eller kontakta SCRIBE på scribe.langauge@gmail.com. Ansvarig för sådana förfrågningar är Andrew Tavis McAllister.\n\n11. Ikraftträdande\n\nDenna POLICY gäller från och med den 24 maj 2022. Håller dig säker Betygsätt Scribe Visa all Scribe-applikationer Dela Scribe Licenser från tredje part Författare - Utvecklarna på Scribe (SCRIBE) har utvecklat iOS-applikationen "Scribe - Language Keyboards" (TJÄNST) med hjälp av kod från tredje part. All källkod använd i skapelsen av denna TJÄNST kommer ifrån källor som ger oss full tillåtelse att använda koden på det sätt som görs av TJÄNSTEN. Nedan listas källkoden som TJÄNSTEN är baserad på och licenserna som sammanfaller. - -Följande lista listar all källkod, upphovsmän, licensen som gällde vid tillfället av användandet och en länk till licensen. - -1. Custom Keyboard -• Upphovsman: EthanSK -• Licens: MIT -• Länk: https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE + Utvecklarna på Scribe (SCRIBE) har utvecklat iOS-applikationen "Scribe - Language Keyboards" (TJÄNST) med hjälp av kod från tredje part. All källkod använd i skapelsen av denna TJÄNST kommer ifrån källor som ger oss full tillåtelse att använda koden på det sätt som görs av TJÄNSTEN. Nedan listas källkoden som TJÄNSTEN är baserad på och licenserna som sammanfaller. \n\nFöljande lista listar all källkod, upphovsmän, licensen som gällde vid tillfället av användandet och en länk till licensen.\n\n1. Custom Keyboard\n• Upphovsman: EthanSK\n• Licens: MIT\n• Länk: https://github.com/EthanSK/CustomKeyboard/blob/master/LICENSE Vems kod vi använde Licens Länk @@ -100,9 +40,7 @@ Följande lista listar all källkod, upphovsmän, licensen som gällde vid tillf Följ instruktionerna nedan för att installera Scribe-tangentbord på din enhet. Öppna Scribe-inställningar Välj - Aktivera tangenbort som du vill använda - -4. Medans du skriver, tryck + Aktivera tangenbort som du vill använda\n\n4. Medans du skriver, tryck För att välja tangentbord Tangentbords-installation Tangentbord