Fixed issue #1750: Repository Browser fails for empty repository
[TortoiseGit.git] / Languages / build-lang.cmd
blobba6f1cca249fc3ab793e531be7d65353aa0d3045
1 @echo off
2 if "%1"=="" goto missingparam
3 set OUTDIR=%1
4 set CLEAN=""
5 if "%2"=="clean" set CLEAN="clean"
7 call :nmake 1026 bg_BG
8 call :nmake 1028 zh_TW
9 call :nmake 1029 cs
10 call :nmake 1031 de
11 call :nmake 1034 es_ES
12 call :nmake 1036 fr
13 call :nmake 1038 hu
14 call :nmake 1040 it_IT
15 call :nmake 1041 ja
16 call :nmake 1042 ko_KR
17 call :nmake 1043 nl_NL
18 call :nmake 1045 pl_PL
19 call :nmake 1046 pt_BR
20 call :nmake 1048 ro
21 call :nmake 1049 ru
22 call :nmake 1053 sv
23 call :nmake 1055 tr
24 call :nmake 2052 zh_CN
25 call :nmake 2070 pt_PT
26 goto :eof
28 :nmake
29 nmake /f Makefile %CLEAN% outdir=%OUTDIR% LANGID=%1 ISO=%2
30 goto :eof
32 :missingparam
33 echo Missing parameter:
34 echo %~nx0 [output path]
35 pause