From cd3d045ef5a1d3f8de12d1105b8332b8ec956c1b Mon Sep 17 00:00:00 2001 From: mamamiyear Date: Tue, 7 Jul 2026 16:51:39 +0800 Subject: [PATCH] refactor: localize settings sidebar tab names to Chinese MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rename the settings tabs to 通用设置 / 对象存储 / 远程主机 / 智能识图 so the sidebar reads naturally for the primary Chinese audience. --- frontend/src/App.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 535d593..0858d66 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -64,10 +64,10 @@ const activeTab = ref('general') // Sidebar entries are declarative so adding a destination type later is // a one-line change. The label values match the user-facing tab names. const sidebarItems: Array<{ id: SettingsTab; label: string }> = [ - { id: 'general', label: 'General' }, - { id: 's3', label: 'S3' }, - { id: 'ssh', label: 'SSH' }, - { id: 'llm', label: 'LLM' }, + { id: 'general', label: '通用设置' }, + { id: 's3', label: '对象存储' }, + { id: 'ssh', label: '远程主机' }, + { id: 'llm', label: '智能识图' }, ] interface OverlayPayload {