mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-05 11:22:30 -04:00
added action to update translation catalogs (test)
This commit is contained in:
parent
059e83a765
commit
eec4b34f44
32
.github/workflows/update-translations.yml
vendored
Normal file
32
.github/workflows/update-translations.yml
vendored
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
name: Update translation files
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * *"
|
||||||
|
|
||||||
|
permissions: write-all
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
update_catalogs:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v3
|
||||||
|
with:
|
||||||
|
python-version: "3.10"
|
||||||
|
cache: 'pip'
|
||||||
|
- name: Install dependencies
|
||||||
|
run: pip install babel
|
||||||
|
- name: Extract messages
|
||||||
|
run: pybabel extract -o twblue.pot --msgid-bugs-address "manuel@manuelcortez.net" --copyright-holder "MCV software" --input-dirs .
|
||||||
|
working-directory: 'src'
|
||||||
|
- name: Update catalogs
|
||||||
|
run: pybabel update --input-file twblue.pot --domain twblue --output-dir locales
|
||||||
|
working-directory: 'src'
|
||||||
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||||
|
with:
|
||||||
|
commit_message: Updated translation catalogs
|
||||||
|
repository: src/locales
|
Loading…
x
Reference in New Issue
Block a user