feat(editor): add translation launcher workflow

This commit is contained in:
xin61
2026-07-08 15:59:39 +08:00
parent 0ccd14cf67
commit f66ce37478
20 changed files with 3851 additions and 241 deletions
+11
View File
@@ -0,0 +1,11 @@
@echo off
setlocal
"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -File "%~dp0tools\epub_review_editor\open_editor.ps1"
set "exit_code=%ERRORLEVEL%"
if not "%exit_code%"=="0" (
echo.
echo Startup failed. See the message above.
pause
)
exit /b %exit_code%