Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. #!/bin/bash
  2. cd ~/Documents/python/MagiCircles/ &&\
  3. source env/bin/activate &&\
  4. rm -f web/locale/ja/LC_MESSAGES/django.po &&\
  5. python manage.py makemessages -l ja --ignore=env/* --ignore=./settings.py --ignore=sample_project/sample_project/settings.py --ignore=web/templates/password/* --ignore=web/django_translated.py &&\
  6. deactivate &&\
  7. cd ~/Documents/python/StardustRun/ &&\
  8. source env/bin/activate &&\
  9. rm -f stardustrun/locale/ja/LC_MESSAGES/django.po &&\
  10. python manage.py makemessages -l ja --ignore=env/* --ignore=stardustrun_project/settings.py &&\
  11. cat stardustrun/locale/ja/LC_MESSAGES/django.po >> ../MagiCircles/web/locale/ja/LC_MESSAGES/django.po &&\
  12. deactivate &&\
  13. cd ~/Documents/python/CinderellaProducers/ &&\
  14. source env/bin/activate &&\
  15. rm -f cpro/locale/ja/LC_MESSAGES/django.po &&\
  16. python manage.py makemessages -l ja --ignore=env/* --ignore=cpro_project/settings.py --ignore=cpro/django_translated.py &&\
  17. cat cpro/locale/ja/LC_MESSAGES/django.po >> ../MagiCircles/web/locale/ja/LC_MESSAGES/django.po &&\
  18. deactivate &&\
  19. echo 'Generated ' ~/Documents/python/MagiCircles/web/locale/ja/LC_MESSAGES/django.po
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement