-
-
Notifications
You must be signed in to change notification settings - Fork 465
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
564 changed files
with
429,031 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Multilingual Docs Download | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
localizse: | ||
permissions: write-all | ||
name: "Localisize Docs" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: "Install Python" | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
cache: "pip" | ||
cache-dependency-path: "requirements/_locale.txt" | ||
- name: "Install Dependencies" | ||
run: | | ||
python -m pip install --upgrade pip setuptools wheel | ||
pip install -r requirements/_locale.txt | ||
pip install .[speed,voice,docs] | ||
- name: "Get locales" | ||
run: | | ||
make html | ||
sphinx-build -b gettext . ./build/locales | ||
working-directory: ./docs | ||
- name: "Build locales" | ||
run: | ||
sphinx-intl update -p ./build/locales -l de -l ja -l de -l ja -l fr -l it -l | ||
hi -l ko -l pt_BR -l es -l zh_CN -l ru | ||
working-directory: ./docs | ||
- name: "Crowdin" | ||
uses: crowdin/github-action@v2 | ||
with: | ||
upload_sources: false | ||
upload_translations: false | ||
download_translations: false | ||
download_bundle: ${{ secrets.CROWDIN_BUNDLE_ID }} | ||
localization_branch_name: l10n_master | ||
create_pull_request: true | ||
pull_request_title: "docs: Update localizations from Crowdin" | ||
pull_request_body: | ||
"Crowdin download was triggered due to completely translated file or | ||
project. Starting sync. CC @Lulalaby" | ||
pull_request_base_branch_name: "master" | ||
pull_request_reviewers: "Lulalaby" | ||
config: "crowdin.yml" | ||
base_path: "." | ||
commit_message: "docs: Update localizations from Crowdin" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | ||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_API_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Multilingual Docs Upload | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
localizse: | ||
permissions: write-all | ||
name: "Localisize Docs" | ||
runs-on: ubuntu-latest | ||
if: | ||
contains(github.event.head_commit.message, '!crowdin upload') || github.event_name | ||
== 'workflow_dispatch' | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: "Install Python" | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
cache: "pip" | ||
cache-dependency-path: "requirements/_locale.txt" | ||
- name: "Install Dependencies" | ||
run: | | ||
python -m pip install --upgrade pip setuptools wheel | ||
pip install -r requirements/_locale.txt | ||
pip install .[speed,voice,docs] | ||
- name: "Get locales" | ||
run: | | ||
make html | ||
sphinx-build -b gettext . ./build/locales | ||
working-directory: ./docs | ||
- name: "Build locales" | ||
run: | ||
sphinx-intl update -p ./build/locales -l de -l ja -l de -l ja -l fr -l it -l | ||
hi -l ko -l pt_BR -l es -l zh_CN -l ru | ||
working-directory: ./docs | ||
- name: "Crowdin" | ||
uses: crowdin/github-action@v2 | ||
with: | ||
upload_sources: true | ||
upload_translations: false | ||
download_translations: false | ||
localization_branch_name: l10n_master | ||
create_pull_request: false | ||
config: "crowdin.yml" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | ||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_API_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
base_path: "docs/build/locales" | ||
base_url: "https://pycord.crowdin.com" | ||
|
||
preserve_hierarchy: true | ||
|
||
commit_message: "docs: Update translations" | ||
|
||
export_languages: ["de", "ja", "fr", "it", "hi", "ko", "pt-BR", "es-ES", "zh-CN"] | ||
|
||
bundles: | ||
- 1 | ||
|
||
files: | ||
[ | ||
{ | ||
source: "**/*.pot", | ||
translation: "/docs/locales/%two_letters_code%/LC_MESSAGES/%original_path%/%file_name%.po", | ||
}, | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.