Rename EdDSA API to win_sparkle_set_eddsa_public_key() #17
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: | |
- '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 |