Skip to content

Support major.minor.build versions in <sparkle:minimumSystemVersion> #15

Support major.minor.build versions in <sparkle:minimumSystemVersion>

Support major.minor.build versions in <sparkle:minimumSystemVersion> #15

name: Check translations
on:
push:
paths:
- 'translations/*.po'
pull_request:
paths:
- 'translations/*.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 translations/*.po ; do
echo "checking $i..."
msgfmt -v -c -o /dev/null $i
done