EVA-Notify/src/plain-text/404.ts

22 lines
526 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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"!',
},
};