diff options
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | AUTHORS | 1 | ||||
-rwxr-xr-x | devtools/compile_translations.sh | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -42,6 +42,7 @@ /aclocal.m4 # Tests +/mediagoblin/tests/.cache/ /mediagoblin/tests/user_dev/ # File extensions @@ -65,3 +66,7 @@ venv* /extlib/tinymce/ /extlib/video.js/ /extlib/videojs-resolution-switcher + +# Mac files +.DS_Store +.Python @@ -54,6 +54,7 @@ Thank you! * Jaakko Luttinen * Jakob Kramer * Jef van Schendel +* Jeremy Bowman * Jeremy Pope * jerome * Jessica Tallon diff --git a/devtools/compile_translations.sh b/devtools/compile_translations.sh index 787a4554..1ef9d979 100755 --- a/devtools/compile_translations.sh +++ b/devtools/compile_translations.sh @@ -35,7 +35,7 @@ fi ## ## List of uncompilable translations: Lojban (jbo), Interlingua (ia) -for file in `find mediagoblin/i18n/ -name "*.po"`; do +for file in `find mediagoblin/i18n -name "*.po"`; do if [ "$file" != "mediagoblin/i18n/jbo/mediagoblin.po" ] && \ [ "$file" != "mediagoblin/i18n/ia/mediagoblin.po" ] && \ [ "$file" != "mediagoblin/i18n/templates/en/mediagoblin.po" ]; then |