This commit is contained in:
mrexodia 2016-07-13 08:19:13 +02:00
parent 7a30668a62
commit 3f2923f325
No known key found for this signature in database
GPG Key ID: D72F9A4FAA0073B4
1 changed files with 16 additions and 0 deletions

16
crowdin-sync.bat Normal file
View File

@ -0,0 +1,16 @@
@echo off
SET PATH=%PATH%;c:\Qt\qt-5.6.0-x64-msvc2013\5.6\msvc2013_64\bin;c:\Program Files (x86)\7-Zip
del /S /Q *.qm
curl -k https://api.crowdin.com/api/project/x64dbg/export?key=%CROWDIN_API_KEY%
curl -k -o translations.zip https://api.crowdin.com/api/project/x64dbg/download/all.zip?key=%CROWDIN_API_KEY%
rmdir /S /Q translations
7z x -otranslations translations.zip
cd translations
for /D %%a in (*) do (set fname=%%a) & call :rename
move *.qm ..\
cd ..
goto :eof
:rename
set trname=x64dbg_%fname:-=_%.ts
copy %fname%\x64dbg.ts %trname%
lrelease -nounfinished %trname%