Update metadata_display plugin for Python 3.
[mediagoblin.git] / devtools / compile_translations.sh
CommitLineData
118ca330 1#!/bin/sh
de7e19f0
CAW
2
3# GNU MediaGoblin -- federated, autonomous media hosting
4# Copyright (C) 2015 GNU MediaGoblin contributors. See AUTHORS.
5#
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.
10#
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.
15#
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/>.
18
19# exit if anything fails
20set -e
21
aac69eb9
CAW
22if [ -f "./bin/pybabel" ]; then
23 PYBABEL="./bin/pybabel";
24else
25 PYBABEL=pybabel;
26fi
27
28
de7e19f0
CAW
29## This used to be a lot simpler...
30##
ab53aea8 31## But now we have several translations that we can't compile
de7e19f0
CAW
32## currently. We don't want to get rid of it because we want it... see
33## https://issues.mediagoblin.org/ticket/1070
34## to track progress.
ab53aea8
BB
35##
36## List of uncompilable translations: Lojban (jbo), Interlingua (ia)
de7e19f0
CAW
37
38for file in `find mediagoblin/i18n/ -name "*.po"`; do
39 if [ "$file" != "mediagoblin/i18n/jbo/mediagoblin.po" ] && \
ab53aea8 40 [ "$file" != "mediagoblin/i18n/ia/mediagoblin.po" ] && \
de7e19f0
CAW
41 [ "$file" != "mediagoblin/i18n/templates/en/mediagoblin.po" ]; then
42 mkdir -p `dirname $file`/LC_MESSAGES/;
aac69eb9
CAW
43 $PYBABEL compile -i $file \
44 -o `dirname $file`/LC_MESSAGES/mediagoblin.mo \
45 -l `echo $file | awk -F / '{ print $3 }'`;
de7e19f0
CAW
46 else
47 echo "Skipping $file which pybabel can't compile :(";
48 fi;
49done