da: refresh translation and let Gemini translate the first 500 entries #1003
This file contains hidden or 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: Prevent unintended msgid changes | |
on: | |
pull_request: | |
paths: | |
- "po/*.po" | |
jobs: | |
check-msgid-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
with: | |
fetch-depth: 0 | |
- name: Reset git | |
run: git reset origin/main | |
- name: Check po file changes | |
run: python3 .github/workflows/check-msgid-changes.py |