From 4914f5467f7e1ade93dea5786f454e021f0b1487 Mon Sep 17 00:00:00 2001 From: Qingping Hou Date: Mon, 8 Apr 2013 02:54:25 +0800 Subject: [PATCH] add Makefile for managing po and pot files basically wrapper around tx --- l10n/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 l10n/Makefile diff --git a/l10n/Makefile b/l10n/Makefile new file mode 100644 index 000000000..b85aaf32e --- /dev/null +++ b/l10n/Makefile @@ -0,0 +1,12 @@ +all: update + +update: + tx pull -a + +bootstrap: + tx set --auto-local -r koreader.koreader "/koreader.po" \ + --source-language=en \ + --source-file "templates/koreader.pot" --execute + +.PHONY: all clean +