diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2021-08-01 10:17:14 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-08-02 10:06:27 +0200 |
commit | 900baf2eaefcde51c6de740cde3f0a99eb2f0791 (patch) | |
tree | d8213a8a4ddf7d119424bf7eff3446e297128820 /.github | |
parent | 7fa7177759d46b55b9c3684df174832496877988 (diff) | |
download | searxng-900baf2eaefcde51c6de740cde3f0a99eb2f0791.tar.gz searxng-900baf2eaefcde51c6de740cde3f0a99eb2f0791.zip |
[mod] manage - implement babel commands, drop update_translations.sh
In ./manage implement babel.*:
- extract : extract messages from source files and generate POT file
- update : update existing message catalogs from POT file
- compile : compile translation catalogs into binary MO files
Replace searx_extra/update/update_translations.sh by command:
- ci.babel.update
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/integration.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index f4ffd77be..78fc66e3f 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -111,9 +111,7 @@ jobs: - name: Update transations id: update continue-on-error: true - run: | - pip install babel jinja2 - searx_extra/update/update_translations.sh + run: make V=1 ci.babel.update - name: Open pull request if: steps.update.outcome == 'success' uses: peter-evans/create-pull-request@v3 |