mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
78b2eabc87
The system is mostly the Qt system, but we don't use Qt to avoid the dependencies. See README.i18n for details.
16 lines
249 B
Bash
Executable file
16 lines
249 B
Bash
Executable file
#!/bin/sh
|
|
|
|
lrelease=`which lrelease 2> /dev/null`
|
|
if test -z "$lrelease"
|
|
then
|
|
lrelease=`which lrelease-qt4 2> /dev/null`
|
|
fi
|
|
if test -z "$lrelease"
|
|
then
|
|
echo "lrelease not found"
|
|
exit 1
|
|
fi
|
|
|
|
echo "using $lrelease"
|
|
"$lrelease" translations/*.ts
|
|
|