blob: 17f7be5b831f2bbdd4a6477f02739144b1bf2eae (
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"
set "mirandaPath=D:\Programy\Miranda NG"
REM =========================
cd "..\..\tools\lpgen\"
call refresher.bat %language% "%oldLangpackPath%"
REM if previous command failed, exit
if %ERRORLEVEL% NEQ 0 exit /B 1
REM copy and reload langpack in your Miranda (uncoment next line + enable cmdline.dll plugin to use it)
call installer.bat %language% "%mirandaPath%"
|