gitextract_n0dc3ude/ ├── .dockerignore ├── .gitignore ├── All_Translation.py ├── Bing_translation.py ├── Deepl_Translation.py ├── Dockerfile ├── EbookTranslator/ │ ├── EbookTranslator/ │ │ ├── All_Translation.py │ │ ├── Deepl_Translation.py │ │ ├── LLMS_translation.py │ │ ├── YouDao_translation.py │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── convert2pdf.py │ │ ├── load_config.py │ │ └── main_function.py │ ├── LICENSE │ ├── README.md │ ├── requirements.txt │ └── setup.py ├── LICENSE ├── LLMS_translation.py ├── OldMain.py ├── README.md ├── README_CN.md ├── README_JA.md ├── README_KO.md ├── README_TW.md ├── Subset_Font.py ├── YouDao_translation.py ├── app.py ├── build.py ├── config.json ├── convert2pdf.py ├── docker-compose.yml ├── download_model.py ├── get_new_blocks.py ├── index.html ├── languagedetect.py ├── load_config.py ├── main.py ├── merge_pdf.py ├── pdf_thumbnail.py ├── pdfviewer.html ├── pdfviewer2.html ├── recent.json ├── requirements.txt ├── static/ │ ├── 1.js │ ├── 2.js │ ├── 3.js │ ├── 4.js │ ├── i18n.js │ ├── main.css │ ├── setup.css │ ├── setup.js │ └── thumbnail/ │ └── ...txt └── update_recent.py