Skip to content

Commit

Permalink
adds makemessages and compilemessages shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanfoulis committed Jan 9, 2013
1 parent ef29acf commit 87695f4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions compilemessages.sh
@@ -0,0 +1,4 @@
for dir in ./cmsplugin_*
do
(cd $dir && echo $dir && django-admin.py compilemessages)
done
4 changes: 4 additions & 0 deletions makemessages.sh
@@ -0,0 +1,4 @@
for dir in ./cmsplugin_*
do
(cd $dir && echo $dir && django-admin.py makemessages --all)
done

0 comments on commit 87695f4

Please sign in to comment.