├── .github └── workflows │ ├── build.yml │ └── docker.yml ├── .gitignore ├── .python-version ├── DONATE.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── README_en.md ├── bin ├── bin.go ├── gen_hash.go ├── gen_update.go └── utils.go ├── cmd └── mtranserver │ └── main.go ├── compose.yml ├── data ├── data.go ├── gen_records.go ├── records.json └── utils.go ├── deprecated ├── cpp │ └── README.md ├── js │ ├── CHANGELOG.md │ ├── CONFIG.md │ ├── Dockerfile │ ├── Dockerfile.model │ ├── Makefile │ ├── README.md │ ├── build.sh │ ├── js │ │ ├── mts.js │ │ ├── routes │ │ │ ├── base.js │ │ │ ├── plugins.js │ │ │ ├── plugins │ │ │ │ ├── deepl.js │ │ │ │ ├── deeplx.js │ │ │ │ ├── google.js │ │ │ │ ├── imme.js │ │ │ │ └── kiss.js │ │ │ └── translate.js │ │ └── utils │ │ │ ├── config.js │ │ │ ├── middleware.js │ │ │ ├── preload.js │ │ │ └── translator.js │ ├── nodemon.json │ ├── package.json │ ├── packages │ │ └── mtran-core.tgz │ ├── pnpm-lock.yaml │ ├── start.sh │ ├── test.sh │ └── tests │ │ ├── base.js │ │ ├── plugins.js │ │ └── translate.js └── rust │ └── README.md ├── docs ├── .gitignore ├── README.md ├── docs │ ├── en │ │ ├── _meta.json │ │ ├── guide │ │ │ ├── _meta.json │ │ │ └── index.md │ │ ├── hello.md │ │ └── index.md │ ├── public │ │ ├── icon-banner-dark.png │ │ ├── icon-banner-light.png │ │ └── icon-min.png │ └── zh │ │ ├── _meta.json │ │ ├── about.md │ │ ├── guide │ │ ├── _meta.json │ │ ├── images │ │ │ ├── alipay.jpg │ │ │ ├── preview.png │ │ │ └── wxpay.jpg │ │ ├── index.md │ │ └── 支持我.mdx │ │ └── index.md ├── i18n.json ├── package.json ├── pnpm-lock.yaml ├── rspress.config.ts └── tsconfig.json ├── go.mod ├── go.sum ├── images ├── alipay.jpg ├── community.png ├── icon.png ├── lines.png ├── preview.png └── wxpay.jpg ├── install.sh ├── internal ├── config │ └── config.go ├── docs │ ├── docs.go │ ├── swagger.json │ └── swagger.yaml ├── downloader │ ├── downloader.go │ └── downloader_test.go ├── handlers │ ├── deepl.go │ ├── google.go │ ├── hcfy.go │ ├── imme.go │ ├── kiss.go │ ├── language.go │ ├── language_test.go │ ├── system.go │ ├── system_test.go │ └── translate.go ├── logger │ └── logger.go ├── manager │ ├── client.go │ ├── client_test.go │ ├── daemon.go │ ├── daemon_test.go │ ├── manager.go │ └── manager_test.go ├── middleware │ ├── auth.go │ ├── auth_test.go │ ├── cors.go │ ├── cors_test.go │ └── logger.go ├── models │ ├── records.go │ └── records_test.go ├── routes │ └── routes.go ├── server │ ├── integration_test.go │ ├── server.go │ └── server_test.go ├── services │ ├── detector.go │ └── engine.go ├── utils │ ├── env.go │ ├── file.go │ ├── file_test.go │ ├── port.go │ ├── port_test.go │ ├── version.go │ └── version_test.go └── version │ └── version.go ├── mtranserver.service ├── pyproject.toml ├── tests └── server_test.py ├── ui ├── .gitignore ├── components.json ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public │ └── icon.png ├── src │ ├── App.css │ ├── App.tsx │ ├── components │ │ ├── SettingsMenu.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── alert.tsx │ │ │ ├── aspect-ratio.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button-group.tsx │ │ │ ├── button.tsx │ │ │ ├── calendar.tsx │ │ │ ├── card.tsx │ │ │ ├── carousel.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── collapsible.tsx │ │ │ ├── command.tsx │ │ │ ├── context-menu.tsx │ │ │ ├── dialog.tsx │ │ │ ├── drawer.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── empty.tsx │ │ │ ├── field.tsx │ │ │ ├── form.tsx │ │ │ ├── hover-card.tsx │ │ │ ├── input-group.tsx │ │ │ ├── input-otp.tsx │ │ │ ├── input.tsx │ │ │ ├── item.tsx │ │ │ ├── kbd.tsx │ │ │ ├── label.tsx │ │ │ ├── menubar.tsx │ │ │ ├── navigation-menu.tsx │ │ │ ├── pagination.tsx │ │ │ ├── popover.tsx │ │ │ ├── progress.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── resizable.tsx │ │ │ ├── scroll-area.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── slider.tsx │ │ │ ├── sonner.tsx │ │ │ ├── spinner.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toggle-group.tsx │ │ │ ├── toggle.tsx │ │ │ └── tooltip.tsx │ ├── contexts │ │ └── ThemeContext.tsx │ ├── hooks │ │ └── use-mobile.ts │ ├── i18n │ │ └── index.ts │ ├── index.css │ ├── lib │ │ └── utils.ts │ └── main.tsx ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── ui.go └── vite.config.ts └── uv.lock /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /DONATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/DONATE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/README_en.md -------------------------------------------------------------------------------- /bin/bin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/bin/bin.go -------------------------------------------------------------------------------- /bin/gen_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/bin/gen_hash.go -------------------------------------------------------------------------------- /bin/gen_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/bin/gen_update.go -------------------------------------------------------------------------------- /bin/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/bin/utils.go -------------------------------------------------------------------------------- /cmd/mtranserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/cmd/mtranserver/main.go -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/compose.yml -------------------------------------------------------------------------------- /data/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/data/data.go -------------------------------------------------------------------------------- /data/gen_records.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/data/gen_records.go -------------------------------------------------------------------------------- /data/records.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/data/records.json -------------------------------------------------------------------------------- /data/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/data/utils.go -------------------------------------------------------------------------------- /deprecated/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/cpp/README.md -------------------------------------------------------------------------------- /deprecated/js/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/CHANGELOG.md -------------------------------------------------------------------------------- /deprecated/js/CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/CONFIG.md -------------------------------------------------------------------------------- /deprecated/js/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/Dockerfile -------------------------------------------------------------------------------- /deprecated/js/Dockerfile.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/Dockerfile.model -------------------------------------------------------------------------------- /deprecated/js/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/Makefile -------------------------------------------------------------------------------- /deprecated/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/README.md -------------------------------------------------------------------------------- /deprecated/js/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/build.sh -------------------------------------------------------------------------------- /deprecated/js/js/mts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/mts.js -------------------------------------------------------------------------------- /deprecated/js/js/routes/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/routes/base.js -------------------------------------------------------------------------------- /deprecated/js/js/routes/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/routes/plugins.js -------------------------------------------------------------------------------- /deprecated/js/js/routes/plugins/deepl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/routes/plugins/deepl.js -------------------------------------------------------------------------------- /deprecated/js/js/routes/plugins/deeplx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/routes/plugins/deeplx.js -------------------------------------------------------------------------------- /deprecated/js/js/routes/plugins/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/routes/plugins/google.js -------------------------------------------------------------------------------- /deprecated/js/js/routes/plugins/imme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/routes/plugins/imme.js -------------------------------------------------------------------------------- /deprecated/js/js/routes/plugins/kiss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/routes/plugins/kiss.js -------------------------------------------------------------------------------- /deprecated/js/js/routes/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/routes/translate.js -------------------------------------------------------------------------------- /deprecated/js/js/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/utils/config.js -------------------------------------------------------------------------------- /deprecated/js/js/utils/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/utils/middleware.js -------------------------------------------------------------------------------- /deprecated/js/js/utils/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/utils/preload.js -------------------------------------------------------------------------------- /deprecated/js/js/utils/translator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/js/utils/translator.js -------------------------------------------------------------------------------- /deprecated/js/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/nodemon.json -------------------------------------------------------------------------------- /deprecated/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/package.json -------------------------------------------------------------------------------- /deprecated/js/packages/mtran-core.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/packages/mtran-core.tgz -------------------------------------------------------------------------------- /deprecated/js/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/pnpm-lock.yaml -------------------------------------------------------------------------------- /deprecated/js/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/start.sh -------------------------------------------------------------------------------- /deprecated/js/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/test.sh -------------------------------------------------------------------------------- /deprecated/js/tests/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/tests/base.js -------------------------------------------------------------------------------- /deprecated/js/tests/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/tests/plugins.js -------------------------------------------------------------------------------- /deprecated/js/tests/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/js/tests/translate.js -------------------------------------------------------------------------------- /deprecated/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/deprecated/rust/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docs/en/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/en/_meta.json -------------------------------------------------------------------------------- /docs/docs/en/guide/_meta.json: -------------------------------------------------------------------------------- 1 | ["index"] 2 | -------------------------------------------------------------------------------- /docs/docs/en/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/en/guide/index.md -------------------------------------------------------------------------------- /docs/docs/en/hello.md: -------------------------------------------------------------------------------- 1 | # Hello world! 2 | 3 | ## Start 4 | 5 | Write something to build your own docs! 🎁 6 | -------------------------------------------------------------------------------- /docs/docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/en/index.md -------------------------------------------------------------------------------- /docs/docs/public/icon-banner-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/public/icon-banner-dark.png -------------------------------------------------------------------------------- /docs/docs/public/icon-banner-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/public/icon-banner-light.png -------------------------------------------------------------------------------- /docs/docs/public/icon-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/public/icon-min.png -------------------------------------------------------------------------------- /docs/docs/zh/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/zh/_meta.json -------------------------------------------------------------------------------- /docs/docs/zh/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/zh/about.md -------------------------------------------------------------------------------- /docs/docs/zh/guide/_meta.json: -------------------------------------------------------------------------------- 1 | ["index", "支持我"] 2 | -------------------------------------------------------------------------------- /docs/docs/zh/guide/images/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/zh/guide/images/alipay.jpg -------------------------------------------------------------------------------- /docs/docs/zh/guide/images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/zh/guide/images/preview.png -------------------------------------------------------------------------------- /docs/docs/zh/guide/images/wxpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/zh/guide/images/wxpay.jpg -------------------------------------------------------------------------------- /docs/docs/zh/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/zh/guide/index.md -------------------------------------------------------------------------------- /docs/docs/zh/guide/支持我.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/zh/guide/支持我.mdx -------------------------------------------------------------------------------- /docs/docs/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/docs/zh/index.md -------------------------------------------------------------------------------- /docs/i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/i18n.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/pnpm-lock.yaml -------------------------------------------------------------------------------- /docs/rspress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/rspress.config.ts -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/go.sum -------------------------------------------------------------------------------- /images/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/images/alipay.jpg -------------------------------------------------------------------------------- /images/community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/images/community.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/images/lines.png -------------------------------------------------------------------------------- /images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/images/preview.png -------------------------------------------------------------------------------- /images/wxpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/images/wxpay.jpg -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/install.sh -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/docs/docs.go -------------------------------------------------------------------------------- /internal/docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/docs/swagger.json -------------------------------------------------------------------------------- /internal/docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/docs/swagger.yaml -------------------------------------------------------------------------------- /internal/downloader/downloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/downloader/downloader.go -------------------------------------------------------------------------------- /internal/downloader/downloader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/downloader/downloader_test.go -------------------------------------------------------------------------------- /internal/handlers/deepl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/handlers/deepl.go -------------------------------------------------------------------------------- /internal/handlers/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/handlers/google.go -------------------------------------------------------------------------------- /internal/handlers/hcfy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/handlers/hcfy.go -------------------------------------------------------------------------------- /internal/handlers/imme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/handlers/imme.go -------------------------------------------------------------------------------- /internal/handlers/kiss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/handlers/kiss.go -------------------------------------------------------------------------------- /internal/handlers/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/handlers/language.go -------------------------------------------------------------------------------- /internal/handlers/language_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/handlers/language_test.go -------------------------------------------------------------------------------- /internal/handlers/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/handlers/system.go -------------------------------------------------------------------------------- /internal/handlers/system_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/handlers/system_test.go -------------------------------------------------------------------------------- /internal/handlers/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/handlers/translate.go -------------------------------------------------------------------------------- /internal/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/logger/logger.go -------------------------------------------------------------------------------- /internal/manager/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/manager/client.go -------------------------------------------------------------------------------- /internal/manager/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/manager/client_test.go -------------------------------------------------------------------------------- /internal/manager/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/manager/daemon.go -------------------------------------------------------------------------------- /internal/manager/daemon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/manager/daemon_test.go -------------------------------------------------------------------------------- /internal/manager/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/manager/manager.go -------------------------------------------------------------------------------- /internal/manager/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/manager/manager_test.go -------------------------------------------------------------------------------- /internal/middleware/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/middleware/auth.go -------------------------------------------------------------------------------- /internal/middleware/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/middleware/auth_test.go -------------------------------------------------------------------------------- /internal/middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/middleware/cors.go -------------------------------------------------------------------------------- /internal/middleware/cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/middleware/cors_test.go -------------------------------------------------------------------------------- /internal/middleware/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/middleware/logger.go -------------------------------------------------------------------------------- /internal/models/records.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/models/records.go -------------------------------------------------------------------------------- /internal/models/records_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/models/records_test.go -------------------------------------------------------------------------------- /internal/routes/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/routes/routes.go -------------------------------------------------------------------------------- /internal/server/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/server/integration_test.go -------------------------------------------------------------------------------- /internal/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/server/server.go -------------------------------------------------------------------------------- /internal/server/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/server/server_test.go -------------------------------------------------------------------------------- /internal/services/detector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/services/detector.go -------------------------------------------------------------------------------- /internal/services/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/services/engine.go -------------------------------------------------------------------------------- /internal/utils/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/utils/env.go -------------------------------------------------------------------------------- /internal/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/utils/file.go -------------------------------------------------------------------------------- /internal/utils/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/utils/file_test.go -------------------------------------------------------------------------------- /internal/utils/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/utils/port.go -------------------------------------------------------------------------------- /internal/utils/port_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/utils/port_test.go -------------------------------------------------------------------------------- /internal/utils/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/utils/version.go -------------------------------------------------------------------------------- /internal/utils/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/utils/version_test.go -------------------------------------------------------------------------------- /internal/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/internal/version/version.go -------------------------------------------------------------------------------- /mtranserver.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/mtranserver.service -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/server_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/tests/server_test.py -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/components.json -------------------------------------------------------------------------------- /ui/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/eslint.config.js -------------------------------------------------------------------------------- /ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/index.html -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/pnpm-lock.yaml -------------------------------------------------------------------------------- /ui/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/public/icon.png -------------------------------------------------------------------------------- /ui/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/App.css -------------------------------------------------------------------------------- /ui/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/App.tsx -------------------------------------------------------------------------------- /ui/src/components/SettingsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/SettingsMenu.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/button-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/button-group.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/button.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/card.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/command.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/empty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/empty.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/field.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/form.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/input-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/input-group.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/input.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/item.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/kbd.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/label.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/select.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/spinner.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/table.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /ui/src/contexts/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/contexts/ThemeContext.tsx -------------------------------------------------------------------------------- /ui/src/hooks/use-mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/hooks/use-mobile.ts -------------------------------------------------------------------------------- /ui/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/i18n/index.ts -------------------------------------------------------------------------------- /ui/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/index.css -------------------------------------------------------------------------------- /ui/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/lib/utils.ts -------------------------------------------------------------------------------- /ui/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/src/main.tsx -------------------------------------------------------------------------------- /ui/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/tsconfig.app.json -------------------------------------------------------------------------------- /ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/tsconfig.json -------------------------------------------------------------------------------- /ui/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/tsconfig.node.json -------------------------------------------------------------------------------- /ui/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/ui.go -------------------------------------------------------------------------------- /ui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/ui/vite.config.ts -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxnuo/MTranServer/HEAD/uv.lock --------------------------------------------------------------------------------