Lectures
: Replace guided mode with status bar edit and create view
#2571
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: Check if German and English translations are consistent | |
on: | |
pull_request: | |
paths: | |
- 'src/main/webapp/i18n/**' | |
push: | |
paths: | |
- 'src/main/webapp/i18n/**' | |
jobs: | |
build: | |
name: Check if translation keys are consistent | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Check if translation keys match | |
run: python .ci/translation-file-checker/translation_file_checker.py --german-files src/main/webapp/i18n/de/ --english-files src/main/webapp/i18n/en/ |