Improve import locations #806
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
name: makemessages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
makemessages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.7' | |
- name: Checkout submodules | |
run: | | |
git submodule init | |
git submodule update | |
- name: Install requirements | |
run: | | |
sudo apt-get install gettext | |
curl -O https://artifacts.crowdin.com/repo/deb/crowdin.deb | |
sudo dpkg -i crowdin.deb | |
pip install -r requirements.txt | |
pip install pymysql | |
- name: Collect localizable strings | |
run: | | |
echo "STATIC_ROOT = '/tmp'" > dmoj/local_settings.py | |
python manage.py makemessages -l en -e py,html,txt | |
python manage.py makemessages -l en -d djangojs | |
- name: Upload strings to Crowdin | |
env: | |
CROWDIN_API_TOKEN: ${{ secrets.CROWDIN_API_TOKEN }} | |
run: | | |
cat > crowdin.yaml <<EOF | |
project_identifier: dmoj | |
files: | |
- source: /locale/en/LC_MESSAGES/django.po | |
translation: /locale/%two_letters_code%/LC_MESSAGES/django.po | |
languages_mapping: | |
two_letters_code: | |
zh-CN: zh_Hans | |
sr-CS: sr_Latn | |
- source: /locale/en/LC_MESSAGES/djangojs.po | |
translation: /locale/%two_letters_code%/LC_MESSAGES/djangojs.po | |
languages_mapping: | |
two_letters_code: | |
zh-CN: zh_Hans | |
sr-CS: sr_Latn | |
EOF | |
echo "api_key: ${CROWDIN_API_TOKEN}" >> crowdin.yaml | |
crowdin upload sources |