feat: 语言国际化重构

This commit is contained in:
DEV_DSW
2026-04-21 16:52:45 +08:00
parent 0c068e9f4d
commit 3349d41881
76 changed files with 4440 additions and 3232 deletions

View File

@@ -1,6 +1,6 @@
export interface TaskCenterItem {
title: string;
desc: string;
titleKey: string;
descriptionKey: string;
id: string;
icon: string;
type?: 'channel';
@@ -8,15 +8,15 @@ export interface TaskCenterItem {
export const taskCenterList: TaskCenterItem[] = [
{
title: '一键打开各渠道',
desc: '人工账号登录,为自动化操作做好准备',
titleKey: 'task.taskCenter.items.channelOpen.title',
descriptionKey: 'task.taskCenter.items.channelOpen.description',
id: 'channel-open',
icon: '渠',
type: 'channel',
},
{
title: '渠道房型',
desc: '销售渠道下的指定房型,管理开关房型',
titleKey: 'task.taskCenter.items.roomTypeManage.title',
descriptionKey: 'task.taskCenter.items.roomTypeManage.description',
id: 'room-type-manage',
icon: '房',
},