Skip to content

[FR] Translated the new strings (#566) #109

[FR] Translated the new strings (#566)

[FR] Translated the new strings (#566) #109

Workflow file for this run

name: Clean/sort locale files
on:
push:
workflow_dispatch:
jobs:
clean_locale_files:
runs-on: ubuntu-latest
steps:
- name: Check out this repo
uses: actions/checkout@v3
- name: install dependencies
run: |
sudo apt-get install -y gettext
- name: Clean/sort locale files
run: |-
DO_SORT=true ./clean_all.sh
- name: Commit and push if it changed
run: |-
git config user.name "Automated"
git config user.email "actions@users.noreply.github.com"
git add -A
timestamp=$(date -u)
git commit -m "Cleaning locale files: ${timestamp}" || exit 0
git push