Showing log of initial repo/orphane HEAD did not work
[TortoiseGit.git] / Languages / build-lang.cmd
blob10db8e0e7aaa62cc32b87b4e8b90e602bb9c9634
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 1041 ja
14 call :nmake 1042 ko_KR
15 call :nmake 1043 nl_NL
16 call :nmake 1045 pl_PL
17 call :nmake 1046 pt_BR
18 call :nmake 1049 ru
19 call :nmake 1053 sv
20 call :nmake 1055 tr
21 call :nmake 2052 zh_CN
22 goto :eof
24 :nmake
25 nmake /f Makefile %CLEAN% outdir=%OUTDIR% LANGID=%1 ISO=%2
26 goto :eof
28 :missingparam
29 echo Missing parameter:
30 echo %~nx0 [output path]
31 pause