From 33bfdac89f6f54e76c545c36a61c0cb1b1bc8048 Mon Sep 17 00:00:00 2001 From: siujamo Date: Wed, 20 May 2026 02:15:26 -0500 Subject: [PATCH] fix: add i18n.json to map zh-hans/en-gb locale keys for outline title Rspress default i18n uses short keys (zh/en), but this project uses zh-hans/en-gb, causing outline title to always fall back to English. --- i18n.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/i18n.json b/i18n.json index cd523c5..cdd9da3 100644 --- a/i18n.json +++ b/i18n.json @@ -1,10 +1,6 @@ { - "blog": { - "en-gb": "Blog", - "zh-hans": "博客" - }, - "notifications": { - "en-gb": "Notifications", - "zh-hans": "通知" + "outlineTitle": { + "en-gb": "ON THIS PAGE", + "zh-hans": "目录" } }