Compile translations > add msgfmt for mo (gettext)
parent
d256e6a12c
commit
0d0c88f8cb
|
@ -4,10 +4,24 @@ if [ -d node_modules/ng_backoffice ]; then
|
||||||
pushd node_modules/ng_backoffice
|
pushd node_modules/ng_backoffice
|
||||||
grunt compile_translations
|
grunt compile_translations
|
||||||
grunt concat
|
grunt concat
|
||||||
|
|
||||||
|
if [ -d node_modules/ng_backoffice/po ]; then
|
||||||
|
for i in $(ls node_modules/ng_backoffice/po/*\.po); do
|
||||||
|
l=$(basename $i .po)
|
||||||
|
msgfmt -o ./node_modules/ng_backoffice/po/$l.mo -v ./node_modules/ng_backoffice/po/$l.po
|
||||||
|
done;
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -d node_modules/ng_client ]; then
|
if [ -d node_modules/ng_client ]; then
|
||||||
pushd node_modules/ng_client
|
pushd node_modules/ng_client
|
||||||
grunt compile_translations
|
grunt compile_translations
|
||||||
grunt concat
|
grunt concat
|
||||||
|
|
||||||
|
if [ -d node_modules/ng_client/po ]; then
|
||||||
|
for i in $(ls node_modules/ng_client/po/*\.po); do
|
||||||
|
l=$(basename $i .po)
|
||||||
|
msgfmt -o ./node_modules/ng_client/po/$l.mo -v ./node_modules/ng_client/po/$l.po
|
||||||
|
done;
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue