| 1 | name: Are translations sane |
| 2 | |
| 3 | on: [pull_request] |
| 4 | |
| 5 | jobs: |
| 6 | PR_test_build: |
| 7 | runs-on: ubuntu-24.04 |
| 8 | |
| 9 | steps: |
| 10 | - uses: actions/checkout@v4 |
| 11 | - name: Check for translations |
| 12 | if: github.event_name == 'pull_request' |
| 13 | run: | |
| 14 | for i in res/values/strings_*.arb; |
| 15 | do |
| 16 | echo "tr: $i" |
| 17 | cat $i | jq || exit 1 |
| 18 | done |