]> git.proxmox.com Git - proxmox-i18n.git/blobdiff - Makefile
copied po files from pve-manager
[proxmox-i18n.git] / Makefile
index 2c8331f791b0eb2cb85f2eb57912363634c9e7f6..65127f1eff40ca0c51b441a11b0e9b6e49e0c9e7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
-LINGUAS=de
+LINGUAS=de it fr ja es sv ru tr zh_CN da ca pl sl nb nn pt_BR eu fa gl hu
 
 VERSION=1.0
-PKGREL=1
+PKGREL=2
 
 PVE_I18N_DEB=pve-i18n_${VERSION}-${PKGREL}_all.deb
 PMG_I18N_DEB=pmg-i18n_${VERSION}-${PKGREL}_all.deb
@@ -14,11 +14,11 @@ PVELOCALEDIR=${DESTDIR}/usr/share/pve-i18n
 PMG_LANG_FILES=$(patsubst %, pmg-lang-%.js, $(LINGUAS))
 PVE_LANG_FILES=$(patsubst %, pve-lang-%.js, $(LINGUAS))
 
-all:
+all: | submodule
 
 .PHONY: deb
 deb: $(DEBS)
-$(DEBS):
+$(DEBS): | submodule
        rm -rf dest
        mkdir dest
        rsync -a debian dest
@@ -27,6 +27,10 @@ $(DEBS):
        lintian ${PMG_I18N_DEB}
        lintian ${PVE_I18N_DEB}
 
+.PHONY: submodule
+submodule:
+       test -f "pmg-gui/Makefile" || git submodule update --init
+
 .PHONY: install
 install: ${PMG_LANG_FILES} ${PVE_LANG_FILES} 
        install -d ${PMGLOCALEDIR}
@@ -35,25 +39,48 @@ install: ${PMG_LANG_FILES} ${PVE_LANG_FILES}
        install -m 0644 ${PVE_LANG_FILES} ${PVELOCALEDIR}
 
 
-pmg-lang-%.js: proxmox-widget-toolkit-%.po proxmox-mailgateway-%.po
-       ./po2js.pl -o pmg-lang-$*.js $?
+pmg-lang-%.js: %.po
+       ./po2js.pl -t pmg -v "${VERSION}-${PKGREL}" -o pmg-lang-$*.js $?
+
+pve-lang-%.js: %.po
+       ./po2js.pl -t pve -v "${VERSION}-${PKGREL}" -o pve-lang-$*.js $?
 
-pve-lang-%.js: proxmox-widget-toolkit-%.po pve-manager-%.po
-       ./po2js.pl -o pve-lang-$*.js $?
+# parameter 1 is the name
+# parameter 2 is the directory
+define potupdate
+    ./jsgettext.pl -p "$(1) $(shell cd $(2);git rev-parse HEAD)" -o $(1).pot $(2)
+endef
 
 .PHONY: update
 update:
-       ./jsgettext.pl -o proxmox-widget-toolkit.pot proxmox-widget-toolkit/ 
-       ./jsgettext.pl -o proxmox-mailgateway.pot -b proxmox-widget-toolkit.pot proxmox-mailgateway-gui/js/
-       ./jsgettext.pl -o pve-manager.pot -b proxmox-widget-toolkit.pot pve-manager/www/manager6/
-       for j in proxmox-widget-toolkit proxmox-mailgateway pve-manager; do for i in $(LINGUAS); do echo -n "$$j-$$i: ";msgmerge -s -v $$j-$$i.po $$j.pot >$$j-$$i.po.tmp && mv $$j-$$i.po.tmp $$j-$$i.po; done; done
+       git submodule foreach 'git pull --ff-only origin master'
+       $(call potupdate,proxmox-widget-toolkit,proxmox-widget-toolkit/)
+       $(call potupdate,pve-manager,pve-manager/www/manager6/)
+       $(call potupdate,proxmox-mailgateway,pmg-gui/js/)
+       msgcat proxmox-widget-toolkit.pot proxmox-mailgateway.pot pve-manager.pot > messages.pot.tmp
+       mv messages.pot.tmp messages.pot
+       for i in $(LINGUAS); do echo -n "$$i: "; msgmerge -s -v $$i.po messages.pot >$$i.po.tmp && mv $$i.po.tmp $$i.po; done;
+       rm messages.pot
 
 # try to generate po files when someone add a new language
-#.SECONDARY: # do not delete generated intermediate file
-#%.po:
-#      msginit -i messages.pot -l $*
+.SECONDARY: # do not delete generated intermediate file
+%.po: proxmox-widget-toolkit.pot proxmox-mailgateway.pot pve-manager.pot
+       msgcat $+ > $*.pot
+       msginit -i $*.pot -l $* -o $*.po
+       rm $*.pot
+
+.PHONY: distclean
+distclean: clean
 
 .PHONY: clean
 clean:
        find . -name '*~' -exec rm {} ';'
        rm -rf dest *.po.tmp *.js.tmp *.deb *.buildinfo *.changes pve-lang-*.js pmg-lang-*.js
+
+.PHONY: upload-pve
+upload-pve: ${PVE_I18N_DEB}
+       tar cf - ${PVE_I18N_DEB}|ssh -X repoman@repo.proxmox.com -- upload --product pve --dist stretch
+
+.PHONY: upload-pmg
+upload-pmg: ${PMG_I18N_DEB}
+       tar cf - ${PMG_I18N_DEB}|ssh -X repoman@repo.proxmox.com -- upload --product pmg --dist stretch