From ef74c226fb7b419a4653b08d69996b18c93c48d5 Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Tue, 13 Jan 2026 14:25:45 +0900 Subject: [PATCH] [backport core/1.36] fix: enable immediate file saving for i18n translations (#8014) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #7785 to `core/1.36` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-8014-backport-core-1-36-fix-enable-immediate-file-saving-for-i18n-translations-2e76d73d36508105a894e69b0e1a2fdb) by [Unito](https://www.unito.io) Co-authored-by: sno Co-authored-by: github-actions Co-authored-by: Alexander Brown --- .i18nrc.cjs | 1 + 1 file changed, 1 insertion(+) diff --git a/.i18nrc.cjs b/.i18nrc.cjs index 14c958591..f0ed79099 100644 --- a/.i18nrc.cjs +++ b/.i18nrc.cjs @@ -6,6 +6,7 @@ const { defineConfig } = require('@lobehub/i18n-cli'); module.exports = defineConfig({ modelName: 'gpt-4.1', splitToken: 1024, + saveImmediately: true, entry: 'src/locales/en', entryLocale: 'en', output: 'src/locales',