diff options
Diffstat (limited to 'devtools')
-rwxr-xr-x | devtools/update_translations.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/devtools/update_translations.sh b/devtools/update_translations.sh index 1887e7f5..abc96be6 100755 --- a/devtools/update_translations.sh +++ b/devtools/update_translations.sh @@ -57,7 +57,9 @@ echo "==> Compiling .mo files" for file in `find mediagoblin/i18n/ -name "*.po"`; do if [ "$file" != "mediagoblin/i18n/jbo/LC_MESSAGES/mediagoblin.po" ]; then - ./bin/pybabel compile -i $file -d mediagoblin/i18n/ -l `echo $file | awk -F / '{ print $3 }'`; + ./bin/pybabel compile -i $file \ + -d mediagoblin/i18n/ \ + -l `echo $file | awk -F / '{ print $3 }'`; else echo "Skipping $file which pybabel can't compile :("; fi; |