blob: efc6c156d060699b1ceeb09b9619b9003883623d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
@echo off
cls
echo ========================
echo Langpack refresher
echo Author: Robyer
echo ========================
echo.
set err=0
if "%~1" == "" (
echo ERROR: You must specify language parameter!
set err=1
) else (
set "language=%~1"
if not exist "..\..\langpacks\%language%" (
echo ERROR: This language doesn't exists!
set err=1
goto usage
)
)
if not "%~3" == "" (
echo ERROR: You must specify 1 or 2 parameters only.
echo NOTE: If you have path with spaces inside, suround it with "".
set err=1
goto usage
)
if not "%~2" == "" (
set "oldLangpackPath=%~2"
if not exist "..\..\langpacks\%language%\%oldLangpackPath%" (
echo ERROR: Old langpack file doesn't exists!
set err=1
goto usage
)
)
:usage
if "%err%"=="1" (
echo.
echo ========================
echo Usage: refresher.bat language ["old langpack path"]
echo Note: path to old langpack must be relative to "langpacks\<language>\" folder
echo.
echo Example 1: refresher.bat czech
echo Example 2: refresher.bat czech "Deprecated\old langpack\langpack_czech2.txt"
echo.
echo If you want own script in langpack dir, look at "langpacks\czech\refresh.bat"
echo ========================
echo.
pause
goto end
)
REM =========================
if not "%oldLangpackPath%" == "" (
set phase=0
) else (
set phase=1
)
echo Refreshing started...
:start
cd "..\..\tools\lpgen\"
mkdir "Plugins"
mkdir "Untranslated"
mkdir "Weather"
if "%phase%" == "0" (
echo Loading strings from old langpack...
cscript /nologo translate.js /out:".\" /untranslated:"Untranslated" /outfile:"Langpack_%language%.txt" /path:"..\..\langpacks\%language%\" /langpack:"..\..\langpacks\%language%\%oldLangpackPath%"
) else (
REM load strings from recently created langpack (also to distribute strings between files) and create final langpack
cscript /nologo translate.js /out:".\" /untranslated:"Untranslated" /release:"Langpack_%language%.txt" /sourcelang:"%language%"
)
rmdir /S /Q "..\..\langpacks\%language%\Weather"
rmdir /S /Q "..\..\langpacks\%language%\Plugins"
rmdir /S /Q "..\..\langpacks\%language%\Untranslated"
del /Q "..\..\langpacks\%language%\=CORE=.txt"
del /Q "..\..\langpacks\%language%\Langpack_%language%.txt"
mkdir "..\..\langpacks\%language%\Weather"
mkdir "..\..\langpacks\%language%\Plugins"
mkdir "..\..\langpacks\%language%\Untranslated"
copy "Weather\" "..\..\langpacks\%language%\Weather\"
copy "Plugins\" "..\..\langpacks\%language%\Plugins\"
copy "Untranslated\" "..\..\langpacks\%language%\Untranslated\"
copy "=CORE=.txt" "..\..\langpacks\%language%\=CORE=.txt"
copy "Langpack_%language%.txt" "..\..\langpacks\%language%\Langpack_%language%.txt"
rmdir /S /Q "Weather"
rmdir /S /Q "Plugins"
rmdir /S /Q "Untranslated"
del /Q "=CORE=.txt"
del /Q "Langpack_%language%.txt"
REM cd "..\..\langpacks\tool\"
REM LangpackSuite.exe \q \p%language%
if not "%phase%" == "1" (
echo Loading strings from new langpack...
set "phase=1"
goto start
)
:end
echo Refreshing finished!
REM =========================
|