@@ -4,23 +4,25 @@ LINGUAS=de it fr ja es sv ru tr zh_CN zh_TW da ca pl sl nb nn pt_BR eu fa gl hu
4
4
5
5
PVE_I18N_DEB =pve-i18n_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
6
6
PMG_I18N_DEB =pmg-i18n_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
7
+ PBS_I18N_DEB =pbs-i18n_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
7
8
8
- DEB1 =${PMG_I18N_DEB}
9
- DEB2 =$(PVE_I18N_DEB )
10
- DEBS =$(DEB1 ) $(DEB2 )
9
+ DEBS =${PMG_I18N_DEB} $(PVE_I18N_DEB ) $(PBS_I18N_DEB )
11
10
12
11
PMGLOCALEDIR =${DESTDIR}/usr/share/pmg-i18n
13
12
PVELOCALEDIR =${DESTDIR}/usr/share/pve-i18n
13
+ PBSLOCALEDIR =${DESTDIR}/usr/share/pbs-i18n
14
14
15
15
PMG_LANG_FILES =$(patsubst % , pmg-lang-% .js, $(LINGUAS ) )
16
16
PVE_LANG_FILES =$(patsubst % , pve-lang-% .js, $(LINGUAS ) )
17
+ PBS_LANG_FILES =$(patsubst % , pbs-lang-% .js, $(LINGUAS ) )
17
18
18
19
all :
19
20
20
21
.PHONY : deb
21
22
deb : $(DEBS )
22
- $(DEB2 ) : $(DEB1 )
23
- $(DEB1 ) : | submodule
23
+ $(PMG_I18N_DEB ) : $(PVE_I18N_DEB )
24
+ $(PBS_I18N_DEB ) : $(PVE_I18N_DEB )
25
+ $(PVE_I18N_DEB ) : | submodule
24
26
rm -rf dest
25
27
rsync -a * dest
26
28
cd dest; dpkg-buildpackage -b -us -uc
@@ -31,11 +33,13 @@ submodule:
31
33
test -f " pmg-gui/Makefile" || git submodule update --init
32
34
33
35
.PHONY : install
34
- install : ${PMG_LANG_FILES} ${PVE_LANG_FILES}
36
+ install : ${PMG_LANG_FILES} ${PVE_LANG_FILES} ${PBS_LANG_FILES}
35
37
install -d ${PMGLOCALEDIR}
36
38
install -m 0644 ${PMG_LANG_FILES} ${PMGLOCALEDIR}
37
39
install -d ${PVELOCALEDIR}
38
40
install -m 0644 ${PVE_LANG_FILES} ${PVELOCALEDIR}
41
+ install -d ${PBSLOCALEDIR}
42
+ install -m 0644 ${PBS_LANG_FILES} ${PBSLOCALEDIR}
39
43
40
44
41
45
pmg-lang-% .js : % .po
@@ -44,6 +48,9 @@ pmg-lang-%.js: %.po
44
48
pve-lang-% .js : % .po
45
49
./po2js.pl -t pve -v " ${VERSION} -${PKGREL} " -o pve-lang-$* .js $?
46
50
51
+ pbs-lang-% .js : % .po
52
+ ./po2js.pl -t pbs -v " ${VERSION} -${PKGREL} " -o pbs-lang-$* .js $?
53
+
47
54
# parameter 1 is the name
48
55
# parameter 2 is the directory
49
56
define potupdate
@@ -56,6 +63,7 @@ update_pot: submodule
56
63
$(call potupdate,proxmox-widget-toolkit,proxmox-widget-toolkit/)
57
64
$(call potupdate,pve-manager,pve-manager/www/manager6/)
58
65
$(call potupdate,proxmox-mailgateway,pmg-gui/js/)
66
+ $(call potupdate,proxmox-backup,proxmox-backup/www/)
59
67
60
68
update : | update_pot messages.pot
61
69
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 ;
@@ -67,7 +75,7 @@ init-%.po: messages.pot
67
75
msginit -i $^ -l $^ -o $* .po --no-translator
68
76
69
77
.INTERMEDIATE : messages.pot
70
- messages.pot : proxmox-widget-toolkit.pot proxmox-mailgateway.pot pve-manager.pot
78
+ messages.pot : proxmox-widget-toolkit.pot proxmox-mailgateway.pot pve-manager.pot proxmox-backup.pot
71
79
msgcat $^ > $@
72
80
73
81
.PHONY : distclean
@@ -78,10 +86,10 @@ clean:
78
86
find . -name ' *~' -exec rm {} ' ;'
79
87
rm -rf dest * .po.tmp * .js.tmp * .deb * .buildinfo * .changes * .js messages.pot
80
88
81
- .PHONY : upload-pve
89
+ .PHONY : upload-pve upload-pmg upload-pbs
82
90
upload-pve : ${PVE_I18N_DEB}
83
- tar cf -
${PVE_I18N_DEB} | ssh -X
[email protected] -- upload --product pve --dist buster
84
-
85
- .PHONY : upload-pmg
91
+ tar cf -
$^ | ssh -X
[email protected] -- upload --product pve --dist buster
86
92
upload-pmg : ${PMG_I18N_DEB}
87
- tar cf -
${PMG_I18N_DEB} | ssh -X
[email protected] -- upload --product pmg --dist stretch
93
+ tar cf -
$^ | ssh -X
[email protected] -- upload --product pmg --dist buster
94
+ upload-pbs : ${PBS_I18N_DEB}
95
+ tar cf -
$^ | ssh -X
[email protected] -- upload --product pbs --dist buster
0 commit comments