53 lines
1.2 KiB
TypeScript
53 lines
1.2 KiB
TypeScript
export interface ModalText {
|
||
pick: {
|
||
title: string;
|
||
content: string;
|
||
};
|
||
addToOreo: {
|
||
title: string;
|
||
content: string;
|
||
};
|
||
retrieve: {
|
||
title: string;
|
||
content: string;
|
||
};
|
||
cancel: string;
|
||
confirm: string;
|
||
}
|
||
|
||
export const modalZhCn: ModalText = {
|
||
pick: {
|
||
title: '认领此工单',
|
||
content: '工单可多人认领!认领后将无法撤销!',
|
||
},
|
||
addToOreo: {
|
||
title: '将工单加入 Oreo',
|
||
content: '确认加入 Oreo?加入后将无法撤回!',
|
||
},
|
||
retrieve: {
|
||
title: '机器取回确认',
|
||
content: '确认该机器已取回?取回后工单完成,将无法添加评论!',
|
||
},
|
||
cancel: '取消',
|
||
confirm: '确认',
|
||
};
|
||
|
||
export const modalEnUs: ModalText = {
|
||
pick: {
|
||
title: 'Pick this ticket',
|
||
content:
|
||
'Tickets can be claimed by multiple members! Once claimed, it will not be able to be revoked!',
|
||
},
|
||
addToOreo: {
|
||
title: 'Add ticket to Oreo',
|
||
content: 'Once Confirmed, the change will be irrevocably!',
|
||
},
|
||
retrieve: {
|
||
title: 'Confirm the retrieving',
|
||
content:
|
||
'Once Confirmed, the ticket will be closed and cannot add any comment!',
|
||
},
|
||
cancel: 'Cancel',
|
||
confirm: 'Confirm',
|
||
};
|