4b8fe75f95
Test json files with python module to make sure they're valid before converting them to po Signed-off-by: Thomas Citharel <tcit@tcit.fr> Remove &&
10 lines
232 B
Bash
Executable File
10 lines
232 B
Bash
Executable File
#!/bin/bash
|
|
python -m json.tool < locale/en.json
|
|
if [[ $? == 0 ]];
|
|
then
|
|
json2po -P -i locale/en.json -t locale/en.json -o po/framadate.pot
|
|
else
|
|
echo "Can't convert json files to po, the json file is incorrect"
|
|
exit 1
|
|
fi
|