mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
i18n: reduce noise-only commits from Transifex
This commit is contained in:
parent
75b5303b49
commit
4885b4afec
1 changed files with 7 additions and 1 deletions
|
@ -10,16 +10,22 @@ git config --global http.sslVerify false
|
|||
|
||||
export QT_SELECT=5
|
||||
tx pull --force --source --all
|
||||
|
||||
git add --verbose lang/calamares*.ts
|
||||
git commit --author='Calamares CI <groot@kde.org>' --message='[core] Automatic merge of Transifex translations' | true
|
||||
|
||||
# Transifex updates the PO-Created timestamp also when nothing interesting
|
||||
# has happened, so drop the files which have just 1 line changed (the
|
||||
# PO-Created line). This applies only to modules which use po-files.
|
||||
git diff --numstat src/modules | awk '($1==1 && $2==1){print $3}' | xargs git checkout --
|
||||
|
||||
for MODULE_DIR in `find src/modules -maxdepth 1 -mindepth 1 -type d`; do
|
||||
FILES=(${MODULE_DIR}/*.py)
|
||||
if [ ${#FILES[@]} -gt 0 ]; then
|
||||
MODULE_NAME=$(basename ${MODULE_DIR})
|
||||
if [ -d ${MODULE_DIR}/lang ]; then
|
||||
# Convert PO files to MO files
|
||||
for POFILE in `find . -name "*.po"` ; do
|
||||
for POFILE in `find ${MODULE_DIR} -name "*.po"` ; do
|
||||
msgfmt -o ${POFILE/.po/.mo} $POFILE
|
||||
done
|
||||
git add --verbose ${MODULE_DIR}/lang/*
|
||||
|
|
Loading…
Add table
Reference in a new issue