22 lines
526 B
TypeScript
22 lines
526 B
TypeScript
export interface NotFoundText {
|
||
title: {
|
||
ZhCn: string;
|
||
EnUs: string;
|
||
};
|
||
desc: {
|
||
ZhCn: string;
|
||
EnUs: string;
|
||
};
|
||
}
|
||
|
||
export const notFound: NotFoundText = {
|
||
title: {
|
||
ZhCn: '啊哦...请求出错了...',
|
||
EnUs: 'Oops...Network Error...',
|
||
},
|
||
desc: {
|
||
ZhCn: '请确保处于校网环境后,点击右上角 "...-重新进入小程序"!',
|
||
EnUs: 'Please make sure you\'re in ZJU\'s school network environment and then click on the top right corner "... - re-enter the applet"!',
|
||
},
|
||
};
|