1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-03 09:22:34 +00:00
rufus/res/loc/po/!update.cmd
Pete Batard c2fe08080a
[core] add provision for Windows 7 sunsetting
* 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.
2022-11-22 13:35:50 +00:00

20 lines
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: