commit a0707ccc542fb2d3dc84bb1f5fb88cd37ec05ada Author: Jonah Aragon Date: Tue Apr 11 12:33:57 2023 -0500 Automatic translation exports diff --git a/.github/workflows/crowdin-download.yml b/.github/workflows/crowdin-download.yml new file mode 100644 index 00000000..07b5cf26 --- /dev/null +++ b/.github/workflows/crowdin-download.yml @@ -0,0 +1,54 @@ +# Copyright (c) 2022-2023 Jonah Aragon + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +name: 💬 Crowdin Download + +on: + workflow_dispatch: + schedule: + - cron: '0 4 * * *' + +permissions: write-all + +jobs: + synchronize-with-crowdin: + runs-on: ubuntu-latest + + steps: + + - name: Checkout + uses: actions/checkout@v3 + + - name: crowdin action + uses: crowdin/github-action@v1.7.1 + with: + upload_sources: false + upload_translations: false + download_sources: false + download_translations: true + push_translations: true + create_pull_request: false + localization_branch_name: main + download_translations_args: '--all' + config: crowdin.yml + env: + GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} diff --git a/README.md b/README.md new file mode 100644 index 00000000..9634f32f --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Exported Translations + +This is an archive of translations on Crowdin, updated daily. This repo is not used for building the final website. Pull Requests here will be rejected, to help translate the site please [join the project on Crowdin](https://crowdin.com/project/privacyguides). If you have additional questions, feel free to [ask on Matrix](https://matrix.to/#/#pg-i18n:aragon.sh). + +If you want to build a translated version of this site locally using these files, you can follow the instructions [here](https://github.com/privacyguides/privacyguides.org/blob/main/README.md#local-translated-site-builds), replacing steps 1-3 with: + +1. Copy the `/includes`, `/i18n`, and `/theme` folders from this repo to the root of the [privacyguides.org](https://github.com/privacyguides/privacyguides.org) repo. diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 00000000..16c2c3a4 --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,37 @@ +# Copyright (c) 2023 Jonah Aragon + +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: + +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. + +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +# IN THE SOFTWARE. + +api_token_env: CROWDIN_PERSONAL_TOKEN +project_id: "509862" +"preserve_hierarchy": true +files: +- source: "/docs/**/*.*" + translation: "/i18n/%two_letters_code%/**/%file_name%.%file_extension%" + skip_untranslated_files: false +- source: "/theme/overrides/*.en.html" + translation: "/theme/overrides/%file_name%.%two_letters_code%.html" + translation_replace: + "en.": "" + skip_untranslated_files: false +- source: "/includes/*.en.*" + translation: "/includes/%file_name%.%two_letters_code%.%file_extension%" + translation_replace: + "en.": "" + skip_untranslated_files: false