Update translation files #2109
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: CI | |
on: [push, pull_request] | |
jobs: | |
linux: | |
name: Static linting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install prerequisites | |
run: sudo apt-get update && sudo apt-get install gettext | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Lint | |
run: | | |
SHELLSCRIPT_ERROR=0 | |
for file in $(git ls-files '*.po'); do | |
msgfmt "${file}" || SHELLSCRIPT_ERROR=1 | |
done | |
exit "${SHELLSCRIPT_ERROR}" |