Merge pull request #4 from nupplaphil/feat/transifex_addons

Add message.po scripts for addons
This commit is contained in:
Tobias Diekershoff 2021-05-22 14:00:16 +02:00 committed by GitHub
commit 61f6c1a995
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

View File

@ -8,3 +8,5 @@ RUN apt-get update -q && \
&& rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/*
COPY check-messages.sh /check-messages.sh
COPY check-addons.sh /check-addons.sh
COPY xgettext-addon.sh /xgettext-addon.sh

17
transifex/check-addons.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
#
# Checks the addons messages.po files
#
DIR=${FRIENDICA_DIR:-$PWD}
ADDON_DIR=${FRIENDICA_ADDON_DIR:-"$DIR/addon"}
cd $ADDON_DIR
# Skip first 4 lines in possible diff, because they're header
# Skip all lines of the git diff starting with "@@" or comments or starting "POT-Creation-Date"
if [[ $(git diff -U0 **/messages.po | grep -vE '^(@@|\-"POT-Creation-Date|\+"POT-Creation-Date|\-#|\+#)' | wc -l) -gt 4 ]]; then
echo "$(git diff **/messages.po)"
exit 1
else
echo "Nothing to update"
fi

13
transifex/xgettext-addon.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
#
# Checks the addons messages.po files
#
DIR=${FRIENDICA_DIR:-$PWD}
ADDON_DIR=${FRIENDICA_ADDON_DIR:-"$DIR/addon"}
cd $ADDON_DIR
changed_files=($(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | cut -f2 | sed '/^\./d' | cut -d "/" -f1 | uniq))
cd $DIR
for addon in "${changed_files[@]}"; do
./bin/run_xgettext.sh --addon $addon;
done