mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
c2fe08080a
* Update the relevant loc messages. * Also add a -z commandline option to force the Windows version (but without letting this option work as an override, if running on an unsupported platform). * Also fix typos and broken URLs.
20 lines
No EOL
375 B
Batchfile
20 lines
No EOL
375 B
Batchfile
@echo off
|
|
if not exist pollock.exe curl https://files.akeo.ie/pollock/pollock-1.4.exe --output pollock.exe
|
|
cls
|
|
:menu
|
|
echo 1 - Import .po into .loc
|
|
echo 2 - Create .po from .loc
|
|
echo 3 - Exit
|
|
choice /N /C:123%1
|
|
if ERRORLEVEL==3 goto exit
|
|
if ERRORLEVEL==2 (
|
|
pollock.exe -l
|
|
goto menu
|
|
)
|
|
if ERRORLEVEL==1 (
|
|
pollock.exe -i
|
|
goto menu
|
|
)
|
|
:exit
|
|
del *.pot 2>NUL:
|
|
del *.mo 2>NUL: |