Skip to content

progress in translation #1

progress in translation

progress in translation #1

Workflow file for this run

name: Check PO Syntax & Auto-Wrap
on:
push:
branches: [ "**" ]
workflow_dispatch:
permissions:
contents: write
jobs:
format-and-check:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: Install gettext & powrap
run: |
sudo apt-get update && sudo apt-get install -y gettext
pip install powrap
- name: Auto-wrap PO files to 80 characters
run: |
find . -name "*.po" -exec powrap --quiet {} +
- name: Commit & Push formatted PO files
uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: "Auto-format PO files to 80 chars [skip ci]"
file_pattern: "*.po"
- name: Validate PO syntax with msgfmt
run: |
find . -name "*.po" -exec msgfmt --check --check-format -o /dev/null {} \;