Update projects for Xcode 16 #55
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 translations | |
on: | |
push: | |
paths: | |
- 'locales/*.po' | |
pull_request: | |
paths: | |
- 'locales/*.po' | |
jobs: | |
check-po-validity: | |
name: Check translations | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install GNU gettext | |
run: sudo apt-get install gettext | |
- name: Check PO files with msgfmt -v -c | |
run: | | |
for i in locales/*.po ; do | |
echo "checking $i..." | |
msgfmt -v -c -o /dev/null $i | |
done |