1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 02:02:10 +02:00
falkonOfficial/scripts/translations_release.sh

11 lines
272 B
Bash
Raw Normal View History

#!/bin/bash
# run lrelease, .qm files will be located in ../translations/
lrelease ../src/src.pro
# removing empty.qm
rm ../translations/empty.qm
# moving .qm files into ..bin/locale/
mv ../translations/*.qm ../bin/locale/
read -p "Press [ENTER] to close terminal"
exit