From 5dba3d99302ffa5b495f7f487be67bcb588c60eb Mon Sep 17 00:00:00 2001 From: kever Date: Tue, 17 Feb 2026 00:21:25 +0800 Subject: [PATCH] feat(i18n): integrate i18next for internationalization support and add initial translation setup --- frontend/src/App.tsx | 36 +++++++++++++++++++++--------------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index f89e39c..751ee24 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -39,21 +39,27 @@ function AppContent() { return (
- - - 抓包 - - - 数据库 - - - 配装优化 - - + {'抓包'}, + }, + { + key: '/database', + label: {'数据库'}, + }, + { + key: '/optimizer', + label: {'配装优化'}, + }, + ]} + /> + +