joinpeertube/.po2txt.sh
2018-06-20 15:19:42 +02:00

15 lines
416 B
Bash
Executable file

#!/bin/bash
for i in po/*.po
do
j=$(echo $i | cut -d '.' -f 1,2 | cut -d '/' -f 2)
k=$(echo $i | cut -d '.' -f 1 | cut -d '/' -f 2)
l=$(echo $i | cut -d '.' -f 2 | cut -d '/' -f 2)
if [ "$k" == 'config' ]
then
po2txt -i $i --progress none -o po/$l.toml
else
po2txt -i $i --progress none -t content/$k.en.md -o po/$j.md
fi
done
mv po/*.md content/
mv po/*.toml config/