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 several translations 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 ## List of uncompilable translations: Lojban (jbo), Interlingua (ia)
38 for file in `find mediagoblin/i18n/ -name "*.po"`; do
39 if [ "$file" != "mediagoblin/i18n/jbo/mediagoblin.po" ] && \
40 [ "$file" != "mediagoblin/i18n/ia/mediagoblin.po" ] && \
41 [ "$file" != "mediagoblin/i18n/templates/en/mediagoblin.po" ]; then
42 mkdir
-p `dirname $file`/LC_MESSAGES
/;
43 $PYBABEL compile
-i $file \
44 -o `dirname $file`/LC_MESSAGES
/mediagoblin.mo \
45 -l `echo $file | awk -F / '{ print $3 }'`;
47 echo "Skipping $file which pybabel can't compile :(";