From 0ae9ed5a177b1c197bff2da68a1cefd6c6e54121 Mon Sep 17 00:00:00 2001 From: Jason Date: Wed, 19 Nov 2025 08:52:26 +0800 Subject: [PATCH] fix: resolve JSON syntax error in i18n locale files Fixed missing closing braces in the error object of both en.json and zh.json locale files that caused Vite parse errors. The envManager.error object was not properly closed, causing the subsequent skills object to be parsed incorrectly. --- src/i18n/locales/en.json | 2 ++ src/i18n/locales/zh.json | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/i18n/locales/en.json b/src/i18n/locales/en.json index 15b6612..779301f 100644 --- a/src/i18n/locales/en.json +++ b/src/i18n/locales/en.json @@ -645,6 +645,8 @@ }, "error": { "noSelection": "Please select environment variables to delete" + } + }, "skills": { "manage": "Skills", "title": "Claude Skills Management", diff --git a/src/i18n/locales/zh.json b/src/i18n/locales/zh.json index 7d1fced..e2fb059 100644 --- a/src/i18n/locales/zh.json +++ b/src/i18n/locales/zh.json @@ -645,6 +645,8 @@ }, "error": { "noSelection": "请选择要删除的环境变量" + } + }, "skills": { "manage": "Skills", "title": "Claude Skills 管理",