81 lines
1.6 KiB
TypeScript
81 lines
1.6 KiB
TypeScript
export interface UserPageText {
|
|
memberEntry: {
|
|
front: string;
|
|
behind: string;
|
|
};
|
|
ticketColumn: {
|
|
title: string;
|
|
note: string;
|
|
};
|
|
infoColumn: {
|
|
title: string;
|
|
note: string;
|
|
};
|
|
settingsColumn: {
|
|
title: string;
|
|
note: string;
|
|
};
|
|
reportColumn: {
|
|
title: string;
|
|
note: string;
|
|
};
|
|
aboutColumn: {
|
|
title: string;
|
|
note: string;
|
|
};
|
|
}
|
|
|
|
export const userPageZhCn: UserPageText = {
|
|
memberEntry: {
|
|
front: '再点击 ',
|
|
behind: ' 次以进入协会成员登录页面',
|
|
},
|
|
ticketColumn: {
|
|
title: '我的工单',
|
|
note: '在这里查看历史工单!',
|
|
},
|
|
infoColumn: {
|
|
title: '我的信息',
|
|
note: '能帮助亦可更好地找到你哦!',
|
|
},
|
|
settingsColumn: {
|
|
title: '应用设置',
|
|
note: '在这里配置小程序',
|
|
},
|
|
reportColumn: {
|
|
title: '意见反馈',
|
|
note: '有什么想说的都可以告诉亦可哦!',
|
|
},
|
|
aboutColumn: {
|
|
title: '关于我们',
|
|
note: '查看开发者信息',
|
|
},
|
|
};
|
|
|
|
export const userPageEnUs: UserPageText = {
|
|
memberEntry: {
|
|
front: 'Click ',
|
|
behind: ' more times to enter member login page',
|
|
},
|
|
ticketColumn: {
|
|
title: 'My Tickets',
|
|
note: 'View the history of your tickets here!',
|
|
},
|
|
infoColumn: {
|
|
title: 'My Information',
|
|
note: 'It will help us contact you!',
|
|
},
|
|
settingsColumn: {
|
|
title: 'Settings',
|
|
note: 'Configure the applet here!',
|
|
},
|
|
reportColumn: {
|
|
title: 'Report',
|
|
note: 'Let us know if you have any suggestions!',
|
|
},
|
|
aboutColumn: {
|
|
title: 'About Us',
|
|
note: 'View developer information.',
|
|
},
|
|
};
|