feat: 新增底部Dock测量面板与回调联动
This commit is contained in:
@@ -18,7 +18,8 @@ src/
|
||||
│ └── theme.ts # 主题服务
|
||||
├── locales/
|
||||
│ ├── types.ts # 翻译类型定义
|
||||
│ ├── zh-CN.ts # 中文翻译
|
||||
│ ├── zh-CN.ts # 简体中文翻译
|
||||
│ ├── zh-TW.ts # 繁体中文翻译
|
||||
│ └── en-US.ts # 英文翻译
|
||||
└── themes/
|
||||
├── types.ts # 主题类型定义
|
||||
@@ -43,7 +44,7 @@ class LocaleManager {
|
||||
subscribe(listener: (locale: LocaleType) => void): () => void;
|
||||
}
|
||||
|
||||
type LocaleType = 'zh-CN' | 'en-US';
|
||||
type LocaleType = 'zh-CN' | 'zh-TW' | 'en-US';
|
||||
|
||||
// 单例导出
|
||||
export const localeManager: LocaleManager;
|
||||
|
||||
Reference in New Issue
Block a user