From 11512ba4722185e5f922917b34d1a4b148778258 Mon Sep 17 00:00:00 2001 From: Rajeev R Date: Mon, 30 Mar 2026 07:24:23 -0400 Subject: [PATCH 1/2] feat(i18n): add English/Chinese language toggle with full UI translation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Implements a lightweight reactive i18n system without external libraries. English is now the default language; users can switch to Chinese via the EN/中 toggle button in the navbar, with preference persisted to localStorage. Co-Authored-By: koyouko Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/components/GraphPanel.vue | 17 +- frontend/src/components/HistoryDatabase.vue | 51 ++-- frontend/src/components/Step1GraphBuild.vue | 36 +-- frontend/src/components/Step2EnvSetup.vue | 206 ++++++------- frontend/src/components/Step3Simulation.vue | 7 +- frontend/src/components/Step4Report.vue | 4 +- frontend/src/components/Step5Interaction.vue | 5 +- frontend/src/i18n/index.js | 291 +++++++++++++++++++ frontend/src/i18n/useT.js | 32 ++ frontend/src/store/locale.js | 12 + frontend/src/views/Home.vue | 213 +++++++------- frontend/src/views/InteractionView.vue | 8 +- frontend/src/views/MainView.vue | 21 +- frontend/src/views/Process.vue | 85 +++--- frontend/src/views/ReportView.vue | 8 +- frontend/src/views/SimulationRunView.vue | 9 +- frontend/src/views/SimulationView.vue | 6 +- 17 files changed, 692 insertions(+), 319 deletions(-) create mode 100644 frontend/src/i18n/index.js create mode 100644 frontend/src/i18n/useT.js create mode 100644 frontend/src/store/locale.js diff --git a/frontend/src/components/GraphPanel.vue b/frontend/src/components/GraphPanel.vue index 314c966e4..06f5ce79d 100644 --- a/frontend/src/components/GraphPanel.vue +++ b/frontend/src/components/GraphPanel.vue @@ -4,11 +4,11 @@ Graph Relationship Visualization
- -
@@ -27,7 +27,7 @@ - {{ isSimulating ? 'GraphRAG长短期记忆实时更新中' : '实时更新中...' }} + {{ isSimulating ? t('graph.simulationUpdating') : t('graph.updating') }} @@ -39,8 +39,8 @@ - 还有少量内容处理中,建议稍后手动刷新图谱 -