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