33 lines
627 B
TypeScript
33 lines
627 B
TypeScript
export interface InformPageText {
|
|
phoneText: {
|
|
title: string;
|
|
placeholder: string;
|
|
};
|
|
nameText: {
|
|
title: string;
|
|
placeholder: string;
|
|
};
|
|
}
|
|
|
|
export const informPageZhCn: InformPageText = {
|
|
phoneText: {
|
|
title: '手机号码',
|
|
placeholder: '便于查询工单',
|
|
},
|
|
nameText: {
|
|
title: '真实姓名',
|
|
placeholder: '必填,与工单绑定',
|
|
},
|
|
};
|
|
|
|
export const informPageEnUs: InformPageText = {
|
|
phoneText: {
|
|
title: 'Phone',
|
|
placeholder: 'Used for querying tickets',
|
|
},
|
|
nameText: {
|
|
title: 'Real Name',
|
|
placeholder: '(Required) Bounded to your ticket',
|
|
},
|
|
};
|