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