mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
af72fad533
- also fixed bad link to AUTHORS file in homepage translations
11 lines
272 B
Bash
Executable File
11 lines
272 B
Bash
Executable File
#!/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
|