docs: Document video resolution config.
[mediagoblin.git] / devtools / compile_translations.sh
1 #!/bin/sh
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
20 set -e
21
22 if [ -f "./bin/pybabel" ]; then
23 PYBABEL="./bin/pybabel";
24 else
25 PYBABEL=pybabel;
26 fi
27
28
29 ## This used to be a lot simpler...
30 ##
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
34 ## to track progress.
35 ##
36 ## List of uncompilable translations: Lojban (jbo), Interlingua (ia)
37
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 }'`;
46 else
47 echo "Skipping $file which pybabel can't compile :(";
48 fi;
49 done