From 85bd215f1f386140d4cf4cffb410a7d658ca0b41 Mon Sep 17 00:00:00 2001 From: Richard Date: Wed, 8 Apr 2026 13:58:53 +0800 Subject: [PATCH] fix(i18n): add missing zh-CN translation for newRecording dialog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The zh-CN locale was missing the 'newRecording' section in editor.json, which is present in the en locale. This commit adds the translation for: - title: 返回录屏 - description: 当前会话已保存。 - cancel: 取消 - confirm: 确认 --- src/i18n/locales/zh-CN/editor.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/i18n/locales/zh-CN/editor.json b/src/i18n/locales/zh-CN/editor.json index 5d27bef..44abab9 100644 --- a/src/i18n/locales/zh-CN/editor.json +++ b/src/i18n/locales/zh-CN/editor.json @@ -1,4 +1,10 @@ { + "newRecording": { + "title": "返回录屏", + "description": "当前会话已保存。", + "cancel": "取消", + "confirm": "确认" + }, "errors": { "noVideoLoaded": "未加载视频", "videoNotReady": "视频未就绪",