28 lines
500 B
Bash
Executable File
28 lines
500 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -d node_modules/ng_backoffice ]; then
|
|
pushd node_modules/ng_backoffice
|
|
grunt compile_translations
|
|
grunt concat
|
|
|
|
if [ -d po ]; then
|
|
for i in $(ls po/*\.po); do
|
|
l=$(basename $i .po)
|
|
msgfmt -o ./po/$l.mo -v ./po/$l.po
|
|
done;
|
|
fi
|
|
fi
|
|
|
|
if [ -d node_modules/ng_client ]; then
|
|
pushd node_modules/ng_client
|
|
grunt compile_translations
|
|
grunt concat
|
|
|
|
if [ -d po ]; then
|
|
for i in $(ls po/*\.po); do
|
|
l=$(basename $i .po)
|
|
msgfmt -o ./po/$l.mo -v ./po/$l.po
|
|
done;
|
|
fi
|
|
fi
|