summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-27 22:13:24 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-27 22:13:24 +0100
commitd57b6a4bcc595aee990b8e1c63e786e7796b737b (patch)
tree9d5341a94d5b6f4c337b55617d534f9d0301e9a8 /Makefile
parentf72af162a00d1d0eb9dced873fd1fbdf4d0975a2 (diff)
downloadwallet-core-d57b6a4bcc595aee990b8e1c63e786e7796b737b.tar.gz
wallet-core-d57b6a4bcc595aee990b8e1c63e786e7796b737b.tar.bz2
wallet-core-d57b6a4bcc595aee990b8e1c63e786e7796b737b.zip
modularize i18n
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 8 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index e2cd5e169..42f11b3ab 100644
--- a/Makefile
+++ b/Makefile
@@ -6,15 +6,15 @@ gulp = node_modules/gulp/bin/gulp.js
tsc = node_modules/typescript/bin/tsc
po2json = node_modules/po2json/bin/po2json
-.PHONY: pogen src/i18n/strings.js yarn-install
+.PHONY: pogen src/i18n/strings.ts yarn-install
-package-stable: tsc i18n yarn-install
+package-stable: tsc yarn-install
$(gulp) package-stable
-package-unstable: tsc i18n yarn-install
+package-unstable: tsc yarn-install
$(gulp) package-unstable
-tsc: tsconfig.json yarn-install
+tsc: tsconfig.json yarn-install src/i18n/strings.ts
$(tsc)
yarn-install:
@@ -23,8 +23,6 @@ yarn-install:
tsconfig.json: gulpfile.js yarn-install
$(gulp) tsconfig
-i18n: pogen msgmerge src/i18n/strings.js
-
pogen/pogen.js: pogen/pogen.ts pogen/tsconfig.json
cd pogen; ../$(tsc)
@@ -44,12 +42,13 @@ msgmerge:
dist:
$(gulp) srcdist
-src/i18n/strings.js: # $(ts)
- cp src/i18n/strings-prelude.js src/i18n/strings.js
+src/i18n/strings.ts: pogen msgmerge
+ cp src/i18n/strings-prelude src/i18n/strings.ts
for pofile in src/i18n/*.po; do \
b=`basename $$pofile`; \
lang=$${b%%.po}; \
$(po2json) -F -f jed1.x -d $$lang $$pofile $$pofile.json; \
- (echo -n "i18n.strings['$$lang'] = "; cat $$pofile.json; echo ';') >> $@; \
+ (echo -n "strings['$$lang'] = "; cat $$pofile.json; echo ';') >> $@; \
+ rm $$pofile.json; \
done