Move compiling translations into its own script
[larjonas-mediagoblin.git] / devtools / compile_translations.sh
blob7ce0cb7961274530a5540816a1056bf6d5f34a8e
1 #!/bin/bash
3 # GNU MediaGoblin -- federated, autonomous media hosting
4 # Copyright (C) 2015 GNU MediaGoblin contributors. See AUTHORS.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU Affero General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU Affero General Public License for more details.
16 # You should have received a copy of the GNU Affero General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # exit if anything fails
20 set -e
22 ## This used to be a lot simpler...
24 ## But now we have a Lojban translation that we can't compile
25 ## currently. We don't want to get rid of it because we want it... see
26 ## https://issues.mediagoblin.org/ticket/1070
27 ## to track progress.
29 for file in `find mediagoblin/i18n/ -name "*.po"`; do
30 if [ "$file" != "mediagoblin/i18n/jbo/mediagoblin.po" ] && \
31 [ "$file" != "mediagoblin/i18n/templates/en/mediagoblin.po" ]; then
32 mkdir -p `dirname $file`/LC_MESSAGES/;
33 ./bin/pybabel compile -i $file \
34 -o `dirname $file`/LC_MESSAGES/mediagoblin.mo \
35 -l `echo $file | awk -F / '{ print $3 }'`;
36 else
37 echo "Skipping $file which pybabel can't compile :(";
38 fi;
39 done