mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-30 11:11:53 +00:00
* Add support for korea translation * Update locales [skip ci] * Update ko.json * Update locales [skip ci] * Update ko.json --------- Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Dr.Lt.Data <128333288+ltdrdata@users.noreply.github.com>
16 lines
516 B
JavaScript
16 lines
516 B
JavaScript
// This file is intentionally kept in CommonJS format (.cjs)
|
|
// to resolve compatibility issues with dependencies that require CommonJS.
|
|
// Do not convert this file to ESModule format unless all dependencies support it.
|
|
const { defineConfig } = require('@lobehub/i18n-cli');
|
|
|
|
module.exports = defineConfig({
|
|
entry: 'src/locales/en.json',
|
|
entryLocale: 'en',
|
|
output: 'src/locales',
|
|
outputLocales: ['zh', 'ru', 'ja', 'ko'],
|
|
reference: `Keep following model names untranslated:
|
|
- flux
|
|
- photomaker
|
|
`
|
|
});
|