1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00
falkonOfficial/scripts/translations_safe.sh
nowrep b6f84d648f Fixing previous commit
Sorry for the mistake, it should be fine now.
2011-11-06 17:09:08 +01:00

25 lines
664 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
## circular inclusions workaround - we comment that buggy line
sed -i 's/include(3rdparty/##temp/g' ../src/QupZilla.pro
lupdate ../src/QupZilla.pro -ts ../translations/cs_CZ.ts
lupdate ../src/QupZilla.pro -ts ../translations/sk_SK.ts
lupdate ../src/QupZilla.pro -ts ../translations/nl_NL.ts
lupdate ../src/QupZilla.pro -ts ../translations/de_DE.ts
lupdate ../src/QupZilla.pro -ts ../translations/es.ts
lupdate ../src/QupZilla.pro -ts ../translations/it_IT.ts
lupdate ../src/QupZilla.pro -ts ../translations/zh_CN.ts
## uncomment it now
sed -i 's/##temp/include(3rdparty/g' ../src/QupZilla.pro
read -p "Press [ENTER] to close terminal"
exit