feat(i18n): routine i18n updates on 2024-04-13 #29
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 printf format string in translations | |
on: | |
pull_request: | |
paths: | |
- "lang/po/*.po" | |
- "tools/check_po_printf_format.py" | |
jobs: | |
check-po-printf: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: "Install dependencies" | |
run: | | |
sudo apt-get update | |
sudo apt-get install python3-pip | |
sudo pip3 install polib | |
- uses: actions/checkout@v4 | |
- name: "Check printf format string in translations" | |
run: ./tools/check_po_printf_format.py |