joinpeertube/.po2txt.sh

16 lines
416 B
Bash
Raw Normal View History

2018-03-21 07:04:22 +00:00
#!/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
2018-03-21 07:04:22 +00:00
fi
done
mv po/*.md content/
mv po/*.toml config/