pianobooster/tools/lupdate.sh

27 lines
574 B
Bash
Raw Normal View History

#!/bin/sh
2019-06-28 05:20:25 +02:00
# This script updates ts files of pianobooster, but does not touch ts files of music
# License: same with Pianobooster
# Author: Alexey Loginov <alexl@mageia.org>
if [ ! -z "`lupdate -version 2>/dev/null`" ]
then
lupdate="lupdate"
fi
if [ ! -z "`lupdate-qt5 -version 2>/dev/null`" ]
then
lupdate="lupdate-qt5"
fi
if [ -z "$lupdate" ]
then
echo "lupdate was not found!"
exit 1
fi
pushd ../
$lupdate pianobooster.pro -no-obsolete -ts translations/pianobooster_blank.ts
2019-06-28 05:20:25 +02:00
#$lupdate pianobooster.pro -no-obsolete -ts translations/pianobooster_*.ts
popd