mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
8 lines
140 B
Bash
Executable File
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
|