1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/scripts/translations_release.sh
nowrep af72fad533 Edited scripts + new script for releasing all translations
- also fixed bad link to AUTHORS file in homepage translations
2012-01-14 18:23:52 +01:00

11 lines
272 B
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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