mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
11 lines
272 B
Bash
11 lines
272 B
Bash
|
#!/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
|