Updated Windows batch file to update .mo translations files.

This commit is contained in:
Florian Rival
2014-12-25 21:34:30 +01:00
parent 6b2fc20e2a
commit 2bb9687b2d
8 changed files with 15 additions and 1 deletions

7
.gitignore vendored
View File

@@ -63,3 +63,10 @@ Binaries/Packaging/debian-package/debian
/WebIDE
!/GDCpp/scripts/bcp.exe
/GDJS/tests/node_modules
!/scripts/libgettextlib-0-17.dll
!/scripts/libgettextsrc-0-17.dll
!/xgettext.exe
!/Binaries/Output/Release_Windows/locale/libgettextlib-0-17.dll
!/Binaries/Output/Release_Windows/locale/libgettextsrc-0-17.dll
!/Binaries/Output/Release_Windows/locale/msgcat.exe
!/Binaries/Output/Release_Windows/locale/msgfmt.exe

View File

@@ -1 +1,8 @@
rem TODO
@echo off
::Execute this script to update the translations (.mo files)
::using the .po files that you downloaded.
for /D %%i in (*.*) do (
if exist %%i/GD.po (
msgcat %%i/GD.po | msgfmt -o %%i/GD.mo -
)
)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.