Files
spaceflow/commands/period-summary/src/locales/index.ts
2026-02-15 22:02:21 +08:00

12 lines
352 B
TypeScript

import { addLocaleResources } from "@spaceflow/core";
import zhCN from "./zh-cn/period-summary.json";
import en from "./en/period-summary.json";
/** period-summary 命令 i18n 资源 */
export const periodSummaryLocales: Record<string, Record<string, string>> = {
"zh-CN": zhCN,
en,
};
addLocaleResources("period-summary", periodSummaryLocales);