0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-19 19:42:17 +02:00

Script to generate the list of translators, useful for thanks in release email

This commit is contained in:
Nicolas Raoul 2012-03-21 17:19:17 +09:00
parent f33de4b9fd
commit 2b0933ad8c

8
tools/list-of-translators.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
# Usage:
# - Go to http://crowdin.net/project/ankidroid/activity_stream
# - Click on "More" a few times, up to the date of the last release
# - Save generated HTML as /tmp/activity-stream.html
# - Run this script
sed -e "s/suggested/suggested\n/g" /tmp/activity-stream.html | grep suggested | grep profile | sed -e "s/.*profile\///g" | sed -e "s/<\/a>.*//g" | sed -e "s/\".*//g" | sort -u | grep -v AnkiDroid | grep -v REMOVED_USER | sed -e "s/^/- /g"