mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
50e56a0396
à 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
12 lines
355 B
Bash
Executable File
12 lines
355 B
Bash
Executable File
#!/bin/bash
|
|
FILE=$1
|
|
if [[ ! -e locale/$FILE.json ]]
|
|
then
|
|
echo "locale/$FILE.json does not exist. Exiting."
|
|
exit 1
|
|
else
|
|
LOCALE=$(echo $FILE | sed -e "s@_@-@g")
|
|
json2po -i locale/$FILE.json -t locale/en.json -o po/$FILE.po
|
|
zanata-cli -q -B push --push-type trans -l $LOCALE --project-version $(git branch | grep \* | cut -d ' ' -f2-)
|
|
fi
|