rb@98
|
1 |
#
|
rb@232
|
2 |
# Makefile for eskp
|
rb@98
|
3 |
#
|
rb@98
|
4 |
|
rb@232
|
5 |
# location for the eskp.py we use:
|
rb@98
|
6 |
export PYTHONPATH=$(PWD)
|
rb@98
|
7 |
|
rb@98
|
8 |
pylint:
|
rb@232
|
9 |
pylint ./eskp.py
|
rb@98
|
10 |
|
rb@98
|
11 |
pybabel_init:
|
rb@232
|
12 |
pybabel extract -o ./translations/eskp.pot .
|
rb@232
|
13 |
pybabel init -i ./translations/eskp.pot -d translations -l de
|
rb@232
|
14 |
pybabel init -i ./translations/eskp.pot -d translations -l en
|
rb@98
|
15 |
|
rb@98
|
16 |
pybabel_update:
|
rb@232
|
17 |
pybabel extract -o ./translations/eskp.pot .
|
rb@232
|
18 |
pybabel update -i ./translations/eskp.pot -d translations -l de
|
rb@232
|
19 |
pybabel update -i ./translations/eskp.pot -d translations -l en
|
rb@98
|
20 |
|
rb@155
|
21 |
msgfmt:
|
rb@155
|
22 |
msgfmt --strict ./translations/de/LC_MESSAGES/messages.po -o ./translations/de/LC_MESSAGES/messages.mo
|
j@1040
|
23 |
msgfmt --strict ./translations/en/LC_MESSAGES/messages.po -o ./translations/en/LC_MESSAGES/messages.mo
|
j@1040
|
24 |
|