mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
5e3c7b91d1
Added option to set default zoom in pages (in preferences: Browsing -> Web Configuration -> Default zoom on pages:) Also fixed one spelling mistake (thank to J. Hooverman) Updated chinese translation file (zh_CN.ts)
25 lines
664 B
Bash
Executable File
25 lines
664 B
Bash
Executable File
#!/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
|