mirror of
https://github.com/godotengine/godot-docs-l10n.git
synced 2025-12-31 09:49:22 +03:00
This reverts commit 5ef867caba.
In the end we take a different approach for the class reference localization,
which no longer involves including Weblate PO files in this repo but instead
the generated rst files after running l10n versions of `--doctool` and
`make_rst.py` in the engine repository.
35 lines
997 B
Bash
35 lines
997 B
Bash
#!/bin/bash
|
|
|
|
if [ -z $1 ]; then
|
|
echo "Pass a commit hash as argument to list authors between that commit and HEAD."
|
|
exit 1
|
|
fi
|
|
|
|
commit=$1
|
|
|
|
rm -f authors.txt langs.txt
|
|
|
|
for file in weblate/*.po; do
|
|
authors=$(git log $commit..HEAD --date=format:"%Y" --format="%aN <%aE>, %ad." $file | grep -v 'anonymous' | sort -u)
|
|
if [ ! -z "$authors" ]; then
|
|
new_authors=""
|
|
while read -r author; do
|
|
author_name=$(echo "$author" | sed 's/20[0-9][0-9].//')
|
|
author_year=$(echo "$author" | sed 's/.*\(20[0-9][0-9]\).*/\1/')
|
|
found_name=$(grep "$author_name" $file)
|
|
found_year=
|
|
if [ ! -z "$found_name" ]; then
|
|
found_year=$(grep "$author_year" <<< "$found_name")
|
|
fi
|
|
if [ -z "$found_name" -o -z "$found_year" ]; then
|
|
new_authors+="# "$author$'\n'
|
|
fi
|
|
done <<< "$authors"
|
|
if [ ! -z "$new_authors" ]; then
|
|
echo "$file" >> langs.txt
|
|
echo -e "\n* $file:\n" >> authors.txt
|
|
echo "$new_authors" >> authors.txt
|
|
fi
|
|
fi
|
|
done
|