33 lines
655 B
TypeScript
33 lines
655 B
TypeScript
export interface MemberPageText {
|
|
stuidText: {
|
|
title: string;
|
|
placeholder: string;
|
|
};
|
|
passwdText: {
|
|
title: string;
|
|
placeholder: string;
|
|
};
|
|
}
|
|
|
|
export const memberPageZhCn: MemberPageText = {
|
|
stuidText: {
|
|
title: '学号',
|
|
placeholder: '与统一身份认证学号一致',
|
|
},
|
|
passwdText: {
|
|
title: '密码',
|
|
placeholder: '与 EVA 统一身份认证一致',
|
|
},
|
|
};
|
|
|
|
export const memberPageEnUs: MemberPageText = {
|
|
stuidText: {
|
|
title: 'Student ID',
|
|
placeholder: '与统一身份认证学号一致',
|
|
},
|
|
passwdText: {
|
|
title: 'Password',
|
|
placeholder: '与 EVA 统一身份认证一致',
|
|
},
|
|
};
|