Skip to content
Snippets Groups Projects
Unverified Commit 53ca6904 authored by David's avatar David Committed by GitHub
Browse files

transifex: update config (#173)

ci: use i18n reusable workflows
parent fc3e5d26
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
#
# Copyright (C) 2022 Graz University of Technology.
# Copyright (C) 2023 Graz University of Technology.
#
# Invenio-Previewer is free software; you can redistribute it and/or modify
# Invenio is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more details.
name: i18n:pull translations
......@@ -10,55 +10,5 @@ on: workflow_dispatch # manually trigger
jobs:
i18n-pull:
runs-on: ubuntu-20.04
env:
PYTHON-VERSION: 3.9
steps:
- name: Checkout
uses: actions/checkout@v2
# setup python
- name: Set up Python ${{ env.PYTHON-VERSION }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON-VERSION }}
# install dependencies
- name: Install dependencies
run: |
pip install -e ".[all]"
# install transifex client
- name: transifex-client
run: |
pip install transifex-client
# store token
- name: store token
run: |
touch ~/.transifexrc
echo [https://www.transifex.com] >> ~/.transifexrc
echo api_hostname=https://api.transifex.com >> ~/.transifexrc
echo hostname=https://www.transifex.com >> ~/.transifexrc
echo password=${{ secrets.TRANSIFEX_TOKEN }} >> ~/.transifexrc
echo username=api >> ~/.transifexrc
# pull all lang
- name: pull translations
run: |
tx pull -a -f
# remove transifex credential file
- name: remove transifexrc file
uses: JesseTG/rm@v1.0.2
with:
path: ~/.transifexrc
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: i18n:pulled translations
title: i18n:pulled translations
body: i18n:pulled translations
branch: 101-translations-pull # name of branch which PR is created from
delete-branch: true # delete branch once merged,closed
uses: inveniosoftware/invenio-i18n/.github/workflows/i18n-pull-base.yml@master
secrets: inherit
# -*- coding: utf-8 -*-
#
# Copyright (C) 2022 Graz University of Technology.
# Copyright (C) 2023 Graz University of Technology.
#
# Invenio-Previewer is free software; you can redistribute it and/or modify
# Invenio is free software; you can redistribute it and/or modify
# it under the terms of the MIT License; see LICENSE file for more details.
name: i18n:push translations
......@@ -10,60 +10,7 @@ on: workflow_dispatch # manually trigger
jobs:
i18n-extract:
runs-on: ubuntu-20.04
env:
PYTHON-VERSION: 3.9
steps:
- name: Checkout
uses: actions/checkout@v2
# setup python
- name: Set up Python ${{ env.PYTHON-VERSION }}
uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON-VERSION }}
# install dependencies
- name: Install dependencies
run: |
pip install -e ".[all]"
# install transifex client
- name: transifex-client
run: |
pip install transifex-client
# store token
- name: store token
run: |
touch ~/.transifexrc
echo [https://www.transifex.com] >> ~/.transifexrc
echo api_hostname=https://api.transifex.com >> ~/.transifexrc
echo hostname=https://www.transifex.com >> ~/.transifexrc
echo password=${{ secrets.TRANSIFEX_TOKEN }} >> ~/.transifexrc
echo username=api >> ~/.transifexrc
# extract
- name: extract_messages
run: |
python setup.py extract_messages
# push source
- name: push_messages
run: |
tx push -s
# remove transifex credential file
- name: remove transifexrc file
uses: JesseTG/rm@v1.0.2
with:
path: ~/.transifexrc
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
uses: inveniosoftware/invenio-i18n/.github/workflows/i18n-push-base.yml@master
with:
commit-message: i18n:push translations
title: i18n:push translations
body: i18n:push translations
branch: 101-translations-push # name of branch which PR is created from
delete-branch: true # delete branch once merged,closed
extract-backend: true
secrets: inherit
......@@ -2,6 +2,7 @@
#
# This file is part of Invenio.
# Copyright (C) 2016-2019 CERN.
# Copyright (C) 2023 Graz University of Technology.
#
# Invenio is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
......@@ -25,9 +26,9 @@
# $ tx pull -a
[main]
host = https://www.transifex.com
host = https://app.transifex.com
[invenio.invenio-previewer-messages]
[o:inveniosoftware:p:invenio:r:invenio-previewer-messages]
file_filter = invenio_previewer/translations/<lang>/LC_MESSAGES/messages.po
source_file = invenio_previewer/translations/messages.pot
source_lang = en
......
......@@ -9,7 +9,7 @@
# under the terms of the MIT License; see LICENSE file for more details.
python -m check_manifest --ignore ".*-requirements.txt" && \
python -m setup extract_messages --dry-run
python -m setup extract_messages --output-file /dev/null
python -m sphinx.cmd.build -qnNW docs docs/_build/html && \
python -m pytest
python -m sphinx.cmd.build -qnNW -b doctest docs docs/_build/doctest
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment