funky-framadate-front/scripts/locales.sh
Yannick Francois 50e56a0396 Récupère l'ancien framadate
à la racine, quand on lance le serveur, on a le framadate tel qu'il est aujourd'hui

en ajoutant  sur l'url, on accède à la maquette interactive dans son état actuel
2018-11-30 11:20:25 +01:00

10 lines
267 B
Bash
Executable File

#!/bin/bash
python -m json.tool < locale/en.json >/dev/null 2>&1
if [[ $? == 0 ]];
then
json2po -P -i locale/en.json -t locale/en.json -o po/framadate.pot --duplicates merge
else
echo "Can't convert json files to po, the json file is incorrect"
exit 1
fi