tdesktop/Telegram/UpdateLang.sh

13 lines
620 B
Bash
Raw Normal View History

2015-01-02 15:07:48 +00:00
cd ../../
while IFS='' read -r line || [[ -n "$line" ]]; do
2016-04-09 11:18:43 +00:00
tx pull -f -l $line --minimum-perc=100
done < tdesktop/Telegram/Resources/LangList
2015-01-02 15:07:48 +00:00
cd translations/telegram-desktop.langstrings/
for file in *.strings; do
iconv -f "UTF-16LE" -t "UTF-8" "$file" > "../../tdesktop/Telegram/Resources/langs/lang_$file.tmp"
awk '{ if (NR==1) sub(/^\xef\xbb\xbf/,""); sub(/ /,""); print }' "../../tdesktop/Telegram/Resources/langs/lang_$file.tmp" > "../../tdesktop/Telegram/Resources/langs/lang_$file"
rm "../../tdesktop/Telegram/Resources/langs/lang_$file.tmp"
2015-01-02 15:07:48 +00:00
done
cd ../../tdesktop/Telegram/
touch Resources/telegram.qrc