Update BackupSuite.po (#29) #54
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: backupsuite | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: install prerequisites | |
run: | | |
sudo apt-get -q update | |
sudo apt-get install automake | |
sudo apt-get install git | |
sudo apt-get install build-essential | |
sudo apt-get install gettext | |
sudo apt-get install python2-dev | |
- name: compile python2 | |
run: | | |
python2 -m compileall . | |
- name: compile python3 | |
run: | | |
python3 -m compileall . | |
- name: compile po files | |
run: | | |
find . -type f -name "*.po" -exec msgfmt {} -o {}.mo \; | |
echo done! |