Merge pull request #5757
a12ca68
translations: add a ready file to control which translations to build (moneromooo-monero)
This commit is contained in:
commit
f1e66a03f1
|
@ -0,0 +1,4 @@
|
||||||
|
fr
|
||||||
|
it
|
||||||
|
ja
|
||||||
|
sv
|
|
@ -12,5 +12,15 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "using $lrelease"
|
echo "using $lrelease"
|
||||||
"$lrelease" translations/*.ts
|
if test -f translations/ready
|
||||||
|
then
|
||||||
|
languages=""
|
||||||
|
for language in $(cat translations/ready)
|
||||||
|
do
|
||||||
|
languages="$languages translations/$language.ts"
|
||||||
|
done
|
||||||
|
else
|
||||||
|
languages="translations/*.ts"
|
||||||
|
fi
|
||||||
|
"$lrelease" $languages
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue