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
22 if [ -f "./bin/pybabel" ]; then
23 PYBABEL
="./bin/pybabel";
29 ## This used to be a lot simpler...
31 ## But now we have a Lojban translation that we can't compile
32 ## currently. We don't want to get rid of it because we want it... see
33 ## https://issues.mediagoblin.org/ticket/1070
36 for file in `find mediagoblin/i18n/ -name "*.po"`; do
37 if [ "$file" != "mediagoblin/i18n/jbo/mediagoblin.po" ] && \
38 [ "$file" != "mediagoblin/i18n/templates/en/mediagoblin.po" ]; then
39 mkdir
-p `dirname $file`/LC_MESSAGES
/;
40 $PYBABEL compile
-i $file \
41 -o `dirname $file`/LC_MESSAGES
/mediagoblin.mo \
42 -l `echo $file | awk -F / '{ print $3 }'`;
44 echo "Skipping $file which pybabel can't compile :(";