gitextract_t6167sma/ ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── .prettierrc.js ├── CONTRIBUTING.md ├── LICENSE ├── README-zh_CN.md ├── README.md ├── commitlint.config.js ├── examples/ │ ├── README.md │ ├── chrome-extension/ │ │ ├── README.md │ │ ├── _locales/ │ │ │ └── en/ │ │ │ └── messages.json │ │ ├── feed.html │ │ ├── manifest.json │ │ ├── package.json │ │ └── transmart.config.js │ └── next.js/ │ ├── @types/ │ │ └── i18next.d.ts │ ├── components/ │ │ ├── Footer.tsx │ │ └── Header.tsx │ ├── next-env.d.ts │ ├── next-i18next.config.js │ ├── next-utils.config.js │ ├── next.config.js │ ├── package.json │ ├── pages/ │ │ ├── _app.tsx │ │ ├── _document.tsx │ │ ├── index.tsx │ │ └── second-page.tsx │ ├── public/ │ │ ├── app.css │ │ └── locales/ │ │ └── en/ │ │ ├── common.json │ │ ├── footer.json │ │ └── second-page.json │ ├── transmart.config.js │ ├── tsconfig.json │ └── vercel.json ├── lerna.json ├── package.json ├── packages/ │ ├── cli/ │ │ ├── README.md │ │ ├── bin/ │ │ │ └── transmart.js │ │ ├── package.json │ │ ├── src/ │ │ │ ├── cli.ts │ │ │ ├── index.ts │ │ │ ├── options.ts │ │ │ └── types.ts │ │ └── tsconfig.build.json │ └── core/ │ ├── README.md │ ├── package.json │ ├── src/ │ │ ├── index.ts │ │ ├── language.ts │ │ ├── limit.ts │ │ ├── split.ts │ │ ├── task.ts │ │ ├── translate.ts │ │ ├── transmart.ts │ │ ├── types.ts │ │ └── util.ts │ ├── test/ │ │ └── locales/ │ │ ├── de/ │ │ │ ├── common.json │ │ │ └── tos.json │ │ ├── en/ │ │ │ ├── common.json │ │ │ ├── large-file.json │ │ │ └── tos.json │ │ ├── jp/ │ │ │ └── common.json │ │ ├── zh-CN/ │ │ │ ├── common.json │ │ │ ├── large-file.json │ │ │ └── tos.json │ │ └── zh-TW/ │ │ ├── common.json │ │ └── tos.json │ └── tsconfig.build.json └── tsconfig.json