File size: 4,858 Bytes
b9f656b
 
 
 
 
 
 
 
 
4446a50
b9f656b
 
eacd878
b9f656b
 
 
 
 
eacd878
b9f656b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
eacd878
b9f656b
 
 
 
 
 
 
 
 
e4c6939
 
 
 
 
b9f656b
 
 
e4c6939
 
 
 
 
 
b9f656b
 
eacd878
b9f656b
4446a50
 
 
 
b9f656b
 
 
eacd878
b9f656b
 
 
 
 
 
eacd878
 
b9f656b
 
 
eacd878
 
b9f656b
eacd878
 
b9f656b
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import gradio as gr
import os
import shutil
from docx import Document
from pptx import Presentation
from deep_translator import GoogleTranslator

def translate_document(file, target_language, target_country, api_key):
    log_messages = []
    output_path = None  # 初始化 output_path

    try:
        log_messages.append("Starting translation process...")
        
        # 複製文件到新文件
        original_file_path = file.name
        copied_file_path = "copy_" + os.path.basename(original_file_path)
        shutil.copy(original_file_path, copied_file_path)
        log_messages.append(f"Copied file to {copied_file_path}")

        # 處理 .docx 文件
        if copied_file_path.endswith(".docx"):
            doc = Document(copied_file_path)

            # 翻譯並替換段落文本
            for paragraph in doc.paragraphs:
                if paragraph.text.strip():  # 只翻譯非空段落
                    translated_text = GoogleTranslator(source='auto', target=target_language).translate(paragraph.text)
                    paragraph.text = translated_text  # 用翻譯後的文本替換原始文本
            
            # 處理表格中的文本
            for table in doc.tables:
                for row in table.rows:
                    for cell in row.cells:
                        if cell.text.strip():  # 只翻譯非空單元格
                            translated_text = GoogleTranslator(source='auto', target=target_language).translate(cell.text)
                            cell.text = translated_text  # 用翻譯後的文本替換原始文本

            # 處理文本框和形狀中的文本
            for inline_shape in doc.inline_shapes:
                if inline_shape.type == 3:  # 3 表示文本框
                    if inline_shape.text_frame and inline_shape.text_frame.text.strip():
                        translated_text = GoogleTranslator(source='auto', target=target_language).translate(inline_shape.text_frame.text)
                        inline_shape.text_frame.text = translated_text  # 替換文本框中的文本

            output_path = "translated_" + os.path.basename(original_file_path)
            doc.save(output_path)
            log_messages.append(f"Saved translated document as {output_path}.")

        # 處理 .pptx 文件
        elif copied_file_path.endswith(".pptx"):
            prs = Presentation(copied_file_path)

            # 翻譯並替換文本
            for slide in prs.slides:
                for shape in slide.shapes:
                    if hasattr(shape, "text") and shape.text.strip():  # 只翻譯非空文本框
                        # 保存原始格式信息
                        original_font_size = None
                        if shape.has_text_frame:
                            original_font_size = shape.text_frame.paragraphs[0].runs[0].font.size
                        
                        translated_text = GoogleTranslator(source='auto', target=target_language).translate(shape.text)
                        shape.text = translated_text  # 用翻譯後的文本替換原始文本

                        # 恢復原始格式
                        if shape.has_text_frame and original_font_size is not None:
                            for paragraph in shape.text_frame.paragraphs:
                                for run in paragraph.runs:
                                    run.font.size = original_font_size

            output_path = "translated_" + os.path.basename(original_file_path)
            prs.save(output_path)
            log_messages.append(f"Saved translated presentation as {output_path}.")

        else:
            log_messages.append("Unsupported file type. Please upload a .docx or .pptx file.")
            return None, "\n".join(log_messages)  # 返回 None 如果文件類型不支持

        return output_path, "\n".join(log_messages)  # 返回文件路徑和日誌信息

    except Exception as e:
        log_messages.append(f"An error occurred: {e}")
        return None, "\n".join(log_messages)  # 返回 None 和日誌

iface = gr.Interface(
    fn=translate_document,
    inputs=[
        gr.File(label="上傳文件 (.docx 或 .pptx)"),
        gr.Dropdown(choices=["en", "es", "fr", "de", "ja", "ko", "zh-TW", "vi"], label="Target Language"),
        gr.Dropdown(choices=["US", "UK", "ES", "FR", "DE", "JP", "KR", "TW", "VN"], label="Target Country"),
        gr.Textbox(label="API 金鑰(可選)", placeholder="如果需要,請輸入您的 API 金鑰")
    ],
    outputs=[
        gr.File(label="Download Translated Document"),
        gr.Textbox(label="Log Output", lines=10)  # 添加一個文本框來顯示日誌信息
    ],
    title="Document Translator",
    description="Translate your documents while preserving the original format.",
)

iface.launch()