avm99963 | 9f77d0d | 2020-12-28 22:16:12 +0100 | [diff] [blame] | 1 | #!/bin/bash |
2 | emptyTranslationFile="{}" | ||||
3 | |||||
4 | # Download new translations | ||||
5 | if [ ! -f "crowdin.yml" ]; then | ||||
6 | echo "Copy crowdin.template.yml to crowdin.yml and fill in the API token." | ||||
7 | fi | ||||
8 | |||||
9 | crowdin download -c crowdin.yml | ||||
10 | |||||
11 | cd ../../src/_locales | ||||
12 | |||||
13 | for lang in *; do | ||||
14 | if [ "x$emptyTranslationFile" = "x$(cat $lang/messages.json)" ]; then | ||||
15 | echo "$lang has an empty translation. Deleting folder..." | ||||
16 | rm -rf $lang | ||||
17 | fi | ||||
18 | done |