// ... existing keys ... enum I18nKey { // ... other members ... notice_board = "notice_board", // <-- Add this line // ... other members ... } // ... rest of the file ...
文件: src/i18n/zh-CN.ts
1 2 3 4 5 6 7
// ... imports ... exportconstzh_CN: Translation = { // ... existing translations ... [Key.notice_board]: "公告栏", // <-- Add this line // ... existing translations ... }; // ... rest of the file ...
import type { MarkdownHeading } from "astro"; import Categories from "./Categories.astro"; import Profile from "./Profile.astro"; import Tag from "./Tags.astro"; // --- 新增导入 --- import NoticeBoard from "../widget/NoticeBoard.astro"; // --- End 新增导入 --- // ... rest of the imports and logic ...