tibia-client/tools/gen_needed_translations.sh

8 lines
364 B
Bash
Raw Normal View History

2012-07-31 01:52:06 +02:00
#!/bin/bash
echo '-- generated by ./tools/gen_needed_translations.sh'
echo 'neededTranslations = {'
cat <(find -L \( -name "*.lua" -o -name "*.otui" \) -exec grep -oE "tr\\('(\\\\'|[^'])*'" {} \;) \
<(find -L \( -name "*.lua" -o -name "*.otui" \) -exec grep -oE "tr\\(\"(\\\\\"|[^\"])*\"" {} \;) \
2012-07-31 01:52:06 +02:00
| sort | uniq | sed "s/^tr(.\(.*\).$/ \"\1\",/"
echo '}'