26 lines
1.0 KiB
TypeScript
26 lines
1.0 KiB
TypeScript
export interface TipsText {
|
||
tipsText: Array<string>;
|
||
}
|
||
|
||
export const tipsZhCn: TipsText = {
|
||
tipsText: [
|
||
'提示:请在 20:30 之前取走自己的物品哦!',
|
||
'提示:戴尔/外星人、Surface、苹果电脑不能拆机哦~',
|
||
'提示:数据无价,请随时做好数据备份哦~',
|
||
'提示:204 也是实验室,请勿在内饮食~',
|
||
'提示:我们是志愿服务,不收取任何礼物哦~',
|
||
'提示:无论是有关于小程序的建议,还是关于E志者协会的建议,都可以在【意见反馈】处提出来哦!',
|
||
],
|
||
};
|
||
|
||
export const tipsEnUs: TipsText = {
|
||
tipsText: [
|
||
'Tips: Please retrieve your devices before 20:30!',
|
||
'Tips: Dell/Alienware, Surface, Apple cannot be dissassembled.',
|
||
'Tips: Data is priceless, please backup your data at any time!',
|
||
'Tips: 204 is also a laboratory. Do not eat inside.',
|
||
'Tips: We are volunteers and do not take any gifts.',
|
||
'Tips: Feel free to post your suggestions about the weapp or about us at [Account-Report]!',
|
||
],
|
||
};
|