mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
fac433a0fe
* MSG_900+ will be used for Windows Store translation, so add them and makes sure these get filtered out from embedded.loc. * Also make sure we don't get a "Translated by:" in the English version when compiled with VS2022. * Also add Store screenshots and update listing.csv so that we can autogenerate and upload a complete translation update to the store.
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.5.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: |