mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
1817a9190f
aternatively the resource file(pot file) in Transifex is updated with `make pot` and the translated files(po files) is updated with `make po`. `make pot po` will be handled automatically on the nightly build machine.
16 lines
243 B
Makefile
16 lines
243 B
Makefile
all: bootstrap push pull
|
|
|
|
bootstrap:
|
|
tx set --auto-local -r koreader.koreader "<lang>/koreader.po" \
|
|
--source-language=en \
|
|
--source-file "templates/koreader.pot" --execute
|
|
|
|
pull:
|
|
tx pull -a -f
|
|
|
|
push:
|
|
tx push -sl en
|
|
|
|
.PHONY: all clean
|
|
|