blob: 8b844426af90e38d3598ff501211d85f52fbf68d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@echo off
REM ====== VARIABLES ========
set "language=czech"
set "oldLangpackPath=Deprecated\old langpack\langpack_czech2.txt"
REM =========================
cd "..\..\tools\lpgen\"
refresher.bat %language% "%oldLangpackPath%"
REM copy and reload langpack in your Miranda (uncoment next lines + enable cmdline.dll plugin to use it)
REM echo Copy and refresh Miranda NG langpack
REM set "mirandaPath=D:\Programy\Miranda NG"
REM copy "..\..\langpacks\%language%\Langpack_%language%.txt" "%mirandaPath%\Langpack_%language%.txt"
REM cd "%mirandaPath%"
REM mimcmd.exe callservice LangPack/Reload 0 0
|