hexchat/win32/compile-po-files.bat

11 lines
204 B
Batchfile
Raw Normal View History

2011-02-28 12:59:32 -05:00
@echo off
echo.Compiling translations . . .
cd ..\po
rmdir /q /s locale
mkdir locale
2011-08-15 00:52:45 -04:00
for %%A in (*.po) do (
mkdir locale\%%~nA\LC_MESSAGES
msgfmt -co locale\%%~nA\LC_MESSAGES\xchat.mo %%A
)
2011-12-11 08:29:37 -05:00
cd ..\win32