xca/lang/po2ts.sh
Christian Hohnstaedt f09589f610 PO to TS conversion works well as script.
It must only be done if a PO based translator
updates the translation once by me.
2021-06-01 17:48:37 +02:00

8 lines
140 B
Bash
Executable File

#!/bin/sh
ALL="$@"
test -n "$ALL" || ALL="tr fr sk"
for lang in $ALL; do
lconvert -if po -of ts -i "${lang}.po" -o "xca_${lang}.ts"
done