2011-10-23 14:44:18 +02:00
|
|
|
|
#!/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
|
|
|
|
|
|
2011-10-23 21:10:09 +02:00
|
|
|
|
lupdate ../src/QupZilla.pro -ts ../translations/it_IT.ts
|
|
|
|
|
|
2011-10-23 14:44:18 +02:00
|
|
|
|
## uncomment it now
|
|
|
|
|
sed -i 's/##temp/include(3rdparty/g' ../src/QupZilla.pro
|
|
|
|
|
|
|
|
|
|
read -p "Press [ENTER] to close terminal"
|
|
|
|
|
exit
|