rb@98: #
rb@232: # Makefile for eskp
rb@98: #
rb@98: 
rb@232: # location for the eskp.py we use:
rb@98: export PYTHONPATH=$(PWD)
rb@98: 
rb@98: pylint:
rb@232: 	pylint ./eskp.py
rb@98: 
rb@98: pybabel_init:
rb@232: 	pybabel extract -o ./translations/eskp.pot .
rb@232: 	pybabel init -i ./translations/eskp.pot -d translations -l de
rb@232: 	pybabel init -i ./translations/eskp.pot -d translations -l en
rb@98: 
rb@98: pybabel_update:
rb@232: 	pybabel extract -o ./translations/eskp.pot .
rb@232: 	pybabel update -i ./translations/eskp.pot -d translations -l de
rb@232: 	pybabel update -i ./translations/eskp.pot -d translations -l en
rb@98: 
rb@155: msgfmt:
rb@155: 	msgfmt --strict ./translations/de/LC_MESSAGES/messages.po -o ./translations/de/LC_MESSAGES/messages.mo
j@1040: 	msgfmt --strict ./translations/en/LC_MESSAGES/messages.po -o ./translations/en/LC_MESSAGES/messages.mo
j@1040: