147 lines
2.9 KiB
TypeScript
147 lines
2.9 KiB
TypeScript
export interface RepairPageText {
|
||
currentTicket: {
|
||
errorMessage: string;
|
||
title: string;
|
||
note: string;
|
||
extra: string;
|
||
hint: string;
|
||
nohint: string;
|
||
};
|
||
typeText: {
|
||
computer: string;
|
||
appliance: string;
|
||
};
|
||
deviceText: {
|
||
title: string;
|
||
placeholder: string;
|
||
};
|
||
deviceModelText: {
|
||
title: string;
|
||
placeholder: string;
|
||
};
|
||
ownerText: {
|
||
title: string;
|
||
placeholder: string;
|
||
};
|
||
phoneText: {
|
||
title: string;
|
||
placeholder: string;
|
||
};
|
||
descriptionText: {
|
||
title: string;
|
||
placeholder: string;
|
||
};
|
||
checkboxText: {
|
||
none: string;
|
||
usbDisk: string;
|
||
mouseOrReceiver: string;
|
||
powerAdapter: string;
|
||
others: {
|
||
label: string;
|
||
desc: string;
|
||
};
|
||
};
|
||
cardText: {
|
||
note: string;
|
||
title: string;
|
||
};
|
||
}
|
||
|
||
export const repairPageZhCn: RepairPageText = {
|
||
currentTicket: {
|
||
errorMessage: '未获取到工单!',
|
||
title: '',
|
||
note: '',
|
||
extra: '详细信息',
|
||
hint: '我正在进行的工单',
|
||
nohint: '暂无进行中的工单',
|
||
},
|
||
typeText: {
|
||
computer: '电脑',
|
||
appliance: '电器',
|
||
},
|
||
deviceText: {
|
||
title: '设备品牌',
|
||
placeholder: '如:ROG',
|
||
},
|
||
deviceModelText: {
|
||
title: '设备型号',
|
||
placeholder: '如:幻 14 2022',
|
||
},
|
||
ownerText: {
|
||
title: '机主姓名',
|
||
placeholder: '如:晓洋',
|
||
},
|
||
phoneText: {
|
||
title: '联系方式',
|
||
placeholder: '如:18888888888',
|
||
},
|
||
descriptionText: {
|
||
title: '问题描述',
|
||
placeholder: '如:无法登入校内网站',
|
||
},
|
||
checkboxText: {
|
||
none: '无附件',
|
||
usbDisk: 'U 盘',
|
||
mouseOrReceiver: '鼠标/接收器',
|
||
powerAdapter: '电源适配器',
|
||
others: {
|
||
label: '其他',
|
||
desc: '请于评论中详述',
|
||
},
|
||
},
|
||
cardText: {
|
||
note: '工单描述请尽量简短哦!',
|
||
title: '预填写工单',
|
||
},
|
||
};
|
||
|
||
export const repairPageEnUs: RepairPageText = {
|
||
currentTicket: {
|
||
errorMessage: 'Cannot get the ticket!',
|
||
title: '',
|
||
note: '',
|
||
extra: 'Details',
|
||
hint: 'My continuing tickets',
|
||
nohint: 'No continuing tickets',
|
||
},
|
||
typeText: {
|
||
computer: 'Computer',
|
||
appliance: 'Appliance',
|
||
},
|
||
deviceText: {
|
||
title: 'Brand',
|
||
placeholder: 'e.g. ROG',
|
||
},
|
||
deviceModelText: {
|
||
title: 'Device Model',
|
||
placeholder: 'e.g. Zephyrus G14 2022',
|
||
},
|
||
ownerText: {
|
||
title: 'Name',
|
||
placeholder: 'e.g. Dean Ma',
|
||
},
|
||
phoneText: {
|
||
title: 'Tel',
|
||
placeholder: 'e.g. 18888888888',
|
||
},
|
||
descriptionText: {
|
||
title: 'Problem Description',
|
||
placeholder: 'e.g. ZJUWLAN inaccessable',
|
||
},
|
||
checkboxText: {
|
||
none: 'None',
|
||
usbDisk: 'USB Disk',
|
||
mouseOrReceiver: 'Mouse/Receiver',
|
||
powerAdapter: 'Power Adapter',
|
||
others: {
|
||
label: 'Others',
|
||
desc: 'Please elaborate in the comments',
|
||
},
|
||
},
|
||
cardText: {
|
||
note: 'Please keep the ticket description as short as possible',
|
||
title: 'Pre-filling working tickets',
|
||
},
|
||
};
|