From c45aa97ac81e9aa323553bb481b11dad79d47051 Mon Sep 17 00:00:00 2001 From: xunbu Date: Wed, 13 Aug 2025 20:15:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E7=9A=84i18n=E5=AE=9E=E7=8E=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docutranslate/app.py | 7 - docutranslate/static/i18nData.json | 268 +++++++++++++++++++++++++++++ docutranslate/static/index.html | 2 +- docutranslate/static/index_EN.html | 1 - 4 files changed, 269 insertions(+), 9 deletions(-) create mode 100644 docutranslate/static/i18nData.json delete mode 100644 docutranslate/static/index_EN.html diff --git a/docutranslate/app.py b/docutranslate/app.py index 5dca05e..9977096 100644 --- a/docutranslate/app.py +++ b/docutranslate/app.py @@ -1102,13 +1102,6 @@ async def main_page(): "Expires": "0"} return FileResponse(index_path, headers=no_cache_headers) -@app.get("/EN/{rest_of_path:path}", response_class=HTMLResponse, include_in_schema=False) -async def main_page_EN(): - index_path = Path(STATIC_DIR) / "index_EN.html" - if not index_path.exists(): raise HTTPException(status_code=404, detail="index_EN.html not found") - no_cache_headers = {"Cache-Control": "no-store, no-cache, must-revalidate, max-age=0", "Pragma": "no-cache", - "Expires": "0"} - return FileResponse(index_path, headers=no_cache_headers) @app.get("/admin", response_class=HTMLResponse, include_in_schema=False) async def main_page_admin(): diff --git a/docutranslate/static/i18nData.json b/docutranslate/static/i18nData.json new file mode 100644 index 0000000..4239774 --- /dev/null +++ b/docutranslate/static/i18nData.json @@ -0,0 +1,268 @@ +{ + "zh": { + "pageTitle": "DocuTranslate - 交互式文档翻译", + "tutorialBtn": "教程", + "projectContributeBtn": "项目协作", + "workflowTitle": "1. 选择工作流", + "workflowTitleText": "选择工作流", + "workflowOptionMarkdown": "转Markdown再翻译 (.pdf/.md/.png等)", + "workflowOptionTxt": "纯文本翻译 (.txt)", + "workflowOptionJson": "JSON翻译 (.json)", + "workflowOptionDocx": "DOCX翻译 (.docx)", + "workflowOptionXlsx": "XLSX翻译 (.xlsx)", + "workflowOptionSrt": "SRT字幕翻译 (.srt)", + "workflowOptionEpub": "EPUB翻译 (.epub)", + "autoWorkflowLabel": "自动选择工作流", + "docxSettingsTitleText": "DOCX翻译选项", + "insertModeLabel": "插入模式", + "insertModeReplace": "替换原文 (Replace)", + "insertModeAppend": "附加到原文后 (Append)", + "insertModePrepend": "附加到原文前 (Prepend)", + "insertModeHelpDocx": "选择如何将翻译后的文本插入。", + "separatorLabel": "分隔符", + "separatorPlaceholder": "例如: \\n---翻译---\\n", + "separatorPlaceholderSimple": "例如: \\n---\\n", + "separatorHelp": "当插入模式为附加或前置时,用于分隔原文和译文的字符。\\n 代表换行。", + "xlsxSettingsTitleText": "XLSX翻译选项", + "insertModeHelpXlsx": "选择如何将翻译后的文本插入到单元格中。", + "srtSettingsTitleText": "SRT翻译选项", + "insertModeHelpSrt": "选择如何将翻译后的文本插入。", + "epubSettingsTitleText": "EPUB翻译选项", + "insertModeHelpEpub": "选择如何将翻译后的文本插入。", + "jsonSettingsTitleText": "JSON路径配置", + "jsonPathLabel": "需要翻译的JSON路径", + "jsonPathPlaceholder": "每行一个路径, 例如:\n$.name\n$.*", + "jsonPathHelp": "采用jsonpath-ng的路径选择语法,每一行表示一个json路径", + "parsingSettingsTitleText": "解析配置", + "parsingEngineLabel": "解析引擎", + "parsingEngineHelp": "如果上传的文件本身是.md格式,此项可不选。", + "engineOptionIdentity": "不使用引擎 (源文件为MD)", + "engineOptionMineru": "minerU (云端, 推荐)", + "engineOptionDocling": "Docling (本地)", + "getMineruTokenTitle": "获取Mineru Token", + "mineruTokenPlaceholder": "使用Mineru引擎时需要", + "formulaOcrLabel": "公式识别", + "codeOcrLabel": "代码识别", + "aiSettingsTitleText": "翻译模型", + "platformLabel": "选择平台", + "platformCustom": "自定义接口", + "baseUrlLabel": "API 地址 (Base URL)", + "baseUrlPlaceholder": "OpenAi兼容地址", + "getApiKeyTitle": "获取API Key", + "apiKeyPlaceholder": "请输入您的API Key", + "modelIdLabel": "模型 ID", + "modelIdPlaceholder": "例如: gpt-4o, glm-4", + "translationSettingsTitleText": "翻译配置", + "targetLanguageLabel": "目标语言", + "targetLanguageCustom": "其它 (自定义)", + "customLangPlaceholder": "请输入目标语言, 例如: Italian", + "thinkingModeLabel": "思考模式", + "thinkingModeTooltip": "设置混合推理模型的思考模式,目前支持智谱平台的glm-4.5系列、阿里云的qwen3系列、火山引擎的Doubao-Seed-1.6系列等", + "thinkingModeEnable": "启用", + "thinkingModeDisable": "禁用", + "thinkingModeDefault": "默认", + "customPromptLabel": "自定义Prompt", + "customPromptPlaceholder": "可选,如“人名保持原文不翻译”", + "advancedSettingsTitleText": "高级参数", + "chunkSizeLabel": "分块大小", + "concurrentLabel": "并发数", + "resetBtn": "重置", + "githubInfo": "GitHub主页(欢迎star❤):
https://github.com/xunbu/docutranslate", + "qqGroupInfo": "交流QQ群: 1047781902", + "taskListTitle": "任务列表", + "newTaskBtn": "新建任务", + "noTaskPlaceholder": "当前没有任务,点击“新建任务”开始吧!", + "taskCardIdLabel": "任务 ID", + "taskCardIdPlaceholder": "等待提交...", + "taskCardFileDrop": "点击或拖拽文件到此处", + "taskCardFileSelected": "文件已选择", + "taskCardFilenameLabel": "文件名:", + "taskCardLogLabel": "日志", + "taskCardStatusWaiting": "等待上传文件...", + "taskCardPreviewBtn": "预览", + "taskCardDownloadBtn": "下载", + "taskCardStartBtn": "开始翻译", + "downloadMdEmbedded": "Markdown(嵌图)", + "downloadMdZip": "Markdown压缩包", + "previewTitle": "预览", + "previewBilingualBtn": "双语", + "previewTranslatedOnlyBtn": "仅译文", + "previewOriginal": "原文", + "previewTranslated": "译文", + "closeBtn": "关闭", + "downloadBtn": "下载", + "tutorialModalTitle": "使用教程", + "tutorialModalBody": "

视频教程可以在B站搜索 docutranslate 获取。

欢迎使用 DocuTranslate!请按照以下步骤完成文档翻译:

  1. 选择工作流

    首先,在配置面板顶部选择您需要的翻译流程。不同的工作流适用于不同类型的文件:

    • 转Markdown再翻译: 适用于翻译PDF、markdown、图片等文件。
    • 纯文本翻译: 用于翻译 .txt 等纯文本文件。
    • JSON翻译: 用于翻译 .json 文件中的特定字段。
    • DOCX翻译: 用于翻译 .docx 文件。
    • XLSX翻译: 用于翻译 .xlsx 电子表格文件。
    • SRT字幕翻译: 用于翻译 .srt 字幕文件。
    • EPUB翻译: 用于翻译 .epub 电子书文件。
    新增功能: \"自动选择工作流\"开关已默认开启。您只需上传文件,系统会自动为您匹配合适的工作流,简化操作。

  2. 配置参数

    根据您选择的工作流,完成相应的配置。所有配置项都会自动保存在您的浏览器中。

    • 解析配置 (仅在“转Markdown再翻译”工作流下显示):
      • 解析引擎: 选择一个引擎将您的文件(如PDF)转换为适合翻译的Markdown格式。如果您的文件已经是Markdown格式,则无需选择。
      • Mineru Token: 如果您选择 minerU 引擎,需要在此处填入您的Token。
    • DOCX/XLSX/SRT/EPUB翻译选项 (在对应工作流下显示):
      • 插入模式: 定义翻译结果如何放入文档或字幕。您可以选择直接“替换”原文,或是在原文之后“附加”,或是在原文之前“前置”。
      • 分隔符: 当选择“附加”或“前置”模式时,此项用于在原文和译文之间插入分隔符。
    • JSON路径配置 (仅在“JSON翻译”工作流下显示):
      • 需要翻译的JSON路径: 每行输入一个 JSONPath 表达式,指定需要翻译的字段。
      • 例如:$..description翻译所有键为description的值。$.items[0].name翻译第一个item的name值。
    • 翻译模型:
      • 选择平台/API 地址/API Key/模型 ID: 配置您希望使用的AI翻译服务。
      • 模型ID参考平台文档,建议使用非推理模型或混合推理模型(关闭思考)。
    • 翻译配置:
      • 目标语言/自定义Prompt: 指定翻译的目标语言和附加指令。
      • 思考模式:设置混合推理模型是否进行思考,目前支持智谱的glm4.5系列、阿里云的qwen3系列、火山引擎的seed1.6系列,建议选择禁用思考。
    • 高级参数:
      • 分块大小/并发数/Temperature: 发给ai的分块大小、并发请求数和温度,通常保持默认即可。
  3. 上传文件

    在右侧的任务列表中,点击或拖拽您的文档到文件上传区域。

  4. 开始翻译

    文件选择成功后,点击任务卡片右下角的 开始翻译 按钮。系统将开始处理任务,您可以在日志区域查看实时进度。

  5. 查看与下载

    翻译完成后,任务卡片下方会出现操作按钮:

    • 预览: 在右侧滑出的面板中进行原文和译文的对照预览(仅作参考)。
    • 下载: 下载包括 PDF, DOCX, XLSX, HTML, Markdown 等多种格式的译文。
提示: 所有配置都会自动保存在您的浏览器本地,方便下次使用。
", + "tutorialUnderstandBtn": "我明白了", + "contributorsModalTitle": "感谢贡献", + "contributorsPara1": "DocuTranslate是一个开源项目!大家的需求与使用是项目进步的动力。", + "contributorsPara2": "感谢所有资助项目、提交代码与宝贵建议及给项目star的朋友们!", + "contributorsWelcome": "欢迎通过以下方式参与贡献:", + "contributorsGithub": "github 主页", + "contributorsPR": "提交 Pull Request", + "contributorsIssue": "报告 Issue", + "contributorsQQ": "或者通过QQ群联系作者:1047781902", + "status_selectFileFirst": "请先选择一个文件。", + "status_invalidWorkflow": "无效的工作流类型。", + "status_fillRequired": "请填写所有必填的设置项。", + "status_releasingOldTask": "正在重新翻译,释放旧任务资源...", + "status_encodingAndSubmitting": "正在编码文件并提交任务...", + "status_requestOk": "任务已开始,正在处理...", + "status_requestFail": "请求失败", + "status_initFail": "启动失败", + "status_cancelling": "正在取消...", + "status_cancelSent": "取消请求已发送。", + "status_cancelFail": "取消失败", + "status_updateError": "状态更新出错。", + "status_gettingStatus": "正在获取状态...", + "preview_loading": "

正在加载译文...

", + "preview_loadFailed": "

加载译文失败

", + "preview_cantReadOriginal": "无法读取原文内容。", + "preview_cantPreviewType": "无法直接预览此文件类型", + "preview_noOriginalCache": "未找到原文文件缓存。", + "preview_bilingual": "双语预览", + "preview_translatedOnly": "译文预览", + "pdf_preparing": "PDF准备中,请稍后...", + "pdf_print_failed": "自动打印失败,请在预览中手动打印。", + "pdf_fetch_failed": "获取HTML内容失败,无法生成PDF。", + "init_failed_alert": "页面初始化失败,请检查后端服务是否正常并刷新页面。", + "admin_tasklist_failed": "无法从服务器加载任务列表,请检查后台连接。", + "btn_startTranslation": "开始翻译", + "btn_initializing": "初始化...", + "btn_cancelTranslation": "取消翻译", + "btn_reTranslate": "重新翻译" + }, + "en": { + "pageTitle": "DocuTranslate - Interactive Document Translation", + "tutorialBtn": "Tutorial", + "projectContributeBtn": "Contribute", + "workflowTitle": "1. Select Workflow", + "workflowTitleText": "Select Workflow", + "workflowOptionMarkdown": "Markdown-based (.pdf/.md/.png, etc.)", + "workflowOptionTxt": "Plain Text (.txt)", + "workflowOptionJson": "JSON (.json)", + "workflowOptionDocx": "DOCX (.docx)", + "workflowOptionXlsx": "XLSX (.xlsx)", + "workflowOptionSrt": "SRT Subtitle (.srt)", + "workflowOptionEpub": "EPUB (.epub)", + "autoWorkflowLabel": "Auto-select workflow", + "docxSettingsTitleText": "DOCX Translation Options", + "insertModeLabel": "Insert Mode", + "insertModeReplace": "Replace original", + "insertModeAppend": "Append after original", + "insertModePrepend": "Prepend before original", + "insertModeHelpDocx": "Choose how to insert the translated text.", + "separatorLabel": "Separator", + "separatorPlaceholder": "e.g., \\n---translation---\\n", + "separatorPlaceholderSimple": "e.g., \\n---\\n", + "separatorHelp": "Characters to separate original and translated text in append/prepend modes. \\n for new line.", + "xlsxSettingsTitleText": "XLSX Translation Options", + "insertModeHelpXlsx": "Choose how to insert translated text into cells.", + "srtSettingsTitleText": "SRT Translation Options", + "insertModeHelpSrt": "Choose how to insert the translated text.", + "epubSettingsTitleText": "EPUB Translation Options", + "insertModeHelpEpub": "Choose how to insert the translated text.", + "jsonSettingsTitleText": "JSON Path Configuration", + "jsonPathLabel": "JSON paths to translate", + "jsonPathPlaceholder": "One path per line, e.g.:\n$.name\n$.*", + "jsonPathHelp": "Uses jsonpath-ng syntax. Each line represents one JSON path.", + "parsingSettingsTitleText": "Parsing Configuration", + "parsingEngineLabel": "Parsing Engine", + "parsingEngineHelp": "Optional if your file is already in .md format.", + "engineOptionIdentity": "No engine (source is MD)", + "engineOptionMineru": "minerU (Cloud, Recommended)", + "engineOptionDocling": "Docling (Local)", + "getMineruTokenTitle": "Get Mineru Token", + "mineruTokenPlaceholder": "Required for Mineru engine", + "formulaOcrLabel": "Formula Recognition", + "codeOcrLabel": "Code Recognition", + "aiSettingsTitleText": "Translation Model", + "platformLabel": "Select Platform", + "platformCustom": "Custom Endpoint", + "baseUrlLabel": "API Base URL", + "baseUrlPlaceholder": "OpenAI-compatible URL", + "getApiKeyTitle": "Get API Key", + "apiKeyPlaceholder": "Enter your API Key", + "modelIdLabel": "Model ID", + "modelIdPlaceholder": "e.g., gpt-4o, glm-4", + "translationSettingsTitleText": "Translation Configuration", + "targetLanguageLabel": "Target Language", + "targetLanguageCustom": "Other (Custom)", + "customLangPlaceholder": "Enter target language, e.g., Italian", + "thinkingModeLabel": "Thinking Mode", + "thinkingModeTooltip": "Set the thinking mode for mixed-inference models. Currently supports Zhipu's glm-4.5 series, Alibaba Cloud's qwen3 series, VolcEngine's Doubao-Seed-1.6 series, etc.", + "thinkingModeEnable": "Enable", + "thinkingModeDisable": "Disable", + "thinkingModeDefault": "Default", + "customPromptLabel": "Custom Prompt", + "customPromptPlaceholder": "Optional, e.g., 'Do not translate proper names'", + "advancedSettingsTitleText": "Advanced Parameters", + "chunkSizeLabel": "Chunk Size", + "concurrentLabel": "Concurrency", + "resetBtn": "Reset", + "githubInfo": "GitHub (star us ❤):
https://github.com/xunbu/docutranslate", + "qqGroupInfo": "QQ Group for discussions: 1047781902", + "taskListTitle": "Task List", + "newTaskBtn": "New Task", + "noTaskPlaceholder": "No tasks yet. Click 'New Task' to start!", + "taskCardIdLabel": "Task ID", + "taskCardIdPlaceholder": "Waiting for submission...", + "taskCardFileDrop": "Click or drag file here", + "taskCardFileSelected": "File selected", + "taskCardFilenameLabel": "Filename:", + "taskCardLogLabel": "Logs", + "taskCardStatusWaiting": "Waiting for file upload...", + "taskCardPreviewBtn": "Preview", + "taskCardDownloadBtn": "Download", + "taskCardStartBtn": "Start Translation", + "downloadMdEmbedded": "Markdown (Embedded Img)", + "downloadMdZip": "Markdown (.zip)", + "previewTitle": "Preview", + "previewBilingualBtn": "Bilingual", + "previewTranslatedOnlyBtn": "Translated Only", + "previewOriginal": "Original", + "previewTranslated": "Translation", + "closeBtn": "Close", + "downloadBtn": "Download", + "tutorialModalTitle": "Tutorial", + "tutorialModalBody": "

Video tutorials can be found by searching docutranslate on Bilibili.

Welcome to DocuTranslate! Follow these steps to translate your documents:

  1. Select Workflow

    First, choose the translation process you need from the top of the settings panel. Different workflows are for different file types:

    • Markdown-based: For translating PDF, markdown, images, etc.
    • Plain Text: For translating .txt and other plain text files.
    • JSON: For translating specific fields in .json files.
    • DOCX: For translating .docx files.
    • XLSX: For translating .xlsx spreadsheet files.
    • SRT Subtitle: For translating .srt subtitle files.
    • EPUB: For translating .epub ebook files.
    New Feature: \"Auto-select workflow\" is on by default. Just upload your file, and the system will automatically pick the right workflow for you.

  2. Configure Parameters

    Based on your chosen workflow, complete the necessary settings. All settings are automatically saved in your browser.

    • Parsing Configuration (Only for \"Markdown-based\" workflow):
      • Parsing Engine: Choose an engine to convert your file (like a PDF) into a translation-friendly Markdown format. Not needed if your file is already Markdown.
      • Mineru Token: If you select the minerU engine, you need to enter your token here.
    • DOCX/XLSX/SRT/EPUB Options (For their respective workflows):
      • Insert Mode: Define how the translation is placed in the document. You can \"Replace\" the original, \"Append\" after it, or \"Prepend\" before it.
      • Separator: When using \"Append\" or \"Prepend\", this is used to separate the original and translated text.
    • JSON Path Configuration (Only for \"JSON\" workflow):
      • JSON paths to translate: Enter one JSONPath expression per line to specify which fields to translate.
      • E.g., $..description translates all values with the key 'description'. $.items[0].name translates the name of the first item.
    • Translation Model:
      • Platform/API Base URL/API Key/Model ID: Configure the AI translation service you want to use.
      • Refer to the platform's documentation for Model IDs. It's recommended to use non-inference models or mixed-inference models (with thinking turned off).
    • Translation Configuration:
      • Target Language/Custom Prompt: Specify the target language and any additional instructions.
      • Thinking Mode: Sets whether a mixed-inference model should 'think'. Supported for Zhipu's glm4.5 series, Alibaba's qwen3 series, VolcEngine's seed1.6 series, etc. Disabling is recommended.
    • Advanced Parameters:
      • Chunk Size/Concurrency/Temperature: The size of text chunks sent to the AI, number of concurrent requests, and creativity level. Default values usually work fine.
  3. Upload File

    In the task list on the right, click or drag your document into the file drop area.

  4. Start Translation

    Once the file is selected, click the Start Translation button on the task card. The system will start processing, and you can see real-time progress in the log area.

  5. Review & Download

    After translation is complete, action buttons will appear on the task card:

    • Preview: Opens a side panel for a side-by-side preview of the original and translation (for reference only).
    • Download: Download the translation in various formats, including PDF, DOCX, XLSX, HTML, and Markdown.
Tip: All your settings are automatically saved in your browser's local storage for your next visit.
", + "tutorialUnderstandBtn": "Got it", + "contributorsModalTitle": "Thanks for Contributing", + "contributorsPara1": "DocuTranslate is an open-source project! The community's needs and usage are what drive its progress.", + "contributorsPara2": "A huge thank you to everyone who has sponsored the project, submitted code, provided valuable feedback, and starred the repository!", + "contributorsWelcome": "You can contribute in the following ways:", + "contributorsGithub": "GitHub Page", + "contributorsPR": "Submit a Pull Request", + "contributorsIssue": "Report an Issue", + "contributorsQQ": "Or contact the author via QQ Group: 1047781902", + "status_selectFileFirst": "Please select a file first.", + "status_invalidWorkflow": "Invalid workflow type.", + "status_fillRequired": "Please fill in all required settings.", + "status_releasingOldTask": "Re-translating. Releasing resources for the old task.", + "status_encodingAndSubmitting": "Encoding file and submitting task...", + "status_requestOk": "Task started, now processing...", + "status_requestFail": "Request failed", + "status_initFail": "Initialization failed", + "status_cancelling": "Cancelling...", + "status_cancelSent": "Cancellation request sent.", + "status_cancelFail": "Failed to cancel", + "status_updateError": "Error updating status.", + "status_gettingStatus": "Getting status...", + "preview_loading": "

Loading translation...

", + "preview_loadFailed": "

Failed to load translation

", + "preview_cantReadOriginal": "Could not read original file content.", + "preview_cantPreviewType": "Cannot preview this file type directly", + "preview_noOriginalCache": "Original file cache not found.", + "preview_bilingual": "Bilingual Preview", + "preview_translatedOnly": "Translated Only Preview", + "pdf_preparing": "Preparing PDF, please wait...", + "pdf_print_failed": "Automatic printing failed. Please print manually from the preview.", + "pdf_fetch_failed": "Failed to fetch HTML content, cannot generate PDF.", + "init_failed_alert": "Page initialization failed. Please check if the backend service is running and refresh the page.", + "admin_tasklist_failed": "Could not load task list from server. Please check backend connection.", + "btn_startTranslation": "Start Translation", + "btn_initializing": "Initializing...", + "btn_cancelTranslation": "Cancel Translation", + "btn_reTranslate": "Re-translate" + } +} \ No newline at end of file diff --git a/docutranslate/static/index.html b/docutranslate/static/index.html index 714e95f..1de0f1e 100644 --- a/docutranslate/static/index.html +++ b/docutranslate/static/index.html @@ -1 +1 @@ - DocuTranslate - 交互式文档翻译

DocuTranslate

如果上传的文件本身是.md格式,此项可不选。

GitHub主页(欢迎star❤):
https://github.com/xunbu/docutranslate

交流QQ群: 1047781902

任务列表

当前没有任务,点击“新建任务”开始吧!

预览
原文
译文
\ No newline at end of file + DocuTranslate - 交互式文档翻译

DocuTranslate

如果上传的文件本身是.md格式,此项可不选。

GitHub主页(欢迎star❤):
https://github.com/xunbu/docutranslate

交流QQ群: 1047781902

任务列表

当前没有任务,点击“新建任务”开始吧!

预览
原文
译文
\ No newline at end of file diff --git a/docutranslate/static/index_EN.html b/docutranslate/static/index_EN.html deleted file mode 100644 index 4ef168e..0000000 --- a/docutranslate/static/index_EN.html +++ /dev/null @@ -1 +0,0 @@ - DocuTranslate - Interactive Document Translation

DocuTranslate

This can be skipped if the uploaded file is already in .md format.

GitHub Page (stars are welcome❤):
https://github.com/xunbu/docutranslate

QQ Group: 1047781902

Task List

No tasks currently. Click "New Task" to get started!

Preview
Original
Translation
\ No newline at end of file